summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated Portuguese translation1.10Pedro Albuquerque2015-10-131-39/+43
|
* Added Occitan translationCédric Valmary2015-05-182-0/+180
|
* Added Icelandic translationSveinn í Felli2015-04-282-0/+139
|
* Release 1.10.1libpeas-1.10.1Garrett Regier2014-08-012-1/+9
|
* doap: add <programming-language>Piotr Drąg2014-07-311-1/+2
|
* doap category coreOlav Vitters2014-07-301-0/+1
|
* Bug 732155 - Fix initializing Python loader from Python applicationGarrett Regier2014-07-222-6/+36
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=732155
* Updated Greek translationTom Tryfonidis2014-07-091-26/+28
|
* Silence an ImportError to stderr in the Python testsGarrett Regier2014-06-281-3/+16
|
* Remove INSTALL fileGarrett Regier2014-06-281-370/+0
|
* Do not test the properties for Python extensionsGarrett Regier2014-06-281-1/+7
| | | | | Because Python extensions are no longer wrapped testing the properties is just pointless.
* Be more explicit about when a plugin loader is not enabledGarrett Regier2014-06-283-7/+8
| | | | Also silence a warning when we have already warned.
* Have silent subprocess tests inherit stderr for easier debuggingGarrett Regier2014-06-281-2/+2
| | | | | For the engine shutdown test we cannot inherit stderr as it prints to stderr.
* Fix error message when popping log hooks failsGarrett Regier2014-06-281-4/+6
|
* Simplify installing gettext in the python plugin loaderGarrett Regier2014-06-281-6/+12
| | | | Also check for an error after installing.
* Chain-up to finalize in the peas plugin loaderGarrett Regier2014-06-281-0/+2
|
* Prevent and warn when trying to enable multiple loadersGarrett Regier2014-06-283-3/+36
| | | | | | Using multiple plugin loaders will cause memory leaks due to both the python 2/3 and seed binding using toggle refs. Also mixing python version will never work.
* W32: Allow shared libs to be builtРуслан Ижбулатов2014-06-2812-15/+43
| | | | | | | This requires -no-undefined flag and resolving all dependencies at link-time by linking plugins to libpeas and libpeas-gtk as needed. https://bugzilla.gnome.org/show_bug.cgi?id=727499
* Fix i18n support by adding back ENABLE_NLS.Gabor Kelemen2014-05-291-0/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=727501
* Small function pointer cleanupGarrett Regier2014-05-292-10/+11
|
* Use AM_CPPFLAGS instead of INCLUDEDGarrett Regier2014-05-2921-34/+34
| | | INCLUDES is deprecated and AM_CPPFLAGS should be used instead.
* Remove extra semicolon in G_DEFINE_*Garrett Regier2014-05-2915-15/+15
|
* Bug 699338 - Only show plugin tooltip for errorsGarrett Regier2014-05-291-13/+7
|
* Bug 686606 - Add a few translator commentsGarrett Regier2014-05-292-0/+2
|
* doap: update URLsPiotr Drąg2014-04-061-3/+3
|
* Release 1.10.0libpeas-1.10.0Ignacio Casal Quinteiro2014-03-312-1/+7
|
* python: Fix coding style to matchBastien Nocera2014-03-141-4/+5
| | | | | Commit 2680b37802f0364b6eac1f5bf0f1f3bbb2552133 didn't use the same coding style as the rest of the file.
* python: Name the GC timeoutBastien Nocera2014-03-141-1/+3
| | | | | | So that it can show up with its own name in profiling outputs. https://bugzilla.gnome.org/show_bug.cgi?id=726327
* Fix unclickable dialogue when parent is modalBastien Nocera2014-02-101-1/+5
| | | | | | | | When the parent of the about or preferences dialogue is modal, you can't click on anything in the dialogue unless it is modal as well. https://bugzilla.gnome.org/show_bug.cgi?id=724053
* updated kn.poShankar Prasad2014-02-051-14/+11
|
* Do not wrap PyGObject extensionsGarrett Regier2013-11-136-245/+13
| | | | PyGObject already wraps them so it is unneeded.
* Remove support for gjs-based Javascript pluginsGarrett Regier2013-11-1324-1194/+25
| | | | | | | | There have been changes to the gjs bindings and as the issue has only recently been noticed it is assumed that support for them is not highly desired. https://bugzilla.gnome.org/show_bug.cgi?id=711356
* Remove invalid doc sectionGarrett Regier2013-11-131-2/+0
|
* Fix warningGarrett Regier2013-11-131-1/+2
|
* Print a critical warning when attempting to mix Python versionsGarrett Regier2013-11-122-0/+58
| | | | This prevents people from trying to load python3 plugins using a python2 program and vice versa.
* Add a test for already an initialized pythonGarrett Regier2013-11-121-0/+48
|
* Only disable python warning redirections when not initializedGarrett Regier2013-11-121-1/+3
| | | Python programs would want them to still be redirected.
* Fix incorrect freeGarrett Regier2013-11-121-7/+6
| | | | | When prgname is NULL we would try to free a constant string.
* Fix memory leak in python plugin loaderGarrett Regier2013-11-121-0/+2
|
* Various cleanupsGarrett Regier2013-11-122-35/+32
|
* Assert that the plugin loaders are actually freed on shutdownGarrett Regier2013-11-121-1/+7
| | | Useful to know that no extra refs are hanging around.
* Add a since tag to peas_engine_prepend_search_path()Garrett Regier2013-11-121-0/+2
|
* Assert an expectation of test_engine_get_default()Garrett Regier2013-11-121-1/+6
|
* Print a debug message when a plugin loader is finalizedGarrett Regier2013-11-121-0/+9
| | | It is useful to know that they are actually being freed.
* Assert if an engine is alive after g_test_run()Garrett Regier2013-11-121-0/+3
| | | This can happen when adding new tests.
* Use g_test_trap_subprocess() instead of g_test_trap_fork()Garrett Regier2013-11-122-13/+21
| | | g_test_trap_fork() is deprecated.
* Merge python2 and python3 extension testsGarrett Regier2013-11-125-139/+47
| | | This will avoid further duplication when adding new tests.
* Remove autogenerated INSTALL fileGarrett Regier2013-11-122-19/+88
|
* No longer use deprecated pygobject APIGarrett Regier2013-11-122-20/+21
|
* Use the new gobject-introspection annotationsGarrett Regier2013-11-035-15/+13
| | | | And fix warnings given by the newer version.