[First Page] [Previous Page] [Next Page] [Last Page]
GIT Hash | Branch | Date | Author | Log Message |
---|---|---|---|---|
6d6796c2 [view] | master | 2011-10-28 23:54:47 +0000 | tpearson | [libltdl] Add debugging message upon libltdl dlopen() failure This greatly simplifies debugging TDE dynamically loaded plugins! |
41b6eec2 [view] | master | 2011-10-28 18:58:39 +0000 | tpearson | [tdemultimedia] Fix kdemultimedia FTBFS on Fedora 15 Thanks to François Androit for the patch! |
e775ea5d [view] | master | 2011-10-28 15:59:28 +0000 | tpearson | [tdemultimedia] Pass assitional linker flags to kdemultimedia kfile-plugins modules to satisfy new direct DSO linking requirements |
9b3de9e4 [view] | master | 2011-10-27 18:10:41 +0000 | tpearson | [arts] Fix artswrapper unset executable name This closes regression Bug #564 |
c95d8dea [view] | master | 2011-10-27 15:39:53 +0000 | tpearson | [tdebase] Sync kxkb with the latest numlockx sources This is related to Bug #561, but may not be sufficient to close it |
a2c2f2ed [view] | master | 2011-10-27 10:07:05 -0500 | Timothy Pearson | [tde-packaging] Set Modify/Break keywords on kontact integration for basket-trinity to allow for upgrade from older non-split versions |
378e17d1 [view] | master | 2011-10-27 03:18:43 +0000 | tpearson | [tdelibs] Fix KHTML multi-line textboxes rendering incorrectly This closes Bug #558 |
b551e05e [view] | master | 2011-10-26 14:59:06 -0700 | Peter Watkins | [libtdevnc] Added comments. |
c5b07b63 [view] | master | 2011-10-26 20:01:41 +0000 | tpearson | [other] Enable owner write access on suid executables This does not change the security of said executables, as the owner always has the ability to chmod +w and then edit the file |
ae530517 [view] | master | 2011-10-26 20:01:41 +0000 | tpearson | [tde-cmake] Enable owner write access on suid executables This does not change the security of said executables, as the owner always has the ability to chmod +w and then edit the file |
2b33100f [view] | master | 2011-10-26 19:40:13 +0000 | tpearson | [tdebase] Fix kdebase FTBFS on Fedora 15 |
7f1b1186 [view] | master | 2011-10-26 14:32:11 -0500 | Timothy Pearson | [tde-packaging] Split basket kontact integration into separate package |
2b178a53 [view] | master | 2011-10-26 19:03:07 +0000 | tpearson | [tdebase] Fix kdesu breaking all DCOP communication in the current TDE session This closes Bug #394 |
9e1f287e [view] | master | 2011-10-26 18:00:36 +0000 | tpearson | [tdebase] Provide option to enable application autocompletion in the run dialog This fixes regression bug #557 |
e7d3e8c4 [view] | master | 2011-10-26 17:52:24 +0000 | tpearson | [tdenetwork] Fix failure to launch Kopete when statistics module is enabled due to faulty SQLite linkage when Autotools is used to build kdenetwork |
e5bbee9b [view] | master | 2011-10-26 17:21:55 +0000 | tpearson | [kdbusnotification] Second part of prior commit |
e62b95a2 [view] | master | 2011-10-26 17:21:27 +0000 | tpearson | [kdbusnotification] Remove incorrect user visible kdbusnotification shortcut from Kicker |
fdadce76 [view] | master | 2011-10-26 17:20:23 +0000 | tpearson | [tdesudo] Update license headers in kdesudo This should have been done before the freeze, but it does not really matter because no compilable code was altered |
3df7537a [view] | master | 2011-10-26 18:41:19 +0200 | Christian Beier | [libtdevnc] Fix deadlock in threaded mode when using nested rfbClientIteratorNext() calls. Lengthy explanation follows... First, the scenario before this patch: We have three clients 1,2,3 connected. The main thread loops through them using rfbClientIteratorNext() (loop L1) and is currently at client 2 i.e. client 2's cl_2->refCount is 1. At this point we need to loop again through the clients, with cl_2->refCount == 1, i.e. do a loop L2 nested within loop L1. BUT: Now client 2 disconnects, it's clientInput thread terminates its clientOutput thread and calls rfbClientConnectionGone(). This LOCKs clientListMutex and WAITs for cl_2->refCount to become 0. This means this thread waits for the main thread to release cl_2. Waiting, with clientListMutex LOCKed! Meanwhile, the main thread is about to begin the inner rfbClientIteratorNext() loop L2. The first call to rfbClientIteratorNext() LOCKs clientListMutex. BAAM. This mutex is locked by cl2's clientInput thread and is only released when cl_2->refCount becomes 0. The main thread would decrement cl_2->refCount when it would continue with loop L1. But it's waiting for cl2's clientInput thread to release clientListMutex. Which never happens since this one's waiting for the main thread to decrement cl_2->refCount. DEADLOCK. Now, situation with this patch: Same as above, but when client 2 disconnects it's clientInput thread rfbClientConnectionGone(). This again LOCKs clientListMutex, removes cl_2 from the linked list and UNLOCKS clientListMutex. The WAIT for cl_2->refCount to become 0 is _after_ that. Waiting, with clientListMutex UNLOCKed! Therefore, the main thread can continue, do the inner loop L2 (now only looping through 1,3 - 2 was removed from the linked list) and continue with loop L1, finally decrementing cl_2->refCount, allowing cl2's clientInput thread to continue and terminate. The resources held by cl2 are not free()'d by rfbClientConnectionGone until cl2->refCount becomes 0, i.e. loop L1 has released cl2. |
8310ddd1 [view] | master | 2011-10-26 06:15:09 +0000 | tpearson | [gtk-qt-engine] Fix highly visible incorrect mapping of GTK generic file icon to TDE unknown mimetype icon This is rammed throught the hard freeze only due to its high visibility in common GTK applications such as Firefox |
cb717a24 [view] | master | 2011-10-25 23:22:23 +0000 | tpearson | [tdelibs] Rebrand version string to final 3.5.13 release Trinity is now in a hard code freeze |
d2d02601 [view] | master | 2011-10-24 23:21:18 +0000 | tpearson | [gtk-qt-engine] Fix menu bar drawing failures on Firefox v4+ and Thunderbird when used with the GTK Qt Theme Engine This partially resolves Bug #546 |
3e35e06e [view] | master | 2011-10-24 22:32:10 +0000 | tpearson | [tdelibs] Add cr16-action-button_ok.png to kdelibs |
d9ed5a87 [view] | master | 2011-10-24 17:31:00 -0500 | Timothy Pearson | [tde-packaging] Add button_ok and button_cancel 16 pixel icons to kdelibs |
4b23394a [view] | master | 2011-10-24 18:08:17 +0000 | tpearson | [gtk-qt-engine] Fix GTK Qt engine when used with a compositor supporting ARGB visuals |
416a551e [view] | master | 2011-10-24 18:06:08 +0000 | tpearson | [tdelibs] Add constructor to KApplication that allows ARGB visuals to be manually disabled This allows the GTK Qt theme engine to work with a KApplication object when a window compositor is enabled |
0d2336ff [view] | master | 2011-10-24 01:16:22 +0000 | tpearson | [tdelibs] Fix kdelibs FTBFS |
4f0472c4 [view] | master | 2011-10-24 01:12:32 +0000 | tpearson | [tdebase] Fix xsetroot breaking kompmgr |
6cbb68bb [view] | master | 2011-10-24 00:06:26 +0000 | tpearson | [smartcardauth] Attempt to fix failure to logon if smart card is inserted during system startup |
d1b18274 [view] | master | 2011-10-23 23:48:50 +0000 | tpearson | [tdebase] Attempt to fix Kicker freezing on the screen when logout is selected |
40bd0569 [view] | master | 2011-10-23 22:42:12 +0000 | tpearson | [tdebase] Fix kdebase conditional builds Thanks to Fat-Zer for the patch! |
ef563f17 [view] | master | 2011-10-23 22:26:29 +0000 | tpearson | [tdebase] Fix kdebase translations in desktop files Thanks to Fat-Zer for the patch! |
51aaf7ff [view] | master | 2011-10-23 22:23:16 +0000 | tpearson | [tdeartwork] Fix broken translations and remove invalid ones Thanks to Fat-Zer for the patch! |
69067080 [view] | master | 2011-10-23 22:10:05 +0000 | tpearson | [tdebase] Add option to disable Konqueror smooth scrolling Thanks to Nick Leverton for the patch! |
f23b0d85 [view] | master | 2011-10-23 21:50:48 +0000 | tpearson | [amarok] Update Amarok help file symlinks Thanks to Darrell Anderson for the patch! |
b54509d5 [view] | master | 2011-10-23 16:31:26 -0500 | Timothy Pearson | [tde-packaging] Add tde-xparts-extras-trinity skeleton to Ubuntu and Debian packaging for kdebindings Rename KDE to TDE in kdebindings packaging |
72f59967 [view] | master | 2011-10-23 16:08:16 -0500 | Timothy Pearson | [tde-packaging] Move dependency on perl-suid to a recommends on Ubuntu and Debian |
89e59df7 [view] | master | 2011-10-22 22:08:54 +0000 | tpearson | [tdelibs] Fix findSignal failure in kio net slave This fixes audio CD CDDB lookups among other things |
6a4cb497 [view] | master | 2011-10-22 18:30:36 +0000 | tpearson | [tdenetwork] Fix krfb SIGABRT when graphics driver lacks shared memory support. This closes Bug #422 Thanks to Debian for the patch! |
b22d2d2b [view] | master | 2011-10-22 17:38:24 +0000 | tpearson | [tdenetwork] Revert int size change in krfb.h When connecting to an AMD64 krfb server, it will not accept the correct password due to a word size issue. This was a regression somewhere around 2008, the Debian bug mail refers to it. Thanks to Nick Leverton for the patch! |
48a18184 [view] | master | 2011-10-22 01:24:48 +0000 | tpearson | [koffice] Fix koffice FTBFS on armel |
cd71be65 [view] | master | 2011-10-21 20:15:40 +0200 | albator | [tde-packaging] Update for QT3.3.3.8d |
5b6e8c67 [view] | master | 2011-10-21 20:15:15 +0200 | albator | [tde-packaging] Small fixups for K3B |
5da81c3e [view] | master | 2011-10-21 20:14:13 +0200 | albator | [tde-packaging] Add libcaldav and libcarddav for RHEL6 |
a2b242fb [view] | master | 2011-10-20 20:50:21 +0000 | tpearson | [koffice] Fix a koffice FTBFS on armel |
0a842010 [view] | master | 2011-10-20 19:44:41 +0000 | tpearson | [tdevelop] Fix kdevelop FTBFS on armel |
0141c1ae [view] | master | 2011-10-20 15:39:22 +0000 | tpearson | [tdetoys] Fix kdetoys FTBFS on armel |
a8707e2a [view] | master | 2011-10-20 10:08:10 -0500 | Timothy Pearson | [tde-packaging] Fix kdeutils FTBFS on armel under Ubuntu and Debian |
8f7614a4 [view] | master | 2011-10-20 06:45:17 +0000 | tpearson | [tdesdk] Fix kdesdk FTBFS on armel |
5379c37c [view] | master | 2011-10-20 03:59:04 +0000 | tpearson | [tdeartwork] Commit initial kdeartwork CMake support, courtesy of Golubev Alexander |
9c16e949 [view] | master | 2011-10-20 03:41:26 +0000 | tpearson | [bibletime] Fix bibletime FTBFS on armel |
ecd4f459 [view] | master | 2011-10-19 20:57:37 +0000 | tpearson | [tdeedu] Fix kdeedu FTBFS |
b7851ae5 [view] | master | 2011-10-19 20:20:23 +0000 | tpearson | [tdeedu] Fix a couple kdeedu build problems on armel |
9c86c7e0 [view] | master | 2011-10-19 15:06:15 -0500 | Timothy Pearson | [tde-packaging] Add libtqt3-integration-trinity package to kdebase on Debian and Ubuntu |
948b987b [view] | master | 2011-10-19 14:40:44 -0500 | Timothy Pearson | [tde-packaging] Add empty directories that were not properly committed earlier |
a9cfcd75 [view] | master | 2011-10-19 19:05:08 +0000 | tpearson | [tdebase] TQt port tqt3integration |
337f18fe [view] | master | 2011-10-19 18:56:47 +0000 | tpearson | [tdebase] Add tqt3integration These files were originally taken from the GPLed OpenSUSE kdebase builds |
a04fc552 [view] | master | 2011-10-19 07:12:43 +0000 | tpearson | [ktorrent] Fix ktorrent string errors Thanks to Calvin Morrison for the patch! |
6f703b6c [view] | master | 2011-10-19 05:20:42 +0000 | tpearson | [tdeadmin] Add newer Ubuntu and Debian versions to the networkconf backend This closes Bug #548 |
06969072 [view] | master | 2011-10-19 05:06:16 +0000 | tpearson | [gtk-qt-engine] Add notes to gtk engine on how to fix the Tree View...when GTK fixes it first! |
0ee1f62b [view] | master | 2011-10-19 04:31:26 +0000 | tpearson | [gtk-qt-engine] Fix additional GTK theme engine problems |
d1071e29 [view] | master | 2011-10-19 04:17:09 +0000 | tpearson | [tdelibs] Add missing cr16-action-button_cancel.png icon file to kdelibs |
1944004a [view] | master | 2011-10-19 03:37:13 +0000 | tpearson | [tdebase] From "Fat-Zer" "This patch adds generate of kwin.cmake file. This file will be used by kwin-styles package from kdeartwork." |
09b929ee [view] | master | 2011-10-19 03:21:21 +0000 | tpearson | [gtk-qt-engine] Fix gtk-qt-engine tab bars |
94a5414c [view] | master | 2011-10-19 02:53:52 +0000 | tpearson | [gtk-qt-engine] Fix up a number of GTK/Qt theme engine problems |
bb335ea2 [view] | master | 2011-10-18 19:17:51 +0000 | tpearson | [tdebase] Fix kdesktop_lock lock date/time display |
e980b1bc [view] | master | 2011-10-18 17:20:56 +0000 | tpearson | [tdenetwork] Fix kppp FTBFS under armel |
b70482d0 [view] | master | 2011-10-18 03:40:42 +0000 | tpearson | [tdelibs] Make KPassivePopup emit a signal when a popup is hidden |
7dfe6d3e [view] | master | 2011-10-17 22:19:14 -0500 | Timothy Pearson | [tde-packaging] Do not depend on valgrind when doing armel builds of kdenetwork |
4e9cb943 [view] | master | 2011-10-17 22:07:00 -0500 | Timothy Pearson | [tde-packaging] Fix kdbusnotification packaging |
509cac7d [view] | master | 2011-10-17 19:42:47 -0500 | Timothy Pearson | [tde-packaging] Add packaging for kdbusnotification |
a062a26f [view] | master | 2011-10-18 00:33:57 +0000 | tpearson | [kdbusnotification] Add autostart files to kdbusnotifier |
49eb1758 [view] | master | 2011-10-18 00:13:32 +0000 | tpearson | [kdbusnotification] Add stack to kdbusdaemon |
8e8432bc [view] | master | 2011-10-17 23:51:06 +0000 | tpearson | [kdbusnotification] Initial version of the kdbusnotification service |
3f4f6118 [view] | master | 2011-10-17 19:46:22 +0000 | tpearson | [kdbusnotification] Set externals |
845ab446 [view] | master | 2011-10-17 19:45:53 +0000 | tpearson | [kdbusnotification] Add kdbusnotification skeleton |
32401070 [view] | master | 2011-10-17 12:47:42 -0500 | Timothy Pearson | [tde-packaging] Fix knetworkmanager8 on lenny |
76ef832c [view] | master | 2011-10-17 18:47:27 +0100 | Tim Williams | [tde-packaging] Adding the remaining Mandriva patches and spec files |
21b109e4 [view] | master | 2011-10-17 17:45:18 +0000 | tpearson | [tdenetworkmanager] Import externals for knetworkmanager9 |
367c63d2 [view] | master | 2011-10-17 17:44:58 +0000 | tpearson | [knetworkmanager8] Import externals for knetworkmanager8 |
9279804b [view] | master | 2011-10-17 17:38:53 +0000 | tpearson | [tdenetworkmanager] Add dead-ended knetworkmanager 0.8 source Add copy of same for knetworkmanager 0.9 starting point |
1e0dd586 [view] | master | 2011-10-17 17:38:53 +0000 | tpearson | [knetworkmanager8] Add dead-ended knetworkmanager 0.8 source Add copy of same for knetworkmanager 0.9 starting point |
fb6450c3 [view] | master | 2011-10-17 12:28:02 -0500 | Timothy Pearson | [tde-packaging] Finish knetworkmanager source package rename |
941f027b [view] | master | 2011-10-17 12:26:16 -0500 | Timothy Pearson | [tde-packaging] Add knetworkmanager version number in source package name |
f503bf1c [view] | master | 2011-10-17 12:24:31 -0500 | Timothy Pearson | [tde-packaging] Force knetworkmanager to avoid network-manager 0.8.9 and above |
fd1cb38f [view] | master | 2011-10-17 16:29:13 +0000 | tpearson | [ksquirrel] Fix ksquirrel FTBFS under oneiric i386 |
51cb1328 [view] | master | 2011-10-17 16:18:22 +0000 | tpearson | [krusader] Fix krusader FTBFS under oneiric |
45ec7146 [view] | master | 2011-10-17 07:48:22 +0000 | tpearson | [ksquirrel] Fix ksquirrel FTBFS under oneiric |
d64e4117 [view] | master | 2011-10-17 07:39:05 +0000 | tpearson | [ksystemlog] Fix ksystemlog FTBFS under oneiric |
5899fe29 [view] | master | 2011-10-17 07:35:07 +0000 | tpearson | [wlassistant] Fix wlassistant FTBFS under oneiric |
2be53f68 [view] | master | 2011-10-17 06:57:59 +0000 | tpearson | [smartcardauth] Fix smartcardauth FTBFS under oneiric |
b9244069 [view] | master | 2011-10-17 06:52:44 +0000 | tpearson | [kvirc] Fix kvirc FTBFS under oneiric |
0404f9a2 [view] | master | 2011-10-17 06:35:03 +0000 | tpearson | [tellico] Fix tellico FTBFS under oneiric |
acd32952 [view] | master | 2011-10-17 05:21:34 +0000 | tpearson | [rosegarden] Fix rosegarden FTBFS under oneiric |
b21d29de [view] | master | 2011-10-17 03:26:30 +0000 | tpearson | [piklab] Fix piklab FTBFS under oneiric |
e3b8aaab [view] | master | 2011-10-16 22:16:17 -0500 | Johannes Schindelin | [libtdevnc] Update AUTHORS Signed-off-by: Johannes Schindelin |
fba4818a [view] | master | 2011-10-16 22:02:11 -0500 | George Fleury | [libtdevnc] Fix memory leak I was debbuging some code tonight and i found a pointer that is not been freed, so i think there is maybe a memory leak, so it is... there is the malloc caller reverse order: ( malloc cl->statEncList ) <- rfbStatLookupEncoding <- rfbStatRecordEncodingSent <- rfbSendCursorPos <- rfbSendFramebufferUpdate <- rfbProcessEvents I didnt look the whole libvncserver api, but i am using rfbReverseConnection with rfbProcessEvents, and then when the client connection dies, i am calling a rfbShutdownServer and rfbScreenCleanup, but the malloc at rfbStatLookupEncoding isnt been freed. So to free the stats i added a rfbResetStats(cl) after rfbPrintStats(cl) at rfbClientConnectionGone in rfbserver.c before free the cl pointer. (at rfbserver.c line 555). And this, obviously, is correcting the memory leak. Signed-off-by: Johannes Schindelin |
ff9eff8e [view] | master | 2011-10-16 22:00:37 -0500 | Timothy Pearson | [tde-packaging] Add libreadline6-dev as piklab build dep on Debian and Ubuntu |
3693985f [view] | master | 2011-10-17 02:48:34 +0000 | tpearson | [knights] Fix knights FTBFS under oneiric |
2403c831 [view] | master | 2011-10-16 17:10:54 -0500 | Timothy Pearson | [tde-packaging] Fix kiosktool build deps under Debian and Ubuntu |
[First Page] [Previous Page] [Next Page] [Last Page]
© 2010-2025 Trinity Desktop Project