| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-12 | Update the gnome-session support for version 3.9.90 in Ubuntu Trusty | Dana Jansens | |
| This change is not backward compatible unfortunately. The format of the gnome-session .session files has changed, such that every part of the session is now listed on the RequiredComponents line. | |||
| 2015-01-06 | Special case for unusual monitor setup | Mikael Magnusson | |
| When no monitor is at (0,0), the screen rect containing all monitors is not at the origin, but screen_apply_gravity_point assumes the passed x/y are relative to the passed area, so adjust them. | |||
| 2014-11-10 | Update CHANGELOG again. | Mikael Magnusson | |
| 2014-11-06 | Update Norwegian translation. | Michael Kjelbergvik Thung | |
| 2014-11-06 | Clarify versioning comment instructions in configure.ac | Mikael Magnusson | |
| 2014-11-05 | Clean up translation files | Mikael Magnusson | |
| Correct obvious and remove other fuzzy translations Update line numbers Fill out Language: header correctly (just the filename without the .po) | |||
| 2014-11-05 | Add Galician translation. | Javier Mancebo | |
| 2014-11-05 | Update Polish translation. | Jakub Błażejczyk | |
| 2014-11-05 | Move some more code around to make it shorter | Mikael Magnusson | |
| 2014-11-05 | Reduce length of theme.c a bit | Mikael Magnusson | |
| 2014-11-05 | Make theme.c indentation more locally consistent | Mikael Magnusson | |
| Also removes some comments that is just the code with s/_/ /g | |||
| 2014-11-05 | Remove wrong code from button mask loading code, bug 6065 | Mikael Magnusson | |
| The READ_MASK_COPY macro already uses these exact fallbacks, so these lines just overwrote the custom bitmaps with the default fallback bitmaps. | |||
| 2014-11-05 | Only add xqueue listener fd once, bug 6326 | Mikael Magnusson | |
| 2014-11-05 | Allow selecting menu entries during menuHideDelay if you click again, bug 5501 | Mikael Magnusson | |
| 2014-11-03 | Move final frame adjust in flashing to timeout func | Mikael Magnusson | |
| This possibly avoids badness when the timeout destroy notify is removed from the frame release func. | |||
| 2014-11-03 | Make sure to reset all the GSource timer ids | Mikael Magnusson | |
| Avoids warnings like 'Source ID 8382 was not found when attempting to remove it'. In particular some removals were missing in menuframe.c resulting in a warning being printed every time a submenu was opened. | |||
| 2014-10-28 | Update my email address | Mikael Magnusson | |
| 2014-10-28 | Fix some compiler warnings for ShowMenu | Mikael Magnusson | |
| 2014-10-28 | Some fixes found by coverity for things used before a null check | Mikael Magnusson | |
| In the second case, we actually check the wrong variable. | |||
| 2014-10-28 | Initialize some stuff to 0 before taking their address | Mikael Magnusson | |
| 2014-10-28 | Move assignment to before break, hopefully this doesn't break stuff | Mikael Magnusson | |
| 2014-10-28 | Fix an if statement getting moved into a loop it shouldn't have | Mikael Magnusson | |
| Found by coverity code analysis. | |||
| 2014-10-28 | Use PANGO_UNDERLINE_SINGLE for rendering shortcuts | Mikael Magnusson | |
| The pango docs say to use _LOW for accelerators, but that causes the line to be drawn beneath the ink extents which for us may be outside the area that gets displayed and we end up with no line at all. We also don't want to extend every menu entry with enough space to fit this possible line. | |||
| 2014-10-28 | Fix compile failure when X_HAVE_UTF8_STRING is not defined | Peter Åstrand | |
| 2014-10-28 | Use GString for appending strings | Mikael Magnusson | |
| It can take a very long time to print a _NET_WM_ICON property for firefox with the previous code, several minutes. Fixes bug #6042 and also implements the change for append_string. | |||
| 2014-10-28 | Fix use after free in menu_entry_frame_free | Edward Sheldrake | |
| 2014-10-28 | Fix copy paste typo in swap_byte_order | Pascal Terjan | |
| 2014-10-28 | Update CHANGELOG with changes so far | Mikael Magnusson | |
| 2014-10-28 | Make desktop actions noninteractive | Mikael Magnusson | |
| 2014-10-28 | Remove freshmeat related stuff from release script, the site is dead | Mikael Magnusson | |
| 2014-10-28 | Clip client rect to monitor bounds while picking a corner for resizing | Mikael Magnusson | |
| This way you can actually do everything to it when it's offscreen, not just resize the one edge that's poking out | |||
| 2014-10-23 | Change some while loops to for loops in config.c | Mikael Magnusson | |
| 2014-10-23 | Allow specifying several mousebinds in one go, like for keybinds | Mikael Magnusson | |
| Also fixes minor indent error | |||
| 2014-10-20 | Make RaiseLower work for the dock as well | Mikael Magnusson | |
| As a side effect, _NET_RESTACK_REQUEST now also allows specifying the dock as the sibling. | |||
| 2014-10-20 | Add keyboard/rebindOnMappingNotify option | Mikael Magnusson | |
| I have to switch to a qwerty layout to play steam games, and every time I switch back and forth, we lose some random bindings so I also had to reconfigure Openbox every time, now I don't. | |||
| 2014-10-11 | Pass the GravityPoint as const* instead of by value | Mikael Magnusson | |
| 2014-10-06 | Let the menu placement code know if the position was user specified | Mikael Magnusson | |
| This way, it can avoid running the code that moves it to a good position relative to a mouse that isn't there | |||
| 2014-10-06 | Move common gravity application to screen.c | Mikael Magnusson | |
| 2014-10-06 | Resolve gravity coords in menuframe so it can use the widths | Mikael Magnusson | |
| 2014-10-06 | Add <position> tag to ShowMenu action | Mikael Magnusson | |
| 2014-10-06 | Fix negative relative coordinate placement | Mikael Magnusson | |
| 2014-10-06 | double space | Mikael Magnusson | |
| 2014-04-25 | Fix thinko in if.c, *o in Stop can never be pointing at the right place. | Mikael Magnusson | |
| Use a file static boolean instead. | |||
| 2014-04-10 | Fix typo in variable name | Mikael Magnusson | |
| 2014-04-10 | Avoid initializing a VLA of 0 length | Mikael Magnusson | |
| 2014-04-10 | Declare variables at start of blocks in place.c | Mikael Magnusson | |
| 2014-04-10 | Break loop if is_true was set to false in If | Mikael Magnusson | |
| 2014-04-10 | Don't segfault when there's no target in If | Mikael Magnusson | |
| 2014-04-10 | Some fixes in french translation | Mikael Magnusson | |
| 2014-04-10 | Cache results of offset/shift functions so we don't do 6 function calls per ↵ | Derek Foreman | |
| pixel when reducing color depth | |||
