summaryrefslogtreecommitdiff
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* fix print statement syntax for python3Parag Nemade2016-04-112-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=764764
* antler: Refactor antler-keyboard invocationDaiki Ueno2015-01-161-3/+1
|
* Port daemon from Python to ValaDaiki Ueno2013-02-172-42/+1
| | | | | | This eliminates the need of the shell script wrapper. https://bugzilla.gnome.org/show_bug.cgi?id=688218
* 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: make sure to define $datarootdir in generated scriptsDaiki Ueno2012-12-302-0/+2
| | | | | | | | Some of automake standard directory variables are expanded using "${datarootdir}", which must be available at run-time. Define it at the beginning of the script templates. https://bugzilla.gnome.org/show_bug.cgi?id=687315
* caribou-preferences: Fix expansion of LD_LIBRARY_PATHColin Walters2012-12-061-1/+1
| | | | | | | Add the missing $ - otherwise we just get a literal string "LD_LIBRARY_PATH". https://bugzilla.gnome.org/show_bug.cgi?id=689823
* portability: use "=" operator instead of "==" in shell scriptsDaiki Ueno2012-10-083-3/+3
| | | | | | | "==" operator is only available in bash but not in the SUSv3 or POSIX shell specification. This causes a problem with Debian's dash. https://bugzilla.gnome.org/show_bug.cgi?id=685629
* portability: allow the use of /bin/sh instead of /bin/bashAntoine Jacoutot2012-10-023-6/+6
| | | | | In this case, ${BASH_SOURCE[0]} can be replaced with ${0} which is recognized by all bourne shells (bash, sh, ksh).
* add *lib64* to PYTHONPATH in antler script.Eitan Isaacson2011-09-101-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=658533
* Use GLib, GObject from gi.repository instead of glib, gobjectAlexandre Rostovtsev2011-08-312-2/+2
| | | | | | | | | | | | | | 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
* Fix executables to set implicit XDG_DATA_DIRSEitan Isaacson2011-06-132-2/+4
|
* caribou.in: Add closing double quote.Eitan Isaacson2011-05-241-1/+1
|
* bin: fix path settings to never include empty path elements. fix typosDan Winship2011-05-243-18/+18
| | | | | | | | | | | | | Things like PYTHONPATH="foo:$PYTHONPATH" are bad, because if PYTHONPATH isn't previously set, you'll end up with a "" element in it, which will be interpreted as ".", which you don't want. Use some tricky bash syntax to say "add : and $PYTHONPATH if PYTHONPATH is set". Also fix a few typos ("licaribou", etc) https://bugzilla.gnome.org/show_bug.cgi?id=651005
* bin: minor Makefile fixesDan Winship2011-05-241-3/+3
| | | | | | | Files that are generated from configure should be DISTCLEANFILES, not CLEANFILES. Also, include $(libexec_SCRIPTS) everywhere https://bugzilla.gnome.org/show_bug.cgi?id=651005
* fixed the executables, again.Eitan Isaacson2011-05-053-8/+18
|
* Updated executables to be shell scripts.Eitan Isaacson2011-05-023-88/+85
| | | | Hopefully we set the right env variables.
* Added executable and DBus service file for Antler.Eitan Isaacson2011-05-022-0/+19
|
* Major re-work of Python modules:Eitan Isaacson2011-05-023-7/+36
| | | | | | | | | * 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.
* Fixed Bug 648350. Use an absolute path to ditermine if caribou is run from ↵Jiro Matsuzawa2011-04-211-4/+4
| | | | build dir.
* Read keyboard files from prefix correctlyEitan Isaacson2011-03-091-0/+3
|
* Got most of scanning working. Yay.Eitan Isaacson2011-01-071-3/+12
|
* Transitioned to introspection GTK3. Things that are not working yet:Eitan Isaacson2011-01-071-3/+3
| | | | | | | | | | - GConf notification. Not critical, will get it working when we move to GSettings. - Scanning. The module needs a lot of work anyway, will probably be doing alot of cleanup with transition. - Proximity opacity. This has been a hidden feature anyway. - Animation. Ditto, it's been hidden. Need to expose those two settings in the UI.
* Project files are reorganized and have consts separated on a new fileDaniel Baeyens2010-06-161-5/+7
| | | | | | | | | New organization: caribou.common has files not related to the UI caribou.ui has files related to the UI Makefiles.am files have been modified to successfully build the package .gitignore is updated to ignore moved built files
* made a data dirEitan Isaacson2010-05-101-0/+1
|
* Added automakeEitan Isaacson2010-05-032-0/+75