summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-06-06Add support for 24bitMikael Magnusson
2009-04-15Make at least the default configs validateMikael Magnusson
More things need to be case insensitive and whatnot.
2009-04-05Update and reactivate croatian translation.Mikael Magnusson
2009-03-31Add latvian translation.Einars Sprugis
2009-03-29Avoid anonymous unionsMikael Magnusson
Some compilers, like sun studio and clang don't support them.
2009-02-25Update italian translation.Davide Truffa
2009-02-20Close openbox.log when restartingMikael Magnusson
2009-02-20Merge branch 'backport' into workMikael Magnusson
Conflicts: openbox/config.c
2009-02-20Fix per-app monitor settingMikael Magnusson
A couple of things were wrong, the parser added 1 to the value despite expecting the user to give values in the range of 1 to screen_num_monitors, rc.xml documented the values to start from 0 and finally the monitor value wasn't copied over at all when matching the client.
2009-01-29Merge branch 'backport' into workMikael Magnusson
Conflicts: openbox/event.c openbox/frame.c
2009-01-29Add Plural-Forms header to .po files that need it.Mikael Magnusson
2009-01-29Handle InputShape type shaping too.Mikael Magnusson
Many composite apps use this to pass through clicks where they are transparent.
2009-01-29Typos in error message from gdm-controlMikael Magnusson
2009-01-29install-sh should be executableMikael Magnusson
Apparently on solaris, you can't invoke -x scripts via "sh install-sh".
2008-11-19Merge branch 'backport' into workMikael Magnusson
2008-11-19Only update the focus cycle indicator when already visible in frame.c to ↵Mikael Magnusson
avoid overriding bar=no
2008-11-15Another problem pointed out by clangMikael Magnusson
Using format specifiers without arguments in printf is still bad. openbox/debug.c:105:18: warning: format string is not a string literal (potentially insecure) fprintf(out, log_domain); ^~~~~~~~~~ openbox/debug.c:107:18: warning: format string is not a string literal (potentially insecure) fprintf(out, level); ^~~~~ openbox/debug.c:109:18: warning: format string is not a string literal (potentially insecure) fprintf(out, message); ^~~~~~~
2008-11-15Merge branch 'backport' into workMikael Magnusson
Conflicts: openbox/event.c
2008-11-15Use ngettext for %d desktop(s).Mikael Magnusson
This poses a small problem. We currently let translators reorder this string, but ngettext only takes one numeric argument. This means that you can either get correct pluralization or the order you want, but not both. I fixed up the languages I understand at a very basic level, but the rest will need translator assistance.
2008-11-10Fix a problem pointed out by clangMikael Magnusson
openbox/client.c:269:10: warning: incompatible pointer types passing 'gint *', expected 'guint32 *' if (!OBT_PROP_GET32(self->window, NET_WM_USER_TIME, CARDINAL, &user_time)) ^~~~~~~~~~~~~~
2008-11-05Don't move windows to current desktop on net_active_window if the event ↵Mikael Magnusson
didn't come from the user. Instead, just activate the flashy thinger.
2008-11-05Using format specifiers without arguments in printf is bad.Mikael Magnusson
2008-10-29Merge branch 'backport' into workMikael Magnusson
2008-10-29Bring helper windows when following a window.Mikael Magnusson
2008-10-29_NET_WM_USER_TIME=0 means don't focus the new window.Mikael Magnusson
2008-10-27Merge branch 'backport' into workMikael Magnusson
Conflicts: openbox/client.c openbox/prop.c openbox/prop.h
2008-10-27No \n on ob_debug in this branch.Mikael Magnusson
2008-10-27The code to replace $wid/$pid died on $foo.Mikael Magnusson
It failed to increment a variable after finding a $ but no pid or wid, which led to a fun infinite loop. Also don't check if c[1] is w if we already established it was p.
2008-10-27Show name/class when mapping in debug mode.Mikael Magnusson
2008-10-27Revert "make windows stay on screen when they..."Mikael Magnusson
This reverts commit 73adc6480d59fc5dccf9fe19ed5234c9582b328c. I know I had a good reason for reverting this commit, I don't know what that reason was though.
2008-10-27Correct a 64-bit bug in event_time_afterMikael Magnusson
The code assumed the timestamps had the same domain as the type Xlib uses for them, which is almost never the case with Xlib. Change all involved variables to guint32.
2008-10-27give the compiler hints about what can be kept in registers so that it can ↵Dana Jansens
optimize the gradient code better with all the pointers going on
2008-10-22Make sure the _MOTIF_WM_INFO atom exists.Mikael Magnusson
Without this, urxvt won't use motif hints for borderless mode.
2008-10-22Update Basque translation.Inko Illarramendi Arancibia
2008-09-140 is the first monitor here, not 1.Mikael Magnusson
2008-08-19Add danish translation.Jesper Sander
2008-07-13Properly escape strings before writing XML.Nico Golde
2008-05-29Openbox doesn't support _NET_WM_USER_TIME_WINDOW atm.Mikael Magnusson
2008-05-25Update catalan translation.David Majà Martínez
2008-05-25Add a translators note about not translating the word "SessionLogout" in an ↵Mikael Magnusson
error message.
2008-05-25Add turkish translation.Tutku Dalmaz
2008-05-15Update italian translation.Andrea Scarpino
2008-05-08Update spanish translation.Nicolás de la Torre
2008-05-08Add Lithuanian translation.Mikael Magnusson
2008-05-03Don't translate action names.Mikael Magnusson
2008-05-02Update russian translation.Moroz Sergey L
2008-04-23Merge branch 'backport' into workMikael Magnusson
Conflicts: openbox/config.c openbox/keyboard.c openbox/moveresize.c
2008-04-23Fix typo introduced a few commits ago that made resizing windows hard.Mikael Magnusson
2008-04-20Don't need to explicitly check for xft.Mikael Magnusson
2008-04-15Don't use GrabModeSync, it hangs the xserver on chains sometimes.Mikael Magnusson
More or less a revert of 5bfa48dcffec3b00d119d851cb2427a43f80aa7b "Grab key bindings with GrabModeSync" See also bug #3582.