Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Bug fix: Issue #43, better client window lookup | Richard Grenville | 2012-09-14 | 2 | -17/+41 | |
| | | | | | | | | | | | | | | | | | | More details on the issue report. - Look up the client window of a WM frame when it's mapped instead of when it's created, for better reliability. - Fix a warning when building. | |||||
| * | fix code duplication resulting from rebase | Christopher Jeffrey | 2012-09-13 | 1 | -6/+3 | |
| | | ||||||
| * | fix determine_evmask warnings | Christopher Jeffrey | 2012-09-13 | 2 | -1/+11 | |
| | | ||||||
| * | more style changes | Christopher Jeffrey | 2012-09-13 | 2 | -23/+43 | |
| | | ||||||
| * | stay consistent with code style | Christopher Jeffrey | 2012-09-13 | 2 | -75/+129 | |
| | | ||||||
| * | whitespace | Christopher Jeffrey | 2012-09-13 | 2 | -4/+4 | |
| | | ||||||
| * | Bug fix: Segfault when meeting FocusIn/Out from destoryed windows | Richard Grenville | 2012-09-13 | 1 | -6/+28 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I found compton segfaults sometimes when starting from .xinitrc. Debugging reveals my conky window was just reparented to a fvwm's frame window before compton picked up a FocusOut event on this conky window that has just been destroyed in the event queue. find_win() call in ev_focus_in/out() returned a NULL pointer. When it tried to use the pointer segfault happens. - Add extra check to ev_focus_in/out() to stop the segfault. - Reset window event mask on window reparenting to a non-root window to minimize wrong events. - More abstraction for determining window event mask. | |||||
| * | Improvement: Use find_toplevel() to find WM frame | Richard Grenville | 2012-09-13 | 2 | -124/+147 | |
| | | | | | | | | | | | | | | | | | | Use find_toplevel() to find out the WM frame of a client window. I didn't noticed it beforehand. Fallback to the old method as compton does not always get correct client windows. - Clean up find_client_win() a bit. A BFS search algorithm could be more optimal yet it requires a queue implementation. | |||||
| * | Improvement: Do not track focus changes unless necessary | Richard Grenville | 2012-09-13 | 1 | -8/+16 | |
| | | | | | | | | | | Stop tracking focus changes unless either inactive_opacity or inactive_dim is enabled, small performance boost in certain cases. | |||||
| * | Bug fix: Issue #40: -z does not work as expected | Richard Grenville | 2012-09-12 | 2 | -23/+42 | |
| | | | | | | | | | | | | | | | | | | More information in the issue report. - Let window opacity affect the opacity of its shadow and frames even if -z is enabled. - Check for the range of -o to eliminate potential segfault. | |||||
| * | Bug fix: Double free when XQueryTree() fails | Richard Grenville | 2012-09-12 | 1 | -6/+24 | |
| | | | | | | | | | | | | Take care of failure of XQueryTree() to prevent it from causing a double-free crash. This usually happens when X is initializing and windows are constantly changing. | |||||
| * | Bug fix: Issue #39: Render windows just mapped && focused incorrectly | Richard Grenville | 2012-09-12 | 1 | -0/+44 | |
| | | | | | | | | | | More info in the issue description. This also fixes the problem for --inactive-dim. | |||||
| * | Feature: Issue #2: Support dim inactive windows | Richard Grenville | 2012-09-12 | 2 | -8/+59 | |
| | | | | | | | | | | | | | | - Add a switch --inactive-dim that dims inactive windows. - The window dimming feature is implemented in a pretty ugly way. Improve it if possible. | |||||
| * | Debug: Enhanced debugging capability | Richard Grenville | 2012-09-12 | 2 | -23/+91 | |
| | | | | | | | | | | | | | | | | - Change all #if DEBUG_XXX directives to #ifdef, thus making it possible to directly enable debugging options with CFLAGS (-DDEBUG_XXX). - Print timestamp before event debugging messages. | |||||
| * | Bug fix: Segfault when encountering invalid long option | Richard Grenville | 2012-09-11 | 1 | -0/+2 | |
| | | | | | | | | I didn't read the documentation of getopt_long() carefully. | |||||
| * | Bug fix: Issue #37, fix 5 opacity-related bugs | Richard Grenville | 2012-09-11 | 2 | -54/+154 | |
| | | | | | | | | | | | | | | | | | | | | More details in the bug report. - Rewritten much of the opacity calculation, code cleanup. - Commandline switch --inactive_opacity_override to restore the old behavior in which inactive_opacity has higher priority than _NET_WM_OPACITY. | |||||
| * | Feature: Issue #35, Add colored shadows | Richard Grenville | 2012-09-11 | 2 | -3/+58 | |
| | | | | | | | | | | | | | | - Use getopt_long() instead of getopt() for argument parsing, making long options possible. - Add support of colored shadows with 3 commandline switches. | |||||
| * | Bug fix: Issue #36: Chromium window painting problems | Richard Grenville | 2012-09-11 | 2 | -24/+244 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | More descriptions on issue #36. - Listens ShapeNotify event to get around the Chromium window painting issues. - Adds dependency on X Shape extension. - Adds a few functions for convenience, so a bit code clean up. - Better event debug support, adds restack_win() debug. | |||||
| * | Bug fix: Issue #38, fixes painting specially-shaped semi-transparent windows | Richard Grenville | 2012-09-11 | 1 | -0/+4 | |
| | | | | | | | | Fix taken from xcompmgr. | |||||
| * | avoid allocating a new win struct if possible | Christopher Jeffrey | 2012-09-08 | 1 | -5/+4 | |
| | | ||||||
| * | add richardgv's patch. see #31. | Christopher Jeffrey | 2012-09-08 | 1 | -0/+5 | |
| | | ||||||
| * | apply patch from richardgv. fixes #5. | Christopher Jeffrey | 2012-09-07 | 1 | -1/+3 | |
| | | ||||||
| * | rename, refactor again. | Christopher Jeffrey | 2012-06-03 | 1 | -9/+9 | |
| | | ||||||
| * | refactor, rename | Christopher Jeffrey | 2012-06-03 | 1 | -48/+49 | |
| | | ||||||
| * | Fixed a (very) small 'bug' in the usage text, -f wasn't printed on a new line. | Tim van Dalen | 2012-03-17 | 1 | -1/+1 | |
| | | ||||||
| * | stop listening for property events on client window after unmap | Christopher Jeffrey | 2012-02-28 | 1 | -0/+5 | |
| | | ||||||
| * | minor changes | Christopher Jeffrey | 2012-02-27 | 1 | -62/+44 | |
| | | ||||||
| * | reorganize tree | Christopher Jeffrey | 2012-02-27 | 2 | -0/+2959 | |
| | ||||||
* | Add basic support for a modified compton compositor instead of the old buggy ↵ | Timothy Pearson | 2014-03-31 | 25 | -44/+115 | |
| | | | | | | kompmgr Update additional Xorg atom names | |||||
* | Rename TDE-specific atoms to avoid stomping on KDE atom names | Timothy Pearson | 2014-03-31 | 4 | -17/+17 | |
| | ||||||
* | Fix incorrect crash report hash calculation | Timothy Pearson | 2014-03-29 | 2 | -22/+115 | |
| | | | | Allow saving of an offline crash report for later upload if crash reporting server is unavailable | |||||
* | Add preliminary support for uploading crash reports to a central server ↵ | Timothy Pearson | 2014-03-29 | 9 | -7/+966 | |
| | | | | without requiring Bugzilla | |||||
* | Extract and include any pertinent SCM metadata from the crashed application ↵ | Timothy Pearson | 2014-03-28 | 8 | -3/+102 | |
| | | | | in its crash report | |||||
* | Reset submodule main/tdebase/cmake to latest HEAD | Automated System | 2014-03-28 | 1 | -0/+0 | |
| | ||||||
* | Update common directories | Slávek Banko | 2014-03-27 | 2 | -0/+0 | |
| | ||||||
* | Updated images for KSplash default theme. These resolves bug 2013. | Alex Couture | 2014-03-25 | 4 | -0/+0 | |
| | ||||||
* | Fixed KSplash icon flashing position problem for 'default' theme engine. | Michele Calgaro | 2014-03-25 | 5 | -20/+42 | |
| | | | | Removed nasty hardcoded hack and added 'Icon Offsets' option to Theme.rc file. | |||||
* | Update Admin Guide. | Darrell Anderson | 2014-03-24 | 2 | -153/+114 | |
| | ||||||
* | Remove references to printing.kde.org. This relates to bug 1846. | Michele Calgaro | 2014-03-23 | 4 | -8/+4 | |
| | ||||||
* | Add secondary logout fadeaway control | Darrell Anderson | 2014-03-19 | 3 | -153/+191 | |
| | | | | | This resolves Bug 1999 This relates to Bug 258 | |||||
* | Fixed TDE-Classic config bug introduced in commit 77b01cb. This resolves bug ↵ | Michele Calgaro | 2014-03-18 | 2 | -4/+4 | |
| | | | | 2013. | |||||
* | Replaced KSplash Default theme with new TDE Refresh theme. This relates to ↵ | Alex Couture | 2014-03-18 | 16 | -53/+16 | |
| | | | | bug 2013. | |||||
* | Copy KSplash Default theme to new TDE-Classic theme. This relates to bug 2013 | Michele Calgaro | 2014-03-18 | 17 | -0/+80 | |
| | ||||||
* | Add autotools support for KSplash Unified theme | Michele Calgaro | 2014-03-18 | 1 | -0/+4 | |
| | ||||||
* | Move "Show Desktop" icon from Settings to Utility category. | Michele Calgaro | 2014-03-18 | 1 | -2/+2 | |
| | | | | | This resolves bug 1903 and at the same time leaves the icon available to users. Users can now even add this icon to a panel if they wish. | |||||
* | Update Control Center icon in TDE menu to match the one shows in the submenu | Michele Calgaro | 2014-03-18 | 1 | -2/+1 | |
| | ||||||
* | Use the "confirm logout" option in KSMServer::logoutTimed | Francois Andriot | 2014-03-16 | 1 | -5/+12 | |
| | ||||||
* | Use TDE hardware library to control shutdown options in Kickoff menu | Slávek Banko | 2014-03-14 | 1 | -0/+7 | |
| | | | | This resolves Bug 1931 | |||||
* | Fix localURL signal | Francois Andriot | 2014-03-14 | 2 | -3/+4 | |
| | | | | This relates to Bug 1902 | |||||
* | Updated TDE description in TDE User Guide. This relates to bug 2001. | Michele Calgaro | 2014-03-14 | 2 | -5/+13 | |
| |