summaryrefslogtreecommitdiff
path: root/caribou/settings
Commit message (Collapse)AuthorAgeFilesLines
* Add missing python3 compatibilityParag Nemade2016-06-272-2/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=767664
* Fix PyGIWarning warnings in preferences_window.pyParag Nemade2016-04-111-0/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=764764
* Add some code compatibility for python3. It is seen that on Fedora Caribou ↵Parag Nemade2015-11-241-3/+2
| | | | rpm build failed for python3. If used 2to3 tool everything works fine, but if I remove it then build fails. I tried to find minimal changes required in code compared to what 2to3 tool is offering changes. With this attached patch build on Fedora for python3 succeeds.
* Fix gschema generation with Python 3Daiki Ueno2014-11-042-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=722634
* build: use git.mkDaiki Ueno2012-12-301-0/+2
| | | | | | | | Use git.mk to generate .gitignore files upon building. Also remove *.[ch] from CLEANFILES since it makes little sense with automake Vala support. https://bugzilla.gnome.org/show_bug.cgi?id=687315
* build: suppress Python bytecode generation when buildingDaiki Ueno2012-12-301-3/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=687315
* Support out-of-tree buildDaiki Ueno2012-10-231-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=667455
* Revert "setting_types: avoid using GVariant"Eitan Isaacson2011-09-051-9/+2
| | | | | | This reverts commit 4ee4055a9a77e7cf0ebba636f569e3181e8d7697. We are now on pygobject-3.0, so this issue went away.
* Use GLib, GObject from gi.repository instead of glib, gobjectAlexandre Rostovtsev2011-08-312-17/+16
| | | | | | | | | | | | | | Use GLib and GObject from gi.repository instead of glib and gobject modules for compatibility with pygobject-3.0. Otherwise, when running on a system with pygobject-2.0 and pygobject-3.0 installed, caribou-preferences fails with ImportError: could not import gobject (error was: ImportError('When using gi.repository you must not import static modules like "gobject". Please change all occurrences of "import gobject" to "from gi.repository import GObject".',)) https://bugzilla.gnome.org/show_bug.cgi?id=657666
* setting_types: avoid using GVariantDan Winship2011-08-041-2/+9
| | | | | | | | pygobject 2.28's GLib.Variant doesn't work with glib master (bug 654859), and pygobject 3.x is not yet ready for general use. So just avoid using variants for now. https://bugzilla.gnome.org/show_bug.cgi?id=655976
* Replace Gtk.[HV]Box with Gtk.Box.Eitan Isaacson2011-06-131-2/+2
|
* Have UI choose keyboard type.Eitan Isaacson2011-06-011-13/+1
|
* Update scanner settings.Eitan Isaacson2011-05-281-18/+32
|
* Added "scan" layout.Eitan Isaacson2011-05-281-1/+2
|
* Preferences UI: Support non-strings in combo boxesEitan Isaacson2011-05-281-3/+3
|
* Fix move animations.Eitan Isaacson2011-05-051-1/+1
|
* Updated make_schema.py and data/Makefile.amEitan Isaacson2011-05-051-2/+1
| | | | Make settings python files dependancies for schemas
* Make SettingsManager singletonEitan Isaacson2011-05-051-2/+5
|
* Add ability to add more than one settings managerEitan Isaacson2011-05-051-10/+11
|
* Preset radio buttons to correct valueEitan Isaacson2011-05-051-3/+5
|
* Major re-work of Python modules:Eitan Isaacson2011-05-026-0/+559
* Created Antler to use new keyboard model via PyGI * Rearanged settings to accomodate view/model seperation. * Created in preferences executable, it will be a standalone generic caribou settings UI where we will eventually get the important stuff in GNOME's control panel. * DBusified the UI.