[First Page] [Previous Page] [Next Page] [Last Page]
GIT Hash | Branch | Date | Author | Log Message |
---|---|---|---|---|
b59fdf2c [view] | master | 2012-09-22 15:56:06 -0500 | Timothy Pearson | [qt4-tqt-theme-engine] Fix QtOctave failure and MDI pixmap problems |
80a4f6d0 [view] | master | 2012-09-22 20:49:17 +0800 | Richard Grenville | [tdebase] Improvement: Change window type detection - Let window type detection start with the client window if there's one, in hope to enhance performance. - Change get_wintype_prop() to fetch the property only once. - Default to WINTYPE_UNKNOWN instead of WINTYPE_NORMAL if _NET_WM_WINDOW_TYPE is missing. - Fix a mistake in calc_opacity(). - Add some items to .gitignore. - Fix a typo in usage(). |
cbdaa9c0 [view] | master | 2012-09-22 11:42:39 +0800 | Richard Grenville | [tdebase] Feature: Issue #29: Alternative shadow blacklist implementation - Add shadow blacklist feature, but a different implementation from nicklan's. 5 matching modes (exact, starts-with, contains, wildcard, PCRE) and 3 matching targets (window name, window class instance, window general class). Not extensively tested, bugs to be expected. It's slower for exact matching than nicklan's as it uses linear search instead of hash table. Also, PCRE's JIT optimization may cause issues on PaX kernels. - Add dependency to libpcre. Could be made optional if we have a graceful way to handle that in Makefile. - Some matching functions are GNU extensions of glibc. So this version may have troubles running on platforms not using glibc. - Fix a bug that access freed memory blocks in set_fade_callcack() and check_fade_fin(). valgrind found it out. - Use WM_CLASS to detect client windows instead of WM_STATE. Some client windows (like notification windows) have WM_CLASS but not WM_STATE. - Mark the extents as damaged if shadow state changed in determine_shadow(). - Rewrite wid_get_name(). Code clean-up. - Two debugging options: DEBUG_WINDATA and DEBUG_WINMATCH. - As the matching system is ready, it should be rather easy to add other kinds of blacklists, like fading blacklist. |
4f0b6320 [view] | master | 2012-09-21 19:41:01 -0500 | Timothy Pearson | [qt4-tqt-theme-engine] Attempt to work around Qt 4.8 bug in fromX11Pixmap when masks are converted |
553923b2 [view] | master | 2012-09-21 18:27:59 -0500 | Timothy Pearson | [tdebase] Forcibly prevent transient override redirect windows from showing up over the lock screen This closes Bug #1079 |
b69c3330 [view] | master | 2012-09-21 17:04:10 -0500 | Timothy Pearson | [tde-packaging] Fix tdebindings FTBFS on Debian and Ubuntu with Ruby 1.9.x |
a901a123 [view] | master | 2012-09-21 16:58:35 -0500 | Timothy Pearson | [tdebindings] Fix FTBFS on x86 systems |
10fc891a [view] | master | 2012-09-21 12:33:20 -0500 | Timothy Pearson | [tdebindings] Fix Ruby detection when .pc file is ruby-1.9 |
fd0900ef [view] | master | 2012-09-20 13:50:27 +0800 | Richard Grenville | [tdebase] Bug fix: Detect and mark WM windows as active See chjj's comments on issue #39: https://github.com/chjj/compton/issues/39#issuecomment-8533360 - Add a switch --mark-wmwin-focused that try to detect WM windows and mark them active. - Fix a bug that causes BadDrawable, etc. if a window is mapped then immediately unmapped. - Fix a bug in determine_evmask(). - Add a debug option DEBUG_CLIENTWIN. - Force window repaint on window frame extent change. - Code cleanup. |
e9964b9c [view] | master | 2012-09-20 00:33:03 -0500 | Timothy Pearson | [tde-packaging] Update tdebindings ruby build deps on Debian and Ubuntu |
a08c2294 [view] | master | 2012-09-19 20:49:16 +0800 | Richard Grenville | [tdebase] Improvement: Change fading mechanism - Change fading mechanism for better modularity. Remove fade queue and use members in struct _win to record fading data. In contrast to previous commits, this one actually could make the program slower (but very slightly, hardly noticeable if your CPU is anywhere close to AMD K7). As this commit changes lots of things, bugs are to be expected. - Currently -F does not do its job. -f actually equals -fF. (While in the past -F equals nothing and -f is just -f.) A fix will be made soon. I suppose it isn't hard. - Add a preprocessor function paint_preprocess() and move all preprocessing code in paint_all() to it. - Add window flag support but currently unused. - Add DamageNotify handling to ev_window(). - I'm considering removing HAS_NAME_WINDOW_PIXMAP = 0 support as I couldn't see what it is good for. Nor do I know what CAN_DO_USABLE does. Basically all my changes ignore these cases. |
2f6e9c73 [view] | master | 2012-09-18 11:53:05 -0500 | Timothy Pearson | [tdebindings] Fall back to ruby-1.9 pkgconfig file if needed |
fb18759b [view] | master | 2012-09-18 11:28:09 +0800 | Richard Grenville | [tdebase] Bug fix: Issue #23, notify-osd not rendered More details in the issue report. - Add ClientMessage detection to ev_name() and ev_window(), although we don't actually handle the event. |
467876d5 [view] | master | 2012-09-17 18:17:30 -0500 | Timothy Pearson | [gtk3-tqt-engine] Implement remaining raster operations |
2cec804e [view] | master | 2012-09-17 18:08:53 -0500 | Timothy Pearson | [gtk3-tqt-engine] Implement framework for raster operations |
4038374c [view] | master | 2012-09-17 16:05:48 -0500 | Timothy Pearson | [gtk3-tqt-engine] Add tab stop controls |
5fa60a7a [view] | master | 2012-09-17 15:20:04 -0500 | Timothy Pearson | [gtk3-tqt-engine] Add world matrix stack |
e9fa6f1c [view] | master | 2012-09-17 15:07:23 -0500 | Timothy Pearson | [gtk3-tqt-engine] Add preliminary font layout support Add image painting support |
b646ed4c [view] | master | 2012-09-17 13:56:41 -0500 | Timothy Pearson | [gtk3-tqt-engine] Add intermediate surface Enable clip regions |
b6cb4612 [view] | master | 2012-09-17 11:49:39 -0500 | Timothy Pearson | [gtk3-tqt-engine] Add transformation support |
be3451e0 [view] | master | 2012-09-17 22:15:04 +0800 | Richard Grenville | [tdebase] Improvement: Defer shadow picture generation - Defer shadow picture generation to minimize interactions with X, hoping to boost performance. - Fix a rendering issue caused by clip_changed in configure_win(). Remove clip_changed altogether. - Split generation of shadow picture from calculating its geometry. - Cache width/height including borders in struct _win as it's frequently used. |
e7ba091c [view] | master | 2012-09-17 16:04:04 +0800 | Richard Grenville | [tdebase] Improvement: Change painting sequence - Now compton paints windows from the lowest to the highest. Warning: I'm not completely certain that the change won't introduce unexpected glitches. This commit may be revoked in the future. - Remove w->border_clip since it's no longer needed. - Correct a mistake in find_toplevel2(). (clang --analyze found it out.) - Change "func_name()" prototypes to "func_name(void)". If I remember correctly, "func_name()" means you are remaining silent about this function's parameters instead of stating it has no parameter in ANSI C. - Add timestamps to error messages. - Suppress error messages caused by free_damage(). |
52cddfb3 [view] | master | 2012-09-17 00:03:40 -0500 | Timothy Pearson | [gtk3-tqt-engine] Add initial Pango font support |
65e8e56c [view] | master | 2012-09-17 12:31:01 +0800 | Richard Grenville | [tdebase] Improvement: Change generating process of alpha_pict, etc. - Change how w->alpha_pict is generated, in hope to boost performance, slightly, and as a step to eventually move handling code of most resources used when painting to paint_preprocess(). - Remove alpha_pict parameter of shadow_picture() as it's not necessary. - Let window opacity affect frame opacity. - Rename some members of struct _win. |
2b324e26 [view] | master | 2012-09-16 23:04:23 -0500 | Darrell Anderson | [kdpkg] Fix QString -> TQString. |
2b39cdb5 [view] | master | 2012-09-16 23:00:45 -0500 | Darrell Anderson | [tdenetworkmanager] Fix QString -> TQString. |
78196c12 [view] | master | 2012-09-16 23:00:12 -0500 | Darrell Anderson | [knetworkmanager8] Fix QString -> TQString. |
9ee1344e [view] | master | 2012-09-16 22:59:02 -0500 | Darrell Anderson | [tdepowersave] Fix QString -> TQString. |
1b4d7e54 [view] | master | 2012-09-16 22:57:34 -0500 | Darrell Anderson | [kbfx] Fix QString -> TQString. |
3a60e3ce [view] | master | 2012-09-16 22:55:59 -0500 | Darrell Anderson | [potracegui] Fix QString -> TQString. |
e827f8d5 [view] | master | 2012-09-16 22:55:10 -0500 | Darrell Anderson | [tdesvn] Fix QString -> TQString. |
688d0e84 [view] | master | 2012-09-16 22:53:58 -0500 | Darrell Anderson | [kvpnc] Fix QString -> TQString. |
0b1f7817 [view] | master | 2012-09-16 22:50:59 -0500 | Darrell Anderson | [kpowersave] Fix QString -> TQString. |
4b5d02a2 [view] | master | 2012-09-16 22:46:28 -0500 | Darrell Anderson | [kbookreader] Fix QString -> TQString. |
013e6b26 [view] | master | 2012-09-16 22:45:39 -0500 | Darrell Anderson | [kmyfirewall] Fix QString -> TQString. |
5bf9c2d7 [view] | master | 2012-09-16 22:44:12 -0500 | Darrell Anderson | [basket] Fix QString -> TQString. |
58664773 [view] | master | 2012-09-16 22:43:27 -0500 | Darrell Anderson | [ktorrent] Fix QString -> TQString. |
718b3af0 [view] | master | 2012-09-16 22:42:20 -0500 | Darrell Anderson | [kipi-plugins] Fix QString -> TQString. |
3c352d5e [view] | master | 2012-09-16 22:40:24 -0500 | Darrell Anderson | [koffice] Fix QString -> TQString. |
1c60648f [view] | master | 2012-09-16 22:38:09 -0500 | Darrell Anderson | [k3b] Fix QString -> TQString. |
31784539 [view] | master | 2012-09-16 22:32:21 -0500 | Darrell Anderson | [tdesdk] Fix QString -> TQString. |
95248100 [view] | master | 2012-09-16 22:31:46 -0500 | Darrell Anderson | [tdepim] Fix QString -> TQString. |
685de864 [view] | master | 2012-09-16 22:30:59 -0500 | Darrell Anderson | [tdewebdev] Fix QString -> TQString. |
70a3c0d9 [view] | master | 2012-09-16 22:29:55 -0500 | Darrell Anderson | [tdevelop] Fix QString -> TQString. |
d513bace [view] | master | 2012-09-16 22:27:54 -0500 | Darrell Anderson | [tdeedu] Fix QString -> TQString. |
75bf0c9d [view] | master | 2012-09-16 22:27:05 -0500 | Darrell Anderson | [tdetoys] Fix QString -> TQString. |
3d2141c8 [view] | master | 2012-09-16 22:26:06 -0500 | Darrell Anderson | [tdeartwork] Fix QString -> TQString. |
9a680e5c [view] | master | 2012-09-16 22:25:32 -0500 | Darrell Anderson | [tdenetwork] Fix QString -> TQString. |
492b084f [view] | master | 2012-09-16 22:24:43 -0500 | Darrell Anderson | [tdeadmin] Fix QString -> TQString. |
1474ae14 [view] | master | 2012-09-16 22:24:02 -0500 | Darrell Anderson | [tdemultimedia] Fix QString -> TQString. |
c4d066ff [view] | master | 2012-09-16 22:23:01 -0500 | Darrell Anderson | [tdeutils] Fix QString -> TQString. |
eef9817d [view] | master | 2012-09-16 22:20:24 -0500 | Darrell Anderson | [tdeaccessibility] Fix QString -> TQString. |
249c80de [view] | master | 2012-09-16 19:43:35 -0500 | Darrell Anderson | [tdebase] Fix QString -> TQString. |
5242023c [view] | master | 2012-09-16 19:42:45 -0500 | Darrell Anderson | [tdelibs] Fix QString -> TQString. |
7d1ad9f6 [view] | master | 2012-09-16 15:32:39 -0500 | Timothy Pearson | [gtk3-tqt-engine] Add more primitives to Cairo drawing backend |
47414903 [view] | master | 2012-09-16 19:31:58 +0200 | Slávek Banko | [koffice-i18n] Rebranding of Krita as Chalk |
933690a7 [view] | master | 2012-09-16 17:49:20 +0200 | Slávek Banko | [tde-i18n] Rebranding of Krita as Chalk |
32d98071 [view] | master | 2012-09-16 23:12:02 +0800 | Richard Grenville | [tdebase] Misc: Clean up - Add 4 helper free functions that free XserverRegion, Damage, Picture, and Pixmap. - Rename w->shadow to w->shadow_pict. Add a bool member w->shadow to prepare for a future change. |
0fef2b78 [view] | master | 2012-09-16 14:47:08 +0200 | Slávek Banko | [tdebase] Rebranding of Krita as Chalk |
9e0a5e72 [view] | master | 2012-09-16 11:35:26 +0200 | Slávek Banko | [tdelibs] Rebranding of Krita as Chalk |
2e57d2cf [view] | master | 2012-09-16 02:41:13 -0500 | Timothy Pearson | [gtk3-tqt-engine] Activate lines and polylines |
c2a1262d [view] | master | 2012-09-15 23:02:11 -0500 | Timothy Pearson | [gtk3-tqt-engine] Rectangle drawing via Cairo now functions |
7d8cc6ed [view] | master | 2012-09-15 15:49:20 -0500 | Timothy Pearson | [qt4-tqt-theme-engine] Fix potential crash when TDE integration is disabled |
827cba3a [view] | master | 2012-09-15 15:06:40 -0500 | Timothy Pearson | [gtk3-tqt-engine] Add initial interface code skeleton for later development |
5f250045 [view] | master | 2012-09-15 19:29:51 +0200 | Slávek Banko | [tde-packaging] Fix install directories for tellico on Debian and Ubuntu |
63d3f548 [view] | master | 2012-09-15 15:37:56 +0200 | Slávek Banko | [tde-packaging] Fix install directories for rosegargen on Debian and Ubuntu |
1ecedd98 [view] | master | 2012-09-15 15:09:47 +0200 | Slávek Banko | [tde-packaging] Fix stray folders in potracegui on Debian and Ubuntu |
4676dbf7 [view] | master | 2012-09-15 14:42:05 +0200 | Slávek Banko | [tde-packaging] Fix install directories for piklab on Debian and Ubuntu |
d3d98822 [view] | master | 2012-09-15 04:11:44 +0200 | Slávek Banko | [tde-packaging] Fix stray folders in twin-style-crystal on Debian and Ubuntu |
c3f647aa [view] | master | 2012-09-15 04:06:59 +0200 | Slávek Banko | [tde-packaging] Move man pages to /opt/trinity in kuickshow on Debian and Ubuntu |
16332c03 [view] | master | 2012-09-15 03:18:08 +0200 | Slávek Banko | [tde-packaging] Fix install directories for ktechlab on Debian and Ubuntu |
efdff81c [view] | master | 2012-09-14 20:10:44 -0500 | Timothy Pearson | [admin] Allow build to proceed even if libhpi.so is not present |
79f76969 [view] | master | 2012-09-15 02:46:52 +0200 | Slávek Banko | [tde-packaging] Move man pages to /opt/trinity in ksystemlog on Debian and Ubuntu |
def58d42 [view] | master | 2012-09-14 18:15:26 -0500 | Darrell Anderson | [tdebase] Update migratekde3 script to partially resolve bug report 1210. |
6f0ebd61 [view] | master | 2012-09-14 18:12:40 -0500 | Darrell Anderson | [tdeaddons] Fix xz support in konqueror context popup menu. This resolves bug report 611. Thanks to Calving Morrison. |
55bdab02 [view] | master | 2012-09-14 18:58:18 +0200 | Christian Beier | [libtdevnc] Add Raphael to AUTHORS. |
0bb59522 [view] | master | 2012-09-14 11:03:35 -0500 | Timothy Pearson | [gtk3-tqt-engine] Remove autogenerated files |
57ccdad8 [view] | master | 2012-09-14 17:52:19 +0200 | Slávek Banko | [tde-packaging] Move man pages to /opt/trinity in ksquirrel on Debian and Ubuntu |
143c156e [view] | master | 2012-09-14 10:10:15 -0500 | Timothy Pearson | [gtk3-tqt-engine] Initial import of renamed Unico engine, ready for hacking! |
01c61997 [view] | master | 2012-09-14 09:41:26 -0500 | Timothy Pearson | [tdelibs] Make KFileDialog fit on the screen when a large filter string or URL is provided |
c759052d [view] | master | 2012-09-14 16:34:30 +0200 | Slávek Banko | [tde-packaging] Switch to debian/cdbs/kde.mk in krename on Debian and Ubuntu |
03e93296 [view] | master | 2012-09-14 09:32:22 -0500 | Timothy Pearson | [tdegraphics] Use poppler pkg-config information when running version checks |
6c19dad7 [view] | master | 2012-09-14 16:26:06 +0200 | Slávek Banko | [tde-packaging] Fix install directories for kradio on Debian and Ubuntu |
4b357920 [view] | master | 2012-09-14 16:04:51 +0200 | Slávek Banko | [tde-packaging] Fix install directories for kpowersave on Debian and Ubuntu |
2fcd8b3d [view] | master | 2012-09-14 02:31:09 -0500 | Timothy Pearson | [qt4-tqt-theme-engine] Fix corrupt application name and crash on exit |
a56a1648 [view] | master | 2012-09-14 00:05:49 -0500 | Timothy Pearson | [tde-packaging] Fix prior commit |
c28071f9 [view] | master | 2012-09-13 23:48:38 -0500 | Timothy Pearson | [tde-packaging] Fix tiff build dep on Debian and Ubuntu |
e370ec9b [view] | master | 2012-09-14 11:51:46 +0800 | Richard Grenville | [tdebase] Bug fix: Issue #43, better client window lookup 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. |
db00db00 [view] | master | 2012-09-14 03:25:06 +0200 | Slávek Banko | [tde-packaging] Move man pages to /opt/trinity in kpicosim on Debian and Ubuntu |
596ccea2 [view] | master | 2012-09-14 03:19:33 +0200 | Slávek Banko | [tde-packaging] Move man pages to /opt/trinity in knutclient on Debian and Ubuntu |
4623775a [view] | master | 2012-09-13 19:47:00 -0500 | Timothy Pearson | [tqt] Automated update from Qt3 |
1faf4cf7 [view] | master | 2012-09-13 19:46:36 -0500 | Timothy Pearson | [qt3] Fix focus rectangle drawing on external paint device |
b9daa01a [view] | master | 2012-09-13 19:35:58 -0500 | Timothy Pearson | [qt4-tqt-theme-engine] Add widget cache and fix checkboxes and pushbuttons |
01e69eb4 [view] | master | 2012-09-13 19:00:30 -0500 | Timothy Pearson | [tde-packaging] Fix tdegraphics build-deps on Debian and Ubuntu |
b0aac39b [view] | master | 2012-09-14 01:38:28 +0200 | Slávek Banko | [tde-packaging] Move man pages to /opt/trinity in knowit on Debian and Ubuntu |
95cbed57 [view] | master | 2012-09-14 01:35:44 +0200 | Slávek Banko | [tde-packaging] Fix install directories for knights on Debian and Ubuntu |
5ce02951 [view] | master | 2012-09-14 01:28:15 +0200 | Slávek Banko | [tde-packaging] Move man pages to /opt/trinity in knetworkmanager8 on Debian and Ubuntu |
db0c7b24 [view] | master | 2012-09-13 16:04:01 -0500 | Timothy Pearson | [qt4-tqt-theme-engine] Speed up theme engine |
c0ba03b0 [view] | master | 2012-09-13 21:13:55 +0200 | Slávek Banko | [tde-packaging] Move man pages to /opt/trinity in knetstats on Debian and Ubuntu |
21776790 [view] | master | 2012-09-13 21:11:47 +0200 | Slávek Banko | [tde-packaging] Move man pages to /opt/trinity in knetload on Debian and Ubuntu |
[First Page] [Previous Page] [Next Page] [Last Page]
© 2010-2025 Trinity Desktop Project