Note that you can limit your full-text search to a specific module with the 'module:' keyword. Example: 'module:tdebase <search text>'

[First Page] [Previous Page]  [Next Page] [Last Page]


GIT HashBranchDateAuthorLog Message
18f6f27f [view]master2013-01-12 16:36:04 -0600Timothy Pearson[tdebase] Fix tdm initial dialog display when randr changes the screen configuration on startup
5ac43b8c [view]master2013-01-12 14:58:37 -0600Timothy Pearson[libtdeldap] Create missing symlink for nss configuration file
Clean up build warnings and be verbose about configuration failures
b4c09d07 [view]master2013-01-12 14:26:37 -0600Timothy Pearson[kcmldap] Fix bonding problems
7d5f6d75 [view]master2013-01-12 14:15:03 -0600Timothy Pearson[tde-packaging] Fix kcmldap dependencies on Debian and Ubuntu
bbae7554 [view]master2013-01-12 14:06:37 -0600Timothy Pearson[tdebase] Add keyboard shortcut to start screensaver directly
f0521b2d [view]master2013-01-12 22:21:35 +0800Richard Grenville[tdebase] Feature #75: Invert window color
- Add window color inversion (--invert-color-include). It means 2-3
times extra painting, so performance issues are likely to appear. I
hope I could find a faster way to invert colors.
- Rename some functions.
- Fix update of some window properties after window type/data change.
Hopefully this will be helpful for #73.
- Split win_build_picture() from win_blur_background().
- Correct memory leak of ps->focus_blacklist during reinitialization.
- Add win_upd_t and win_upd_run(), to reduce duplicate window property
updates. But is unused right now.
- Limited tests are done overall. Bugs to be expected.
261c0e1f [view]master2013-01-12 04:30:22 -0600Timothy Pearson[tdebase] Add display hotplug support to TDM
Fix displayconfig control module
4c9ff70f [view]master2013-01-12 04:26:39 -0600Timothy Pearson[tdelibs] Fix libkrandr configuration options
167c4cbe [view]master2013-01-11 22:28:59 -0600Timothy Pearson[tdebase] Fix tsak not working on new libudev versions
Fix kicker Xinerama hiding
Fix potential displayconfig lockup
3e5e79fb [view]master2013-01-11 14:56:34 -0600Timothy Pearson[tdebase] Prevent two unlock dialogs from appearing in any situation
4985b33f [view]master2013-01-11 21:27:59 +0100Slávek Banko[piklab] Fix FTBFS on armel
a35fdc9c [view]master2013-01-11 14:27:25 -0600Timothy Pearson[tdebase] Add profile support to displayconfig and krandrtray
Add automatic display hotplug profile switch support to krandrtray
4d5797b4 [view]master2013-01-11 14:26:36 -0600Timothy Pearson[tdelibs] Add profile support to libkrandr
1e155474 [view]master2013-01-11 14:24:55 -0600Timothy Pearson[tde-packaging] Add tdeinit_displayconfig executable to tdebase packaging for Debian and Ubuntu
5871e8f4 [view]master2013-01-11 21:31:02 +0800Richard Grenville[tdebase] Improvement: Use select() for main loop
- Back to using select() for main loop. Thus we are not longer relying
on libevent.
- Add generic timeout system (untested) to prepare for D-Bus support.
- Drop troff man pages. Revise Makefile to improve documentation
building, fix double LDFLAGS inclusion, and re-add -lrt. This turns
asciidoc into a build time dependency.
- Change fading time calculation.
- Add --logpath and ostream_reopen() for debugging with -b.
- Drop unused lceil_ntimes() and other helper functions.
- Only very limited tests are done. Bugs to be expected.
e88baf83 [view]master2013-01-09 16:39:31 -0600Timothy Pearson[tdebase] Automatically deactivate disconnected display devices
Notify user on display add/remove/change
Add advanced display configuration option to krandr menu
Add option to autohide kicker panels on inactive Xinerama screens and enable by default
Update hwmanager treeview on device change
e9b3f195 [view]master2013-01-09 16:37:06 -0600Timothy Pearson[tdelibs] Add monitor hotplug notification support to TDE hardware devices library
Fix spurious xcalib pipe error notifications
Fix krandr available resolution detection
94cd325e [view]master2013-01-09 20:11:09 +0100Slávek Banko[tde-packaging] Switch to use xine 1.2, if available on Debian and Ubuntu
6e74af14 [view]master2013-01-09 20:25:01 +0800Richard Grenville[tdebase] Bug fix #77 incorrect border_width handling & #73 window data issue
- (Hopefully) fix all incorrect handling of w->a.border_width in compton
(#77). Thanks to baskerville for reporting.
- Attempt to fix #73 by correcting a mistake that window data is fetched
from the wrong function. Thanks to zakkak.
- Add git commit/tag detection to Makefile for automatic versioning.
- Change -lGL linking order, to fix a segmentation fault caused by
something in nvidia-drivers under FreeBSD, mentioned in #74. Thanks
for the report from DachiChang.
- Link to -levent_core instead of -levent in Makefile. We might move to
libev soon, though.
- Increase SWOPTI_TOLERANCE to handle the extraordinary delay of
kqueue() under FreeBSD. Thanks for DachiChang's report.
- Add helper function dump_drawable() for debugging.
- Replace XInternAtom() calls with get_atom().
- Remove -lrt as it's unneeded.
d891478e [view]master2013-01-09 13:04:08 +0100David Verbeiren[libtdevnc] LibVNCClient: Add H.264 encoding for framebuffer updates
This patch implements support in LibVNCClient for framebuffer updates
encoded as H.264 frames. Hardware accelerated decoding is performed
using VA API.
This is experimental support to let the community explore the possibilities
offered by the potential bandwidth and latency reductions that H.264 encoding
allows. This may be particularly useful for use cases such as online gaming,
hosted desktops, hosted set top boxes...
This patch only provides the client side support and is meant to be used
with corresponding server-side support, as provided by an upcoming patch for
qemu ui/vnc module (to view the display of a virtual machine executing under
QEMU).
With this H.264-based encoding, if multiple framebuffer update messages
are generated for a single server framebuffer modification, the H.264
frame data is sent only with the first update message. Subsequent update
framebuffer messages will contain only the coordinates and size of the
additional updated regions.
Instructions/Requirements:
* The patch should be applied on top of the previous patch I submitted with
minor enhancements to the gtkvncviewer application:
http://sourceforge.net/mailarchive/message.php?msg_id=30323804
* Currently only works with libva 1.0: use branch "v1.0-branch" for libva and
intel-driver. Those can be built as follows:
cd libva
git checkout v1.0-branch
./autogen.sh
make
sudo make install
cd ..
git clone git://anongit.freedesktop.org/vaapi/intel-driver
cd intel-driver
git checkout v1.0-branch
./autogen.sh
make
sudo make install
Signed-off-by: David Verbeiren
477e956a [view]master2013-01-08 20:18:50 -0600Timothy Pearson[tdebase] Add per-user display settings
This partially resolves Bug #1264
Fix displayconfig crashes and warnings
Slightly clean up iccconfig and hwmanager
51177984 [view]master2013-01-08 20:16:29 -0600Timothy Pearson[tdelibs] Fix krandr crashes and uninitialized variables
Work around kcmshell minimum size problem by using icon mode instead of plain page mode in the kcmshell janus widget
98d49517 [view]master2013-01-08 17:25:31 +0100David Verbeiren[libtdevnc] gtkvncviewer enhancements
Hide "Connecting" dialog in gtkvncviewer once an update is received.
Hide local cusror in gtkvncviewer.
03ffecb4 [view]master2013-01-08 08:50:58 +0800Richard Grenville[tdebase] Improvement #74: Use libevent for main loop
- Use libevent for main loop. I will explain the reasons in #56 later.
The preferred libevent version is 2.x, yet 1.4.x should work as well.
- As a result, compton now should build fine on *BSD. Thanks to
DachiChang for the FreeBSD build issue report.
- Another consequence is we now use microsecond-level timing all the
way. Nanosecond-level code will be dropped soon. Start using long
instead of unsigned long to represent time in milliseconds, as both
can't hold the full epoch time in ms, anyway, and a signed type
requires less care in subtraction. Wrap the epoch time in ms to 15
days.
- Fix broken NO_VSYNC_DRM and NO_VSYNC_OPENGL compile-time options.
- Use git revision number for versioning in Makefile, and other small
improvements.
- Reorganize struct _win. Drop unused w->damaged_sequence. w->damaged is
turned to bool.
- Add type and format to winprop_t, as preparation for the new condition
format.
- Add w->shadow_force and w->focus_force, to prepare for D-Bus support.
- Rename wid_get_prop() to wid_get_prop_adv() with more options. Add
wrapper function wid_get_prop().
- Add some extra helper functions, for D-Bus support later.
- Make some functions return a bool value to indicate if it's
successful.
- Modify add_win(), use a static const structure to initialize the new
struct _win.
- Add some helper macros, like printf_err(f)(q). Make some errors fatal.
- Rename some types, constants, and functions. Code clean-up.
- Check for time disorder in paint_preprocess() when calculating fading
steps.
- Rename evpoll() to swopti_handle_timeout(), and partially rewrite it.
- Make -h / --help legal.
- Known issue: compton segfaults on FreeBSD with nvidia-drivers, unless
NO_VSYNC_OPENGL is used. Will look into it later. Thamls to DachiChang
for reporting.
08897cba [view]master2013-01-07 22:09:27 +0100Francois Andriot[tde-packaging] RPM Packaging: more forgotten files
0b6cf1d9 [view]master2013-01-07 22:01:14 +0100Francois Andriot[tde-packaging] RPM packaging: adds forgotten files for kdenetwork
32c6bd4f [view]master2013-01-07 21:56:03 +0100Francois Andriot[tde-packaging] RPM packaging: adds optional plugins to K3B
1e0aad00 [view]master2013-01-07 21:47:52 +0100albator[tde-packaging] RPM packaging: updates build script
6ce8eaff [view]master2013-01-07 12:32:47 -0600Timothy Pearson[kcmldap] Fix kadmin output parsing
cc738125 [view]master2013-01-06 22:20:50 -0600Timothy Pearson[tde-packaging] Fix ldap-bonding package name on Debian and Ubuntu
c24b096e [view]master2013-01-06 15:44:53 -0600Darrell Anderson[tdebase] Sync comment in migratekde3 script with change made in commit 39c9f76c.
39c9f76c [view]master2013-01-06 15:43:51 -0600Darrell Anderson[tdebase] Minor fix to r14-xdg-update script.
827f9a0d [view]master2013-01-06 20:49:16 +0100Slávek Banko[tde] Added metapackages trinity-livecd, casper-trinity and ubiquity-trinity
2e67ccec [view]master2013-01-06 20:46:55 +0100Slávek Banko[tde-packaging] Added metapackages trinity-livecd, casper-trinity and ubiquity-trinity on Ubuntu
7e1f33d9 [view]master2013-01-06 15:23:29 +0100Slávek Banko[koffice] Fix kross Ruby 1.9.x FTBFS on armel
f0e6b090 [view]master2013-01-05 16:38:05 +0100Darrell Anderson[tdegraphics] Fix cmake build: ksvg FTBFS due to new fribidi headers
This resolves Bug #1311
923dc595 [view]master2013-01-05 15:47:14 +0100Alexander Golubev[tdegraphics] Fix cmake build: kghostview parallel build
This resolves Bug #1301
3fe3a36f [view]master2013-01-05 15:37:41 +0100Alexander Golubev[tdegraphics] Fix cmake build: removed unnecessary and potentially harmful check in poppler-tqt
This resolves Bug #1295
5f99a271 [view]master2013-01-05 02:51:08 +0100Roman Savochenko[tdelibs] Fix memory leak in CUPS IPP processing
This resolves Bug #1369
b430a3e4 [view]master2013-01-04 02:17:36 +0100Slávek Banko[scripts] Added scripts for creating tarballs
b566058c [view]master2013-01-03 20:17:46 +0100Francois Andriot[tde-packaging] RPM packaging: lots of updates
ce3da132 [view]master2012-12-30 20:54:16 -0600Timothy Pearson[tdebase] Fix media:/ kioslave handling of audio CDs
Allow separate settings for each taskbar applet
Add mouse-driven Kicker resize support
1ae857ee [view]master2012-12-30 20:51:25 -0600Timothy Pearson[tdelibs] Allow arguments to be passed to embedded kcontrol modules
fe7329f1 [view]master2012-12-29 19:15:10 +0100Slávek Banko[tde-packaging] Fix typos in tde-i18n on Debian and Ubuntu
14776d40 [view]master2012-12-29 16:33:57 +0100Slávek Banko[tde-packaging] Remove libmusicbrainz4-dev from build-deps for k3b on Debian and Ubuntu
4e6dde47 [view]master2012-12-26 16:09:58 -0600Timothy Pearson[tde-packaging] Remove all dependencies and suggestions for fatally broken kgtk dialog package
f5c55ca4 [view]master2012-12-26 13:35:01 -0600Darrell Anderson[tdebase] Fix KWin->TWin branding.
7adc7115 [view]master2012-12-23 18:39:53 -0600Darrell Anderson[tdetoys] Fix FTBFS.
0ef12d60 [view]master2012-12-23 17:29:08 -0600Timothy Pearson[tdebase] Add preliminary taskbar task state support
55c907ad [view]master2012-12-22 12:31:37 +0100Slávek Banko[tdebase] Unset/set NETWM shading state around minimizing
Based on KDE GIT commit 8a02a383
dd89b1bd [view]master2012-12-20 02:29:12 +0100Slávek Banko[tdebase] Update r14-xdg-update
+ execute sed using xargs
+ avoid changes in other user data files
+ pass to sed only files that need to be modified
+ use PROFILE_DIR for control listings if CACHE_DIR not exists
02d04ffb [view]master2012-12-18 01:46:42 +0100Slávek Banko[tde-packaging] Change dependency python-dev to python-all-dev in pytdeextensions on Debian and Ubuntu
53a83b95 [view]master2012-12-17 03:28:38 +0100Slávek Banko[tdebase] Update migratekde3: pass to sed only files that need to be modified
0b26938b [view]master2012-12-17 02:12:00 +0100Alexander Golubev[tdelibs] Add sudo kdesu backend option to CMake
This resolves Bug #1286
5356a834 [view]master2012-12-17 01:47:45 +0100Alexander Golubev[tdelibs] Fix variables passed to kde4 applications
This resolves Bug #1366
48724f4b [view]master2012-12-16 19:47:47 +0100Francois Andriot[tdebase] Update starttde: Fix paths setting
fb019470 [view]master2012-12-15 16:09:02 +0100Slávek Banko[tde-packaging] Fix 80ubuntu-xmodmap in tdebase on Debian and Ubuntu
f4edcb2e [view]master2012-12-15 20:07:45 +0800Richard Grenville[tdebase] Improvement: Dynamic blur strength & improved frame blur performance
- Remove the region expansion design in win_blur_background(). I must be
sleep-walking when I wrote that!
- Improve performance of blurring when a window is opaque but its frame
is transparent.
- Adjust blur strength according to window opacity.
--blur-background-fixed restores the old behavior.
- Add "use_offset" parameter to a few functions for convenience. Code
clean-up.
64a9b80f [view]master2012-12-14 20:32:46 +0800Richard Grenville[tdebase] Feature #69: Blur window background
- Add window background blur support (--blur-background &
--blur-background-frame), with X Render convolution filter.
The performance sucks. The performance when the window is opaque but
frame is transparent could be improved, but there are two possible
ways and I'm hesitating.
- Known issue: The blurring effect looks very ungraceful during fading.
I could partially fix the problem, but it probably isn't easy to fix
it completely.
0f891721 [view]master2012-12-14 02:16:06 +0100Alexander Golubev[tdebase] Fix cmake build: unconditioned installation of migratekde3 and xdg-r14-update
c39fc3e2 [view]master2012-12-14 01:37:24 +0100Alexander Golubev[tdebase] Fix cmake build: FTBFS on kioslaves with hal
0756aab5 [view]master2012-12-13 16:58:50 -0600Timothy Pearson[tdelibs] Allow KDirLister to obtain the underlying local file path of a KIO forwarded item (if it exists)
This allows the media:/ and system:/ kioslaves to actually refresh when the underlying (forwarded) filesystem is changed!
65c85dca [view]master2012-12-13 19:24:21 +0100Slávek Banko[tdebase] Fix POP3 mailcheck aborting because of internal memory errors
Backported from KDE SVN commit 1156867
This resolves Bug #737
72ac3a0a [view]master2012-12-13 00:55:44 +0100Slávek Banko[tde-packaging] Use xz compression for Debian and Ubuntu source files
0a039a72 [view]master2012-12-12 12:32:02 -0600Timothy Pearson[tdelibs] Fix FTBFS
81132106 [view]master2012-12-12 00:44:01 -0600Timothy Pearson[libtdeldap] Fix kadmin interface
9b5b8566 [view]master2012-12-12 00:43:05 -0600Timothy Pearson[kcmldapmanager] Fix invalid DN error on startup when default realm is not set
937cb8d1 [view]master2012-12-12 00:41:44 -0600Timothy Pearson[kcmldapcontroller] Fix up kadmin interface
612e7825 [view]master2012-12-11 23:50:47 -0600Timothy Pearson[tde-packaging] Add nss-updatedb to libtdeldap depends
844a51b4 [view]master2012-12-12 12:34:56 +0800Richard Grenville[tdebase] Misc: Code cleanup
- Move some long functions to ./src/compton.c .
- Fix a small potential issue in win_set_focused() when a window with
neither leader nor client window is focused.
- Add DEBUG_LEADER.
7b86cd79 [view]master2012-12-12 12:01:51 +0800Richard Grenville[tdebase] Feature #65: Auxiliary window detection
- Add auxiliary window detection (--detect-transient &
--detect-client-leader). Thanks to SmilingHorse for inspiring me. The
implementation is not too speed-efficient, and bugs are to be
expected.
- Known issue: auxiliary window detection may not work too well with
windows that are never mapped, for example as client leader.
33acff75 [view]master2012-12-11 14:12:23 -0600Timothy Pearson[tde-packaging] Second part of prior commit
e36ec815 [view]master2012-12-11 14:04:15 -0600Timothy Pearson[scripts] Fix script
7b7565e7 [view]master2012-12-11 13:51:19 -0600Timothy Pearson[kcmldapcontroller] Fix LDAP primary realm creation failure
Clean up build warnings
809e08d1 [view]master2012-12-11 13:48:26 -0600Timothy Pearson[tde-packaging] Remove kubuntu_06_fglrx_0_size_screen.diff as it is already incorporated upstream
e8cbbedf [view]master2012-12-11 13:46:04 -0600Timothy Pearson[tqt] Automated update from Qt3
f19aa203 [view]master2012-12-11 13:45:50 -0600Timothy Pearson[qt3] Ensure that a valid DPI is always set
8c91b5f0 [view]master2012-12-11 13:40:55 -0600Timothy Pearson[scripts] Add astyle options
a81c2d06 [view]master2012-12-11 13:21:29 -0600Timothy Pearson[tdelibs] Clean up kfilemetainfo include warning
1c14feca [view]master2012-12-11 12:47:50 -0600Timothy Pearson[tdelibs] Work around Bug #1161
726c6100 [view]master2012-12-10 21:13:25 -0600Timothy Pearson[tdebase] Make shadow settings slightly less confusing
e12b7bea [view]master2012-12-11 03:02:18 +0100Slávek Banko[tde-packaging] Use xz (or bzip2) compression for Debian and Ubuntu binary packages
ba743d36 [view]master2012-12-11 01:32:57 +0100Alexander Golubev[tdeutils] Fix cmake build: WITH_POWERBOOK2 option for kmilo
1cac8a5e [view]master2012-12-10 03:03:12 -0600Timothy Pearson[tdebase] Fix kompmgr shadow support
Add kompmgr settings reload method to twin DCOP
Fix up kompmgr kcontrol module
Make default TDM login screen appearance more like the rest of the TDE login system
8d4a3f89 [view]master2012-12-10 10:31:24 +0800Richard Grenville[tdebase] Feature: Wintype-based focus exclusion
- Add "focus" to the wintypes settings in compton.conf, to mark windows
of certain window types to be always focused. Replaces the ugly
is_normal_win().
- Add a ON/OFF/UNSET switch_t type, but it's unused currently.
- Mark client_win if the window client detection hasn't been performed
when we detect WM_STATE's presence in ev_property_notify(), for
performance.
cbad8f3b [view]master2012-12-09 16:52:08 -0600Timothy Pearson[tde-packaging] Re-enable glib main loop support on Debian and Ubuntu due to recent fix in Qt3/TQt3
e863a01b [view]master2012-12-09 16:34:42 -0600Timothy Pearson[tqt] Automated update from Qt3
72eba914 [view]master2012-12-09 16:33:47 -0600Timothy Pearson[qt3] Fix X11 fd polling initialization in glib main loop
This resolves Bug #1358
cee30658 [view]master2012-12-09 14:07:47 -0600Darrell Anderson[tdebase] Update r14--xdg-update error traps, comments, and add renaming snippets
removed from migratekde3 script.
58584fa6 [view]master2012-12-09 14:04:57 -0600Darrell Anderson[tdebase] Update migratekde3 error traps, comments, and remove renaming snippets.
1abd6bb9 [view]master2012-12-08 14:39:13 -0600Timothy Pearson[tde] Recreate repository with current state
04e0ce7b [view]master2012-12-08 19:08:13 +0100Slávek Banko[tde-packaging] Switch avahi-tqt packaging to cdbs on Debian and Ubuntu
28ff5585 [view]master2012-12-08 18:25:54 +0100Slávek Banko[tdeutils] Fix cmake build: FTBFS with CMake older than 2.8.1
94f292b9 [view]master2012-12-08 11:10:08 +0800Richard Grenville[tdebase] Bug fix #68: Second attempt to fix client window detection
- Attempt to fix client window detection when WM_STATE property is not
yet set when the window is mapped. Thanks to kinclma1 for reporting.
- Apply stricter checks for whether window is mapped in
determine_evmask() and win_mark_client().
c2cf6015 [view]master2012-12-07 20:59:01 -0600Timothy Pearson[scripts] Remove ignore-submodules flag from git commands in order to support older GIT versions
3289e9c0 [view]master2012-12-07 20:07:01 -0600Timothy Pearson[tqt] Automated update from Qt3
a7865cf6 [view]master2012-12-07 20:06:25 -0600Timothy Pearson[qt3] Fix glib event loop threading
eb47d241 [view]master2012-12-07 15:02:42 -0600Timothy Pearson[tqt] Automated update from Qt3
9bff9eee [view]master2012-12-07 15:01:56 -0600Timothy Pearson[qt3] Add level method to recursive mutex
Enhance thread safety when making event calls
Minor cleanup of whitespace in glib event loop
bfbf991a [view]master2012-12-07 22:38:10 +0800Richard Grenville[tdebase] Bug fix #68: Possible fix for failure in client window detection
- Note I'm not in the best state today (bad cold & sleep-deprived). This
commit is likely to introduce bugs.
- Attempt to fix client window detection failures happening when compton
searches for client window before it's ready.
- Fix build failure with in #51.
- Move client window detection to a new function win_recheck_client().
- Add win_unmark_client(), which unmarks a client window.
- Rename a few functions.
- Split fetching of values of type-Window properties to a new function
wid_get_prop_window().
- Add extra safety checks and assert calls to various functions, to
expose potential bugs.
- Fix a memory leak that w->role is not freed on window destruction.

List generated Tue Mar 17 11:20:00 2026
Currently showing patches 45201 to 45300 of 56014 [View All on Single Page]
Note that you can limit your full-text search to a specific module with the 'module:' keyword. Example: 'module:tdebase <search text>'

[First Page] [Previous Page]  [Next Page] [Last Page]