You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(98) |
Sep
(138) |
Oct
(100) |
Nov
(49) |
Dec
(131) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(94) |
Feb
(65) |
Mar
(100) |
Apr
(83) |
May
(72) |
Jun
(29) |
Jul
(167) |
Aug
(127) |
Sep
(131) |
Oct
(269) |
Nov
(122) |
Dec
(100) |
2005 |
Jan
(228) |
Feb
(266) |
Mar
(63) |
Apr
(135) |
May
(157) |
Jun
(52) |
Jul
(25) |
Aug
(49) |
Sep
(184) |
Oct
(159) |
Nov
(75) |
Dec
(37) |
2006 |
Jan
(60) |
Feb
(129) |
Mar
(110) |
Apr
(34) |
May
(31) |
Jun
(42) |
Jul
(72) |
Aug
(90) |
Sep
(57) |
Oct
(66) |
Nov
(42) |
Dec
(90) |
2007 |
Jan
(106) |
Feb
(54) |
Mar
(93) |
Apr
(27) |
May
(21) |
Jun
(17) |
Jul
(19) |
Aug
(22) |
Sep
(25) |
Oct
(2) |
Nov
(1) |
Dec
(1) |
2008 |
Jan
(65) |
Feb
(70) |
Mar
(29) |
Apr
(45) |
May
(91) |
Jun
(20) |
Jul
(11) |
Aug
(24) |
Sep
(23) |
Oct
(13) |
Nov
(23) |
Dec
(39) |
2009 |
Jan
(23) |
Feb
(39) |
Mar
(15) |
Apr
(56) |
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Shie E. <er...@us...> - 2004-07-29 20:05:51
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15750/krusader/Panel Modified Files: listpanel.cpp Log Message: missing i18n Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** listpanel.cpp 29 Jul 2004 17:08:06 -0000 1.77 --- listpanel.cpp 29 Jul 2004 20:05:42 -0000 1.78 *************** *** 819,823 **** if ( KMessageBox::warningContinueCancel( krApp, i18n( "Are you sure you want to shred " ) + "\"" + item->name() + "\"" + ! " ? Once shred, the file is gone forever !!!", QString::null, KStdGuiItem::cont(), "Shred" ) == KMessageBox::Continue ) KShred::shred( func->files() ->vfs_getFile( item->name() ).path( -1 ) ); --- 819,823 ---- if ( KMessageBox::warningContinueCancel( krApp, i18n( "Are you sure you want to shred " ) + "\"" + item->name() + "\"" + ! i18n(" ? Once shred, the file is gone forever !!!"), QString::null, KStdGuiItem::cont(), "Shred" ) == KMessageBox::Continue ) KShred::shred( func->files() ->vfs_getFile( item->name() ).path( -1 ) ); |
From: Shie E. <er...@us...> - 2004-07-29 20:05:23
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15668/krusader/Search Modified Files: krsearchdialog.cpp Log Message: missing i18n Index: krsearchdialog.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Search/krsearchdialog.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** krsearchdialog.cpp 7 Jul 2004 14:19:47 -0000 1.17 --- krsearchdialog.cpp 29 Jul 2004 20:05:15 -0000 1.18 *************** *** 278,282 **** new QListViewItem(resultsList, what, where.replace(QRegExp("\\\\"),"#"), KRpermHandler::parseSize(size), KGlobal::locale()->formatDateTime(tmp), perm); ! QString totals = QString("Found %1 matches.").arg(resultsList->childCount()); foundLabel->setText(totals); } --- 278,282 ---- new QListViewItem(resultsList, what, where.replace(QRegExp("\\\\"),"#"), KRpermHandler::parseSize(size), KGlobal::locale()->formatDateTime(tmp), perm); ! QString totals = QString(i18n("Found %1 matches.")).arg(resultsList->childCount()); foundLabel->setText(totals); } |
From: Dirk E. <des...@us...> - 2004-07-29 17:18:57
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15100/krusader Modified Files: main.cpp Log Message: Added "Bosnian translation" credit Index: main.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/main.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** main.cpp 6 Jul 2004 12:14:50 -0000 1.29 --- main.cpp 29 Jul 2004 17:18:48 -0000 1.30 *************** *** 92,95 **** --- 92,96 ---- aboutData.addCredit("Jinghua Luo","Chinese Simplified translation","luo...@ms...",0); aboutData.addCredit("Quim Perez","Catalan translation","no...@os...",0); + aboutData.addCredit("Asim Husanovic","Bosnian translation","as...@me...",0); aboutData.addCredit("Milan Brabec","the first patch ever !","mb...@vo...",0); |
From: Karai C. <ck...@us...> - 2004-07-29 17:08:15
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12942/krusader_kde3/krusader/Panel Modified Files: listpanel.cpp listpanel.h Log Message: ADDED: dropping URL-s onto the status / totals line Index: listpanel.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.h,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** listpanel.h 26 Jul 2004 22:21:20 -0000 1.22 --- listpanel.h 29 Jul 2004 17:08:06 -0000 1.23 *************** *** 119,125 **** protected slots: ! void handleDropOnView( QDropEvent * ); // handles drops on the view only void startDragging( QStringList, QPixmap ); ! void togglePanelPopup(); signals: --- 119,127 ---- protected slots: ! void handleDropOnView(QDropEvent *, QWidget *destWidget=0); // handles drops on the view only ! void handleDropOnTotals( QDropEvent * ); // handles drops on the totals line ! void handleDropOnStatus( QDropEvent * ); // handles drops on the status line void startDragging( QStringList, QPixmap ); ! void togglePanelPopup(); signals: Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** listpanel.cpp 27 Jul 2004 22:38:09 -0000 1.76 --- listpanel.cpp 29 Jul 2004 17:08:06 -0000 1.77 *************** *** 108,111 **** --- 108,112 ---- status->setLineWidth( 1 ); // a nice 3D touch :-) status->setText( "" ); // needed for initialization code! + status->enableDrops( true ); int sheight = QFontMetrics( status->font() ).height() + 4; status->setMaximumHeight( sheight ); *************** *** 115,118 **** --- 116,120 ---- "type of filesystem etc." ) ); connect( status, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); + connect( status, SIGNAL( dropped( QDropEvent *) ), this, SLOT( handleDropOnStatus(QDropEvent *) ) ); // ... create the history button *************** *** 139,146 **** --- 141,150 ---- totals->setLineWidth( 1 ); // a nice 3D touch :-) totals->setMaximumHeight( sheight ); + totals->enableDrops( true ); QWhatsThis::add ( totals, i18n( "The totals bar shows how much files exist, " "how many did you select and the bytes math" ) ); connect( totals, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); + connect( totals, SIGNAL( dropped( QDropEvent *) ), this, SLOT( handleDropOnTotals(QDropEvent *) ) ); // a quick button to open the popup panel *************** *** 523,528 **** } ! void ListPanel::handleDropOnView( QDropEvent *e ) { // if copyToPanel is true, then we call a simple vfs_addfiles bool copyToDirInPanel = false; --- 527,539 ---- } + void ListPanel::handleDropOnTotals( QDropEvent *e ) { + handleDropOnView( e, totals ); + } ! void ListPanel::handleDropOnStatus( QDropEvent *e ) { ! handleDropOnView( e, status ); ! } ! ! void ListPanel::handleDropOnView( QDropEvent *e, QWidget *widget ) { // if copyToPanel is true, then we call a simple vfs_addfiles bool copyToDirInPanel = false; *************** *** 533,537 **** vfs* tempFiles = func->files(); vfile *file; ! KrViewItem *i = view->getKrViewItemAt( e->pos() ); if ( e->source() == otherPanel ) --- 544,553 ---- vfs* tempFiles = func->files(); vfile *file; ! KrViewItem *i = 0; ! if( widget == 0 ) ! { ! i = view->getKrViewItemAt( e->pos() ); ! widget = this; ! } if ( e->source() == otherPanel ) *************** *** 591,595 **** popup.insertItem( i18n( "Link Here" ), 3 ); popup.insertItem( i18n( "Cancel" ), 4 ); ! QPoint tmp = mapToGlobal( e->pos() ); int result = popup.exec( tmp ); switch ( result ) { --- 607,611 ---- popup.insertItem( i18n( "Link Here" ), 3 ); popup.insertItem( i18n( "Cancel" ), 4 ); ! QPoint tmp = widget->mapToGlobal( e->pos() ); int result = popup.exec( tmp ); switch ( result ) { |
From: Karai C. <ck...@us...> - 2004-07-29 17:08:15
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12942/krusader_kde3/krusader/Dialogs Modified Files: krsqueezedtextlabel.cpp krsqueezedtextlabel.h Log Message: ADDED: dropping URL-s onto the status / totals line Index: krsqueezedtextlabel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krsqueezedtextlabel.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** krsqueezedtextlabel.cpp 12 Jun 2003 18:45:25 -0000 1.1 --- krsqueezedtextlabel.cpp 29 Jul 2004 17:08:06 -0000 1.2 *************** *** 1,5 **** #include "krsqueezedtextlabel.h" ! KrSqueezedTextLabel::KrSqueezedTextLabel(QWidget *parent, const char *name): KSqueezedTextLabel(parent, name) { } --- 1,7 ---- #include "krsqueezedtextlabel.h" + #include <kurldrag.h> ! KrSqueezedTextLabel::KrSqueezedTextLabel(QWidget *parent, const char *name): ! KSqueezedTextLabel(parent, name), acceptDrops( false ) { } *************** *** 13,16 **** --- 15,34 ---- } + void KrSqueezedTextLabel::enableDrops( bool flag ) + { + setAcceptDrops( acceptDrops = flag ); + } + + void KrSqueezedTextLabel::dropEvent(QDropEvent *e) { + emit dropped(e); + } + + void KrSqueezedTextLabel::dragEnterEvent(QDragEnterEvent *e) { + if( acceptDrops ) + e->accept( KURLDrag::canDecode( e ) ); + else + KSqueezedTextLabel::dragEnterEvent( e ); + } + #include "krsqueezedtextlabel.moc" Index: krsqueezedtextlabel.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krsqueezedtextlabel.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** krsqueezedtextlabel.h 12 Jun 2003 18:46:01 -0000 1.1 --- krsqueezedtextlabel.h 29 Jul 2004 17:08:06 -0000 1.2 *************** *** 5,8 **** --- 5,10 ---- class QMouseEvent; + class QDropEvent; + class QDragEnterEvent; /** *************** *** 16,24 **** --- 18,34 ---- ~KrSqueezedTextLabel(); + void enableDrops( bool flag ); + signals: void clicked(); /**< emitted when someone clicks on the label */ + void dropped(QDropEvent *); /**< emitted when someone drops URL onto the label */ protected: virtual void mousePressEvent(QMouseEvent *e); + virtual void dropEvent(QDropEvent *e); + virtual void dragEnterEvent(QDragEnterEvent *e); + + private: + bool acceptDrops; }; |
From: Karai C. <ck...@us...> - 2004-07-29 17:08:15
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12942/krusader_kde3 Modified Files: CVSNEWS ChangeLog Log Message: ADDED: dropping URL-s onto the status / totals line Index: CVSNEWS =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/CVSNEWS,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CVSNEWS 29 Jul 2004 14:20:16 -0000 1.3 --- CVSNEWS 29 Jul 2004 17:08:05 -0000 1.4 *************** *** 3,6 **** --- 3,10 ---- in some way an extension to the changelog. + Dropping URL-s onto the status / totals line: + If a directory contains a lot of subdirectories, it may not possible to drop + the URL onto the panel (on which only directories are visible). From now the + URL can be dropped onto the status / totals line instead. Sync-browsing: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.267 retrieving revision 1.268 diff -C2 -d -r1.267 -r1.268 *** ChangeLog 29 Jul 2004 14:28:08 -0000 1.267 --- ChangeLog 29 Jul 2004 17:08:06 -0000 1.268 *************** *** 1,3 **** --- 1,4 ---- ====================== + ADDED: dropping URL-s onto the status / totals line ADDED: Bosnian translation ADDED: synchronizer: excluding files with '|' in the file filter *************** *** 177,181 **** REMOVED: arc_vfs support completly replaced with KIO:Slave technolegy. ! UPDATED: new package description - Thanks to Jonas Bähr UPDATED: Krusader Handbook (read ./doc/ChangeLog for more info) UPDATED: Japanese translation --- 178,182 ---- REMOVED: arc_vfs support completly replaced with KIO:Slave technolegy. ! UPDATED: new package description - Thanks to Jonas B�r UPDATED: Krusader Handbook (read ./doc/ChangeLog for more info) UPDATED: Japanese translation *************** *** 294,298 **** ====================== ADDED: Finally, the new bookmark system is here! courtasy of Jan Halasa ! ADDED: new Hungarian translation, thanks to Kukk Zoltán FIXED: mountMan bug - didn't allow to umount/mount filesystem with --- 295,299 ---- ====================== ADDED: Finally, the new bookmark system is here! courtasy of Jan Halasa ! ADDED: new Hungarian translation, thanks to Kukk Zolt� FIXED: mountMan bug - didn't allow to umount/mount filesystem with |
From: Jonas B. <jb...@us...> - 2004-07-29 14:37:15
|
Update of /cvsroot/krusader/krusader_kde3/krusader/UserAction In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17043/krusader/UserAction Modified Files: kraction.cpp kraction.h Log Message: code cleanup: remove compiler warnings Index: kraction.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/UserAction/kraction.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** kraction.cpp 27 Jul 2004 22:31:00 -0000 1.2 --- kraction.cpp 29 Jul 2004 14:37:05 -0000 1.3 *************** *** 84,93 **** } ! bool KrActionProc::start( QString cmdLine ) { QStringList list = cmdLine; start( list ); } ! bool KrActionProc::start( QStringList cmdLineList ) { _proc->clearArguments(); bool result = true; --- 84,93 ---- } ! void KrActionProc::start( QString cmdLine ) { QStringList list = cmdLine; start( list ); } ! void KrActionProc::start( QStringList cmdLineList ) { _proc->clearArguments(); bool result = true; *************** *** 124,129 **** } //for } ! ! return result; } --- 124,128 ---- } //for } ! } Index: kraction.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/UserAction/kraction.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** kraction.h 23 Jul 2004 00:03:19 -0000 1.1 --- kraction.h 29 Jul 2004 14:37:05 -0000 1.2 *************** *** 51,56 **** KrActionProc( UserActionProperties* prop ); ~KrActionProc(); ! bool start( QString cmdLine ); ! bool start( QStringList cmdLineList ); protected slots: --- 51,56 ---- KrActionProc( UserActionProperties* prop ); ~KrActionProc(); ! void start( QString cmdLine ); ! void start( QStringList cmdLineList ); protected slots: |
From: Dirk E. <des...@us...> - 2004-07-29 14:28:17
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15495 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.266 retrieving revision 1.267 diff -C2 -d -r1.266 -r1.267 *** ChangeLog 29 Jul 2004 14:20:16 -0000 1.266 --- ChangeLog 29 Jul 2004 14:28:08 -0000 1.267 *************** *** 1,3 **** --- 1,4 ---- ====================== + ADDED: Bosnian translation ADDED: synchronizer: excluding files with '|' in the file filter (ex. '*.cpp *.h | *.moc.cpp' ) |
From: Dirk E. <des...@us...> - 2004-07-29 14:26:08
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14866/po Added Files: bs.po Log Message: krusader-1.50-cvs --- NEW FILE: bs.po --- # Translation of krusader.po to Bosnian # # This file is distributed under the same license as the Krusader package # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai # Copyright (C) 2004, Krusader Krew # Asim Husanovic <as...@me...>, 2004. # msgid "" msgstr "" "Project-Id-Version: krusader-1.50-cvs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-07-25 15:22+0200\n" "PO-Revision-Date: 2004-07-27 13:58+0200\n" "Last-Translator: Asim Husanovic <as...@me...>\n" "Language-Team: Bosnian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.0.2\n" [...4046 lines suppressed...] #: Splitter/combiner.moc.cpp:34 Splitter/combiner.moc.cpp:42 msgid "Combiner" msgstr "SastavljaÄ" #: Splitter/splitter.cpp:71 msgid "Krusader::Splitting..." msgstr "Krusader::Dijeljenje..." #: Splitter/splitter.cpp:72 msgid "Splitting the file %1..." msgstr "Dijeljenje datoteke %1..." #: Splitter/splitter.cpp:76 msgid "Can't split a directory!" msgstr "Ne mogu podijeliti direktorij!" #: Splitter/splitter.cpp:127 msgid "Error at reading file %1!" msgstr "GreÅ¡ka pri Äitanju datoteke %1!" |
From: Dirk E. <des...@us...> - 2004-07-29 14:20:27
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13875 Modified Files: CVSNEWS ChangeLog README Log Message: 80 characters per line and space indentation Index: README =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/README,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** README 21 Jul 2004 11:24:57 -0000 1.23 --- README 29 Jul 2004 14:20:16 -0000 1.24 *************** *** 20,26 **** Please check the changelog for information, as many high-profile bugs were fixed. ! I would especially like to thank the rest of the team (Csaba, Heiner, Jonas, Frank ! and Dirk) that really "made their bones" by supporting the project in a time ! where nor Rafi nor myself were able to. This version is largely their work. --- 20,26 ---- Please check the changelog for information, as many high-profile bugs were fixed. ! I would especially like to thank the rest of the team (Csaba, Heiner, Jonas, ! Frank and Dirk) that really "made their bones" by supporting the project in a ! time where nor Rafi nor myself were able to. This version is largely their work. Index: CVSNEWS =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/CVSNEWS,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CVSNEWS 27 Jul 2004 17:50:06 -0000 1.2 --- CVSNEWS 29 Jul 2004 14:20:16 -0000 1.3 *************** *** 1,28 **** ! This file is only itended for the CVS. ! It should contain a brief description of new features; in some way an extension to the changelog. Sync-browsing: ! With a little toggle-button in the panel-level toolbar the syncbrowse-mode is de-/activated. ! when active, each directory-change in the specific panel is performed in the other too. User-actions: ! With the useraction-system the user can make its own actions on files in the panel or to access ! krusader-internal functions with parameter directly using placeholder. ! The actions integrate seamless into KDE's action-system, so the std. edit-toolbar/shortcut-dialogs can ! will show/manipulate the useractions too. ! The useractions are stored in ~/.kde/share/apps/krusader/useraction.xml (the file-structure is ducomentated ! in doxygen-headers of UserActionXML) ! Useractions can be edit/add/im-/export using a new Konfigurator-module (although I plan to move all ! action-related to a new ActionMan. for more info see http://www.jonas-baehr.de/forum/Krusader-ideas.txt) ! Currently theese placeholder are implemented (for details see UserAction/expander.cpp or doxygen): ! Path replaced by the panels path ! Count replaced by the number of <first parameter> ! Filter replaced by the panels filter-mask ! Current replaced bythe current item ! List replaced by a list of all <first paremeter> ! Select manipulates the selection in a panel ! Bookmark changes the panels's path to <first parameter> ! Ask asks the user for a some text and is replaced by the answer ! Clipboard manipulates the clipboard ! A GUI-based helper for placholder-adding is provided. \ No newline at end of file --- 1,34 ---- ! This file is only intended for the CVS. ! It should contain a brief description of new features; ! in some way an extension to the changelog. Sync-browsing: ! With a little toggle-button in the panel-level toolbar the syncbrowse-mode is ! de-/activated. ! when active, each directory-change in the specific panel is performed in the ! other too. User-actions: ! With the useraction-system the user can make its own actions on files in the ! panel or to access krusader-internal functions with parameter directly using ! placeholder. ! The actions integrate seamless into KDE's action-system, so the std. ! edit-toolbar/shortcut-dialogs can will show/manipulate the useractions too. ! The useractions are stored in ~/.kde/share/apps/krusader/useraction.xml (the ! file-structure is documentated in doxygen-headers of UserActionXML) ! Useractions can be edit/add/im-/export using a new Konfigurator-module ! (although I plan to move all action-related to a new ActionMan. for more ! info see http://www.jonas-baehr.de/forum/Krusader-ideas.txt) ! Currently these placeholder are implemented (for details see ! UserAction/expander.cpp or doxygen): ! Path replaced by the panels path ! Count replaced by the number of <first parameter> ! Filter replaced by the panels filter-mask ! Current replaced by the current item ! List replaced by a list of all <first paremeter> ! Select manipulates the selection in a panel ! Bookmark changes the panels's path to <first parameter> ! Ask asks the user for a some text and is replaced by the answer ! Clipboard manipulates the clipboard ! A GUI-based helper for placeholder-adding is provided. Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.265 retrieving revision 1.266 diff -C2 -d -r1.265 -r1.266 *** ChangeLog 28 Jul 2004 17:13:33 -0000 1.265 --- ChangeLog 29 Jul 2004 14:20:16 -0000 1.266 *************** *** 1,24 **** ====================== ! ADDED: synchronizer: excluding files with '|' in the file filter (ex. '*.cpp *.h | *.moc.cpp' ) ADDED: tooltips for squeezed tabs ! ADDED: sync-browse mode (if on, a directory-change in the active is also performed in the inactive panel) ADDED: beta-state incremental refresh. test it with fam enabled! ! ADDED: synchronizer: ability to give more files in the file filter (ex. '*.cpp *.h') ADDED: Two single click rename (Total Commander rename) ! ADDED: The 3rd hand of krusader. click the litle arrow below the panel's scrollbar to see.. ADDED: showing suid, sgid and sticky bits in the permissions column - REACTIVATED: usermenu (now using the new useraction-system) ADDED: New useraction-system (partly based on Shies usermenu-prototype) FIXED: [ 988835 ] window size of synchronize dirs is not stored FIXED: [ 946567 ] krusader minimizes to tray on desktop change FIXED: mountman changes... read the email ;-) 1.40 ====================== ! ADDED: when searching in files (grep), push the string we're searching for into ! the clipboard when pressing F3 or F4. this saves an extra copy when searching ! inside the file ADDED: Catalan translation ! DISABLED usermenu for 1.40 FIXED: [ 962340 ] Alt-T broken to call Tools menu FIXED: [ 980252 ] Compare by Content: right/left position swapped --- 1,33 ---- ====================== ! ADDED: synchronizer: excluding files with '|' in the file filter ! (ex. '*.cpp *.h | *.moc.cpp' ) ADDED: tooltips for squeezed tabs ! ADDED: sync-browse mode (if on, a directory-change in the active is also ! performed in the inactive panel) ADDED: beta-state incremental refresh. test it with fam enabled! ! ADDED: synchronizer: ability to give more files in the file filter ! (ex. '*.cpp *.h') ADDED: Two single click rename (Total Commander rename) ! ADDED: The 3rd hand of krusader. click the litle arrow below the panel's ! scrollbar to see.. ADDED: showing suid, sgid and sticky bits in the permissions column ADDED: New useraction-system (partly based on Shies usermenu-prototype) + + REACTIVATED: usermenu (now using the new useraction-system) + FIXED: [ 988835 ] window size of synchronize dirs is not stored FIXED: [ 946567 ] krusader minimizes to tray on desktop change FIXED: mountman changes... read the email ;-) + 1.40 ====================== ! ADDED: when searching in files (grep), push the string we're searching for ! into the clipboard when pressing F3 or F4. this saves an extra copy ! when searching inside the file ADDED: Catalan translation ! ! DISABLED: usermenu for 1.40 ! FIXED: [ 962340 ] Alt-T broken to call Tools menu FIXED: [ 980252 ] Compare by Content: right/left position swapped *************** *** 27,40 **** FIXED: username and group information are wrong for ftp_vfs FIXED: UMR (uninitialized memory read) in vfs::fromPathOrURL ! UPDATED: Polish translation 1.40-beta2 ====================== ADDED: Chinese Simplified translation ! FIXED: the new ftp dialog URLs are saved into a stochastic configuration group FIXED: [ 960003 ] Swapped letters in quick-search ! FIXED: KIO::Slave url redirection handling (e.g. now devices:/ and settings:/ works !) FIXED: [ 962598 ] viewer didn't display XML files ! FIXED: [ 960595 ] problem with paths containing more '@' characters (FTP proxy hack) FIXED: [ 957145 ] krusader closes editor without asking FIXED: ports cannot be added for fish, sftp in the new connection GUI --- 36,55 ---- FIXED: username and group information are wrong for ftp_vfs FIXED: UMR (uninitialized memory read) in vfs::fromPathOrURL ! ! UPDATED: Polish translation ! 1.40-beta2 ====================== ADDED: Chinese Simplified translation ! ! FIXED: the new ftp dialog URLs are saved into a stochastic configuration ! group FIXED: [ 960003 ] Swapped letters in quick-search ! FIXED: KIO::Slave url redirection handling ! (e.g. now devices:/ and settings:/ works !) FIXED: [ 962598 ] viewer didn't display XML files ! FIXED: [ 960595 ] problem with paths containing more '@' characters ! (FTP proxy hack) FIXED: [ 957145 ] krusader closes editor without asking FIXED: ports cannot be added for fish, sftp in the new connection GUI *************** *** 42,53 **** FIXED: [ 950762 ] missing pemission check on entering a folder FIXED: setting "xterm -e vim" as editor didn't work... ! FIXED: [ 953874 ] allowing editors which are not url-aware to be used as default editor ! FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 FIXED: the UI settings are not saved at exit FIXED: [ 951274 ] shift+home and shift+end does not work ! FIXED: [ 948726 ] problem with ctrl+left from the left panel and ctrl+right from the right panel ! FIXED: extension is separated from the dirname after renaming directories containing '.' FIXED: locate does not call kdesu any more ! FIXED: [ 950052 ] synchronizer: the left and right side depends of the active panel FIXED: [ 770676 ] krarc does not handle password zips FIXED: [ 928746 ] symlinks pointing to directories using fish protocol fail --- 57,73 ---- FIXED: [ 950762 ] missing pemission check on entering a folder FIXED: setting "xterm -e vim" as editor didn't work... ! FIXED: [ 953874 ] allowing editors which are not url-aware to be used as ! default editor ! FIXED: [ 948315 ] security hole, krusader changes its temp directory's ! rights to 0777 FIXED: the UI settings are not saved at exit FIXED: [ 951274 ] shift+home and shift+end does not work ! FIXED: [ 948726 ] problem with ctrl+left from the left panel and ctrl+right ! from the right panel ! FIXED: extension is separated from the dirname after renaming directories ! containing '.' FIXED: locate does not call kdesu any more ! FIXED: [ 950052 ] synchronizer: the left and right side depends of the ! active panel FIXED: [ 770676 ] krarc does not handle password zips FIXED: [ 928746 ] symlinks pointing to directories using fish protocol fail *************** *** 61,77 **** FIXED: drag line remains visible after dropping an URL FIXED: panel swapping corrupts ctrl+arrow and alt+arrow ! FIXED: error at dropping URLs containing non-english characters from konqueror FIXED: KDE 3.2, right justified tabs bug FIXED: dragging over a new tab changes active tab FIXED: crash at pressing space on the '..' directory ! UPDATED: Bulgarian translation ! UPDATED: Czech translation ! UPDATED: Danish translation ! UPDATED: Dutch translation ! UPDATED: French translation ! UPDATED: German translation ! UPDATED: Hungarian translation ! UPDATED: Italian translation ! UPDATED: Slovak translation 1.40-beta1 --- 81,100 ---- FIXED: drag line remains visible after dropping an URL FIXED: panel swapping corrupts ctrl+arrow and alt+arrow ! FIXED: error at dropping URLs containing non-english characters from ! konqueror FIXED: KDE 3.2, right justified tabs bug FIXED: dragging over a new tab changes active tab FIXED: crash at pressing space on the '..' directory ! ! UPDATED: Bulgarian translation ! UPDATED: Czech translation ! UPDATED: Danish translation ! UPDATED: Dutch translation ! UPDATED: French translation ! UPDATED: German translation ! UPDATED: Hungarian translation ! UPDATED: Italian translation ! UPDATED: Slovak translation ! 1.40-beta1 *************** *** 80,101 **** ADDED: (a bug fix really) ability to "not test archives before unpacking" ADDED: new icons (thanks to adios for providing them) ! ADDED: quickmode for mountman. press and HOLD the mountman icon for new functionality ADDED: Bulgarian translation (thanks to Milen Ivanov) ! ADDED: krusader restart is not necessary from now after changing the configuration ADDED: ability to give arguments for the terminal ADDED: enable/disable icons in the filenames ADDED: ability to configure the fields of the panel (Ext, Size, Perm, ...) ADDED: single click selects / executes ! ADDED: panel level toolbar ('..', '/', '~', '=' buttons), thanks to David Harel ! ADDED: Locate (integrating the findutils-locate package of GNU into Krusader). TEST IT ! ADDED: Heiner's patch for 'logical selection mode' is applied and used as default. TEST IT ADDED: application dependency setting in konfigurator ADDED: Csaba's new konfigurator is here, boys and girls! ADDED: heiner's quicksearch patch ! ADDED: calculate occupied space prints the directory's size (wincmd-style) - thanks heiner! ADDED: current directory in history menu is checked ADDED: a working user menu (try alt+~), but a bit rough on the edges ! ADDED: KrSearch edit/view file in the result list window (F3, F4, right click) ! ADDED: a folder-history button, a-la-total commander. thanks to Hans Loffler! ADDED: selectall at rename ADDED: new shortcuts to search dialog (heiner) --- 103,132 ---- ADDED: (a bug fix really) ability to "not test archives before unpacking" ADDED: new icons (thanks to adios for providing them) ! ADDED: quickmode for mountman. press and HOLD the mountman icon for new ! functionality ADDED: Bulgarian translation (thanks to Milen Ivanov) ! ADDED: krusader restart is not necessary from now after changing the ! configuration ADDED: ability to give arguments for the terminal ADDED: enable/disable icons in the filenames ADDED: ability to configure the fields of the panel (Ext, Size, Perm, ...) ADDED: single click selects / executes ! ADDED: panel level toolbar ('..', '/', '~', '=' buttons), thanks to David ! Harel ! ADDED: Locate (integrating the findutils-locate package of GNU into ! Krusader). TEST IT ! ADDED: Heiner's patch for 'logical selection mode' is applied and used as ! default. TEST IT ADDED: application dependency setting in konfigurator ADDED: Csaba's new konfigurator is here, boys and girls! ADDED: heiner's quicksearch patch ! ADDED: calculate occupied space prints the directory's size (wincmd-style) ! - thanks heiner! ADDED: current directory in history menu is checked ADDED: a working user menu (try alt+~), but a bit rough on the edges ! ADDED: KrSearch edit/view file in the result list window (F3, F4, right ! click) ! ADDED: a folder-history button, a-la-total commander. thanks to Hans ! Loffler! ADDED: selectall at rename ADDED: new shortcuts to search dialog (heiner) *************** *** 103,111 **** ADDED: file splitter ADDED: a missing credit for Frank in the about box ! FIXED: krusader exits at closing the viewer when minimized to tray FIXED: KDE 3.2 terminal exit at Ctrl+C FIXED: bug [ 906386 ] regarding refreshes of dirwatch with fam enabled FIXED: bug [ 906538 ] which now makes a faster unpacking process ! FIXED: bug [ 894771 ] regarding over-expanding window due to long command line FIXED: edit new file on KDE 3.2 FIXED: permission handling for FTP URL-s --- 134,144 ---- ADDED: file splitter ADDED: a missing credit for Frank in the about box ! ! FIXED: krusader exits at closing the viewer when minimized to tray FIXED: KDE 3.2 terminal exit at Ctrl+C FIXED: bug [ 906386 ] regarding refreshes of dirwatch with fam enabled FIXED: bug [ 906538 ] which now makes a faster unpacking process ! FIXED: bug [ 894771 ] regarding over-expanding window due to long command ! line FIXED: edit new file on KDE 3.2 FIXED: permission handling for FTP URL-s *************** *** 114,119 **** FIXED: reimplementing the 'allow move into archive' setting FIXED: no restart at changing the icon tray's state in konfigurator ! FIXED: krusader freezes if the `df` process does not terminate (at network errors, IO wait) ! FIXED: krusaderui.rc bug, new menuitems does not appear after a krusader update FIXED: sort by EXT did not obey the 'case sensative sort' flag FIXED: 2 items on the view menu had the same shortcuts --- 147,154 ---- FIXED: reimplementing the 'allow move into archive' setting FIXED: no restart at changing the icon tray's state in konfigurator ! FIXED: krusader freezes if the `df` process does not terminate (at network ! errors, IO wait) ! FIXED: krusaderui.rc bug, new menuitems does not appear after a krusader ! update FIXED: sort by EXT did not obey the 'case sensative sort' flag FIXED: 2 items on the view menu had the same shortcuts *************** *** 129,133 **** FIXED: no parent directory at tar://... and zip://... URL-s FIXED: font size problems in KCmdLine and KrMaskChoice ! FIXED: internal editor quits without notification even if the edited file was not saved FIXED: no i18n for Name, Ext, Size, Modified FIXED: obsolete QT header files --- 164,169 ---- FIXED: no parent directory at tar://... and zip://... URL-s FIXED: font size problems in KCmdLine and KrMaskChoice ! FIXED: internal editor quits without notification even if the edited file ! was not saved FIXED: no i18n for Name, Ext, Size, Modified FIXED: obsolete QT header files *************** *** 138,149 **** FIXED: ftp port limit changed from 999 to 65535 ! UPDATED: new package description - Thanks to Jonas B�r ! UPDATED: Krusader Handbook (read ./doc/ChangeLog for more info) ! UPDATED: Japanese translation ! UPDATED: Dutch translation ! UPDATED: Czech translation (thanks to Martin Sixta) ! UPDATED: Spanish translation ! UPDATED: Krename url http://www.krename.net ! REMOVED: arc_vfs support completly replaced with KIO:Slave technolegy. 1.30 --- 174,187 ---- FIXED: ftp port limit changed from 999 to 65535 ! REMOVED: arc_vfs support completly replaced with KIO:Slave technolegy. ! ! UPDATED: new package description - Thanks to Jonas Bähr ! UPDATED: Krusader Handbook (read ./doc/ChangeLog for more info) ! UPDATED: Japanese translation ! UPDATED: Dutch translation ! UPDATED: Czech translation (thanks to Martin Sixta) ! UPDATED: Spanish translation ! UPDATED: Krename url http://www.krename.net ! 1.30 *************** *** 151,178 **** ADDED: middle mouse button: click on a folder, and create a new tab. ADDED: middle mouse button: click on a tab, and close it ! FIXED: krarc QByteArray buffer freeing bug FIXED: mountman watches 'mount' instead of the directories ! FIXED: keyboard-shortcuts issues for new-tab(alt+ctrl+n), close-tab(alt+ctrl+c) ! and duplicate-tab(alt+ctrl+shift+n) FIXED: mountman FreeBSD bug (/etc/mtab does not exist in FreeBSD) FIXED: All files / Custom files. Executable was removed. ! FIXED: when selecting something from the combobox in "mark files" dialog, combo doesn't close immediatly FIXED: mark files dialog added the same selection more than once FIXED: disabled panel-types in konfigurator FIXED: font size problems with the Select dialog, and New Net Connection ! FIXED: mountman detects those devices as supermount, which are mounted and missing from fstab ! FIXED: mountman inserts '/dev/' before NFS shares and mounted devices which are missing from fstab ! FIXED: mountman does not watch readonly directories (mount can change its permissions!) FIXED: mountman does not stop dirwatch after close + memory leak FIXED: compare fix at directories with escape characters FIXED: Sorry - Archive test passed FIXED: FTP proxy bug (more than one @ characters in the URL) ! REMOVED: SortByExtention menu item (which did nothing) ! REMOVED: KrSearch-Help + Pack-Move into archive (did nothing) ! UPDATED: Dutch translation ! UPDATED: Danish translation ! UPDATED: Hungarian translation ! UPDATED: Italian translation ! UPDATED: Slovak translation 1.29-beta --- 189,224 ---- ADDED: middle mouse button: click on a folder, and create a new tab. ADDED: middle mouse button: click on a tab, and close it ! ! FIXED: krarc QByteArray buffer freeing bug FIXED: mountman watches 'mount' instead of the directories ! FIXED: keyboard-shortcuts issues for new-tab(alt+ctrl+n), ! close-tab(alt+ctrl+c) and duplicate-tab(alt+ctrl+shift+n) FIXED: mountman FreeBSD bug (/etc/mtab does not exist in FreeBSD) FIXED: All files / Custom files. Executable was removed. ! FIXED: when selecting something from the combobox in "mark files" dialog, ! combo doesn't close immediatly FIXED: mark files dialog added the same selection more than once FIXED: disabled panel-types in konfigurator FIXED: font size problems with the Select dialog, and New Net Connection ! FIXED: mountman detects those devices as supermount, which are mounted and ! missing from fstab ! FIXED: mountman inserts '/dev/' before NFS shares and mounted devices which ! are missing from fstab ! FIXED: mountman does not watch readonly directories (mount can change its ! permissions!) FIXED: mountman does not stop dirwatch after close + memory leak FIXED: compare fix at directories with escape characters FIXED: Sorry - Archive test passed FIXED: FTP proxy bug (more than one @ characters in the URL) ! ! REMOVED: SortByExtention menu item (which did nothing) ! REMOVED: KrSearch-Help + Pack-Move into archive (did nothing) ! ! UPDATED: Dutch translation ! UPDATED: Danish translation ! UPDATED: Hungarian translation ! UPDATED: Italian translation ! UPDATED: Slovak translation ! 1.29-beta *************** *** 186,221 **** ADDED: Ctrl+Enter and Ctrl+Shift+Enter keyboard shortcuts ADDED: default shortcut for refreshing the panel is Ctrl+R ! ADDED: ctrl-left/right arrow checks if we're on a folder, if so it refreshes the other panel with the contents ! of the folder, otherwise to the same path as current one (Wincmd style) ADDED: tabbed-browsing beta ADDED: SHIFT-F3 view dialog. ADDED: The internal viewer follow links on HTML pages. ADDED: panel swapping by Ctrl+U ! ADDED: command line improvments: ctrl+/ opens history list, up&down keys work again, and general usability ADDED: krusader can now be started from commandline with new options: ! try: krusader --left=/mnt/cdrom --right=ftp://dow...@my... ! ADDED: new command line widget. should fix some issues and requests ADDED: Missing WhatsThis information (thanks to Mikolaj!) ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) ADDED: rar support to krArc KIO slave. ! ADDED: open with in the right click menu for multiple files with the same mimetype. ! ADDED: Patch by Heiner <h.eichmann_at_gmx.de> which adds a cancel button to the calculate space action. FIXED: KrSearch does not find texts at the last row FIXED: Strange KrSearch GUI (SearchIn and DontSearchIn adding) FIXED: KrSearch crash at pressing Escape or Closing the window during search FIXED: cmdline would start-up focused on the wrong panel ! FIXED: when pressing ctrl-enter (or ctrl-shift-enter), focus goes to command line FIXED: Terminal Emulator bug at ` and Backspace keys FIXED: internal editor / viewer crash at invalid symlinks ! FIXED: run-in-terminal would cause the terminal to close prematuraly and results would be lost. FIXED: free disk capacity miscalculation for Ext2 and Ext3 file systems. FIXED: crash when editing a file with # in the filename FIXED: inplace renaming bug with extention when pressing ctrl+click FIXED: whenever the folder gets refreshed, the current file would be lost ! FIXED: problematic behavior when trying to SPACE a folder without permissions FIXED: Ctrl-A didn't work properly FIXED: crash when unmounting a busy mountpoint FIXED: date-time sorting bug ! FIXED: changed pop-up delay of the history button on the command line to zero FIXED: right-click menu via keyboard appeared in the wrong place FIXED: crash when using spacebar on the ".." (thanks to heiner) --- 232,275 ---- ADDED: Ctrl+Enter and Ctrl+Shift+Enter keyboard shortcuts ADDED: default shortcut for refreshing the panel is Ctrl+R ! ADDED: ctrl-left/right arrow checks if we're on a folder, if so it refreshes ! the other panel with the contents of the folder, otherwise to the ! same path as current one (Wincmd style) ADDED: tabbed-browsing beta ADDED: SHIFT-F3 view dialog. ADDED: The internal viewer follow links on HTML pages. ADDED: panel swapping by Ctrl+U ! ADDED: command line improvments: ctrl+/ opens history list, up&down keys ! work again, and general usability ADDED: krusader can now be started from commandline with new options: ! try: krusader --left=/mnt/cdrom --right=ftp://dow...@my...! ADDED: new command line widget. should fix some issues and requests ADDED: Missing WhatsThis information (thanks to Mikolaj!) ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) ADDED: rar support to krArc KIO slave. ! ADDED: open with in the right click menu for multiple files with the same ! mimetype. ! ADDED: Patch by Heiner <h.eichmann_at_gmx.de> which adds a cancel button to ! the calculate space action. FIXED: KrSearch does not find texts at the last row FIXED: Strange KrSearch GUI (SearchIn and DontSearchIn adding) FIXED: KrSearch crash at pressing Escape or Closing the window during search FIXED: cmdline would start-up focused on the wrong panel ! FIXED: when pressing ctrl-enter (or ctrl-shift-enter), focus goes to command ! line FIXED: Terminal Emulator bug at ` and Backspace keys FIXED: internal editor / viewer crash at invalid symlinks ! FIXED: run-in-terminal would cause the terminal to close prematuraly and ! results would be lost. FIXED: free disk capacity miscalculation for Ext2 and Ext3 file systems. FIXED: crash when editing a file with # in the filename FIXED: inplace renaming bug with extention when pressing ctrl+click FIXED: whenever the folder gets refreshed, the current file would be lost ! FIXED: problematic behavior when trying to SPACE a folder without ! permissions FIXED: Ctrl-A didn't work properly FIXED: crash when unmounting a busy mountpoint FIXED: date-time sorting bug ! FIXED: changed pop-up delay of the history button on the command line to ! zero FIXED: right-click menu via keyboard appeared in the wrong place FIXED: crash when using spacebar on the ".." (thanks to heiner) *************** *** 226,269 **** FIXED: Force refresh when creating a new directory. FIXED: a crash when trying to repaint when the VFS was deleted. ! REMOVED: Device Manager action ! UPDATED: many usability issues (thanks to Mikolaj) ! UPDATED: German translation ! UPDATED: Hungarian translation ! UPDATED: Dutch translation ! UPDATED: Spanish translation 1.25-beta1 ====================== ADDED: Finally, the new bookmark system is here! courtasy of Jan Halasa ! ADDED: new Hungarian translation, thanks to Kukk Zolt� ! FIXED: mountMan bug - didn't allow to umount/mount filesystem with trailing / FIXED: width of modified column for i18n (thanks to heiner) FIXED: dirUp() bug - selection goes to top. FIXED: the @ in ftp passwords bug. ! UPDATED: Slovak translation ! UPDATED: Dutch translation 1.21-beta1 ====================== ! ADDED: Opening left/right bookmarks (alt+left/right arrow) is now an action, and can be remapped. ADDED: In-place renaming (thanks to Heiner Eichmann) ADDED: New KIO slaves to handle archives. ADDED: multi-file properties. ADDED: Krusader now obeys KDE's date time format ! ADDED: Total-Commander style directory selection. Press SPACE to check it out! ! Thanks goes (again) to Heiner Eichmann! ! ! FIXED: column sizes are saved when doing 'save postion', or if 'save settings' is set in konfigurator. FIXED: double-catching of the ~ (tilda) key FIXED: double-catching of the backspace key FIXED: closing krusader using Alt-F4 or clicking X didn't save settings FIXED: Wrong focus after renaming ! FIXED: Error using KRename with filenames containing spaces (thanks to Tobias Vogele) FIXED: FreeBSD compatability in KrARC (thanks to Heiner Eichmann) FIXED: a crash in the dirUp() function. ! FIXED: when opening bookmarks using keyboard, active panel didn't change properly ! FIXED: in search dialog - you can now simply click text, and press ENTER. no need to click Search FIXED: a lot of usability issues (thanks to Mikolaj Machowski) ! FIXED: double-click in search dialog bug (thanks to heiner eichmann for the patch) FIXED: i18n issues - thanks to Frank Schoolmeesters FIXED: Panel flicker patch (thanks to Gabor Takacs for the patch) --- 280,336 ---- FIXED: Force refresh when creating a new directory. FIXED: a crash when trying to repaint when the VFS was deleted. ! ! REMOVED: Device Manager action ! ! UPDATED: many usability issues (thanks to Mikolaj) ! UPDATED: German translation ! UPDATED: Hungarian translation ! UPDATED: Dutch translation ! UPDATED: Spanish translation ! 1.25-beta1 ====================== ADDED: Finally, the new bookmark system is here! courtasy of Jan Halasa ! ADDED: new Hungarian translation, thanks to Kukk Zoltán ! ! FIXED: mountMan bug - didn't allow to umount/mount filesystem with ! trailing / FIXED: width of modified column for i18n (thanks to heiner) FIXED: dirUp() bug - selection goes to top. FIXED: the @ in ftp passwords bug. ! ! UPDATED: Slovak translation ! UPDATED: Dutch translation ! 1.21-beta1 ====================== ! ADDED: Opening left/right bookmarks (alt+left/right arrow) is now an action, ! and can be remapped. ADDED: In-place renaming (thanks to Heiner Eichmann) ADDED: New KIO slaves to handle archives. ADDED: multi-file properties. ADDED: Krusader now obeys KDE's date time format ! ADDED: Total-Commander style directory selection. Press SPACE to check it ! out! Thanks goes (again) to Heiner Eichmann! ! ! FIXED: column sizes are saved when doing 'save postion', or if ! 'save settings' is set in konfigurator. FIXED: double-catching of the ~ (tilda) key FIXED: double-catching of the backspace key FIXED: closing krusader using Alt-F4 or clicking X didn't save settings FIXED: Wrong focus after renaming ! FIXED: Error using KRename with filenames containing spaces (thanks to ! Tobias Vogele) FIXED: FreeBSD compatability in KrARC (thanks to Heiner Eichmann) FIXED: a crash in the dirUp() function. ! FIXED: when opening bookmarks using keyboard, active panel didn't change ! properly ! FIXED: in search dialog - you can now simply click text, and press ENTER. ! no need to click Search FIXED: a lot of usability issues (thanks to Mikolaj Machowski) ! FIXED: double-click in search dialog bug (thanks to heiner eichmann for the ! patch) FIXED: i18n issues - thanks to Frank Schoolmeesters FIXED: Panel flicker patch (thanks to Gabor Takacs for the patch) *************** *** 274,279 **** FIXED: proper properties and owner/group for non-local files ! UPDATED: Dutch translation ! UPDATED: German translation BUG: krArc slow when unpacking large files --- 341,346 ---- FIXED: proper properties and owner/group for non-local files ! UPDATED: Dutch translation ! UPDATED: German translation BUG: krArc slow when unpacking large files *************** *** 282,297 **** 1.20 - KDE 3 ====================== ! ADDED: Clicking on the status or totals bars (above and below file list) changes focus ! ADDED: Each panel remembers the way it was sorted (might be different for each) ADDED: Each panel remembers the column width (might be different for each) ADDED: Dutch translation, thanks to Frank Schoolmeesters ! FIXED: Crash when saying NO to "really exit krusader?" UPDATED: German translation UPDATED: Polish translation 1.20 ====================== ADDED: Japanese translation, thanks to UTUMI Hirosi ! ADDED: error window when attempting to drag-n-drop to a target without enough permissions FIXED: crash when viewing/editing a file without permissions to read --- 349,370 ---- 1.20 - KDE 3 ====================== ! ADDED: Clicking on the status or totals bars (above and below file list) ! changes focus ! ADDED: Each panel remembers the way it was sorted (might be different for ! each) ADDED: Each panel remembers the column width (might be different for each) ADDED: Dutch translation, thanks to Frank Schoolmeesters ! ! FIXED: Crash when saying NO to "really exit krusader?" ! UPDATED: German translation UPDATED: Polish translation + 1.20 ====================== ADDED: Japanese translation, thanks to UTUMI Hirosi ! ADDED: error window when attempting to drag-n-drop to a target without ! enough permissions FIXED: crash when viewing/editing a file without permissions to read *************** *** 305,308 **** --- 378,382 ---- FIXED: anonymous checkbox in remote-man not respected + 1.12 beta2 ====================== *************** *** 321,337 **** FIXED: crash when trying to open non-existing directory. FIXED: directory sorting. - FIXED: ! TODO: automark directories won't work in 1.12!!! ! TODO: can we add a krProgress to normal-vfs refreshes ? ! TODO: dragn'drop quirky. ! TODO: add progressbar to totals (?) ! TODO: COMPAREMODE 1.12 beta1 ====================== ! ADDED: some GUI touch-ups: make buttons smaller, and bars leaner. all in all, the ! thing should look better. ADDED: FreeBSD compatability issues - patchs by Heiner, thanks man! ADDED: move to next-gen view (at last) --- 395,410 ---- FIXED: crash when trying to open non-existing directory. FIXED: directory sorting. ! TODO: automark directories won't work in 1.12!!! ! TODO: can we add a krProgress to normal-vfs refreshes ? ! TODO: dragn'drop quirky. ! TODO: add progressbar to totals (?) ! TODO: COMPAREMODE 1.12 beta1 ====================== ! ADDED: some GUI touch-ups: make buttons smaller, and bars leaner. all in ! all, the thing should look better. ADDED: FreeBSD compatability issues - patchs by Heiner, thanks man! ADDED: move to next-gen view (at last) *************** *** 346,350 **** FIXED: right align size column ! REMOVED: Tree & Quickview panels. 1.11 KDE 3 --- 419,424 ---- FIXED: right align size column ! REMOVED: Tree & Quickview panels. ! 1.11 KDE 3 *************** *** 358,361 **** --- 432,436 ---- FIXED: Keyboard shortcuts not saved in Konfigurator. + 1.10 - KDE 3 ====================== *************** *** 367,378 **** ADDED: new command detection function instead of using 'which' ! FIXED: rewritten the panel sorting function, it should be better and faster now. ! FIXED: back to KRDirWatch, since KDirWatch crashed us on systems with FAM enabled. ! FIXED: removed the "panel start path is invalid" error message. if the start ! path is invalid try to find the closest path (the previous solution was '/'); ! FIXED: don't watch read-only/not-readable directories - this should improve performance ! and avoid a loooong wait time on super-mounted cdroms. FIXED: multiple selctions modes are no-more. default mode is Konqueror. ! the multi-mode become unstable after the kde3 porting and we had to disable it. FIXED: memory leak when starting konfigurator. --- 442,457 ---- ADDED: new command detection function instead of using 'which' ! FIXED: rewritten the panel sorting function, it should be better and faster ! now. ! FIXED: back to KRDirWatch, since KDirWatch crashed us on systems with FAM ! enabled. ! FIXED: removed the "panel start path is invalid" error message. if the ! start path is invalid try to find the closest path (the previous ! solution was '/'); ! FIXED: don't watch read-only/not-readable directories - this should improve ! performance and avoid a loooong wait time on super-mounted cdroms. FIXED: multiple selctions modes are no-more. default mode is Konqueror. ! the multi-mode become unstable after the kde3 porting and we had to ! disable it. FIXED: memory leak when starting konfigurator. *************** *** 382,392 **** ADDED: new icon. ADDED: sftp & scp support. ! ADDED: multi-protocol and history to the new connection ! dialog. ! FIXED: normal_vfs now uses the KDE dir watch, ! in other words: better directory refresh. FIXED: new 'admin' folder. 1.0.1 - KDE 3 ====================== --- 461,471 ---- ADDED: new icon. ADDED: sftp & scp support. ! ADDED: multi-protocol and history to the new connection dialog. ! FIXED: normal_vfs now uses the KDE dir watch, in other words: better ! directory refresh. FIXED: new 'admin' folder. + 1.0.1 - KDE 3 ====================== *************** *** 403,407 **** ADDED: Terminal emulator now "follows mouse" - konqueror style. ADDED: French translation. ! ADDED: A new icon for Krusader. new we've got krusader.png and krusader2.png ! FIXED: errors compiling on kde 2.1 - convertSizeFromKB --- 482,487 ---- ADDED: Terminal emulator now "follows mouse" - konqueror style. ADDED: French translation. ! ADDED: A new icon for Krusader. new we've got krusader.png and ! krusader2.png! FIXED: errors compiling on kde 2.1 - convertSizeFromKB |
From: Karai C. <ck...@us...> - 2004-07-28 17:13:42
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Synchronizer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17498/krusader_kde3/krusader/Synchronizer Modified Files: synchronizer.cpp synchronizer.h Log Message: ADDED: synchronizer: excluding with '|' in the filter (ex.'*.cpp *.h|*.moc.cpp') Index: synchronizer.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Synchronizer/synchronizer.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** synchronizer.h 27 Dec 2003 16:50:17 -0000 1.8 --- synchronizer.h 28 Jul 2004 17:13:34 -0000 1.9 *************** *** 197,201 **** QString leftBaseDir; // the left-side base directory QString rightBaseDir; // the right-side base directory ! QString fileFilter; // the file selection filter bool stopped; // 'Stop' button was pressed --- 197,202 ---- QString leftBaseDir; // the left-side base directory QString rightBaseDir; // the right-side base directory ! QStringList inclusionFilter;// the file selection filter for inclusion ! QStringList exclusionFilter;// the file selection filter for inclusion bool stopped; // 'Stop' button was pressed Index: synchronizer.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Synchronizer/synchronizer.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** synchronizer.cpp 25 Jul 2004 19:59:58 -0000 1.13 --- synchronizer.cpp 28 Jul 2004 17:13:34 -0000 1.14 *************** *** 66,72 **** cmpByContent = cmpByCnt; autoScroll = autoSc; - fileFilter = filter; stopped = false; if( !leftURL.endsWith("/" )) leftURL+="/"; if( !rightURL.endsWith("/" )) rightURL+="/"; --- 66,86 ---- cmpByContent = cmpByCnt; autoScroll = autoSc; stopped = false; + int exclusionIndex = filter.find('|'); + if( exclusionIndex > -1 ) + { + QString inclusionExp = filter.left( exclusionIndex ); + QString exclusionExp = filter.mid( exclusionIndex+1 ); + + inclusionFilter = QStringList::split(" ",inclusionExp); + exclusionFilter = QStringList::split(" ",exclusionExp); + + if( inclusionFilter.count() == 0 ) + inclusionFilter.push_back( QString("*") ); + } + else + inclusionFilter = QStringList::split(" ",filter); + if( !leftURL.endsWith("/" )) leftURL+="/"; if( !rightURL.endsWith("/" )) rightURL+="/"; *************** *** 376,385 **** bool Synchronizer::checkName( QString name ) ! { ! QStringList fileNames = QStringList::split(" ",fileFilter); ! ! for ( QStringList::Iterator it = fileNames.begin(); it != fileNames.end(); ++it ) if( QRegExp(*it,true,true).exactMatch( name ) ) return true; return false; } --- 390,403 ---- bool Synchronizer::checkName( QString name ) ! { ! for ( QStringList::Iterator it = inclusionFilter.begin(); it != inclusionFilter.end(); ++it ) if( QRegExp(*it,true,true).exactMatch( name ) ) + { + for ( QStringList::Iterator it2 = exclusionFilter.begin(); it2 != exclusionFilter.end(); ++it2 ) + if( QRegExp(*it2,true,true).exactMatch( name ) ) + return false; + return true; + } return false; } |
From: Karai C. <ck...@us...> - 2004-07-28 17:13:42
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17498/krusader_kde3 Modified Files: ChangeLog Log Message: ADDED: synchronizer: excluding with '|' in the filter (ex.'*.cpp *.h|*.moc.cpp') Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.264 retrieving revision 1.265 diff -C2 -d -r1.264 -r1.265 *** ChangeLog 27 Jul 2004 19:22:42 -0000 1.264 --- ChangeLog 28 Jul 2004 17:13:33 -0000 1.265 *************** *** 1,3 **** --- 1,4 ---- ====================== + ADDED: synchronizer: excluding files with '|' in the file filter (ex. '*.cpp *.h | *.moc.cpp' ) ADDED: tooltips for squeezed tabs ADDED: sync-browse mode (if on, a directory-change in the active is also performed in the inactive panel) |
From: Rafi Y. <ya...@us...> - 2004-07-28 13:30:19
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12367/krusader/Konfigurator Modified Files: kgstartup.cpp Log Message: Fixed a "restore last position & size" mixup with "Show FN keys" Index: kgstartup.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/kgstartup.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** kgstartup.cpp 14 May 2004 06:26:06 -0000 1.8 --- kgstartup.cpp 28 Jul 2004 13:30:11 -0000 1.9 *************** *** 97,101 **** {"Startup","Show Cmd Line", _ShowCmdline, i18n( "Command-line visible" ), false, ""}, {"Startup","Show Terminal Emulator",_ShowTerminalEmulator, i18n( "Terminal Emulator visible" ), false, ""}, ! {"Startup","Show FN Keys", _ShowFNkeys, i18n( "Restore last position and size" ), false, ""}}; uiCbGroup = createCheckBoxGroup( 1, 0, uiCheckBoxes, 7, uiGrp ); --- 97,101 ---- {"Startup","Show Cmd Line", _ShowCmdline, i18n( "Command-line visible" ), false, ""}, {"Startup","Show Terminal Emulator",_ShowTerminalEmulator, i18n( "Terminal Emulator visible" ), false, ""}, ! {"Startup","Remember Position", _RememberPos, i18n( "Restore last position and size" ), false, ""}}; uiCbGroup = createCheckBoxGroup( 1, 0, uiCheckBoxes, 7, uiGrp ); |
From: Shie E. <er...@us...> - 2004-07-27 22:42:09
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8471/krusader/Dialogs Modified Files: newftpgui.cpp Log Message: set the host and protocol fields in new ftp connectio Index: newftpgui.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/newftpgui.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** newftpgui.cpp 16 Jun 2004 08:31:37 -0000 1.8 --- newftpgui.cpp 27 Jul 2004 22:42:01 -0000 1.9 *************** *** 713,718 **** QGrid* grid_host = new QGrid( 3, this, "grid_host" ); ! TextLabel1 = new QLabel( i18n( "Host:" ), grid_host, "TextLabel1" ); ! QLabel* dummylabel = new QLabel( grid_host ); //FIXME: after 1.40 i18n-freeze: put "host" here and replace the host above with "protocol" TextLabel1_3 = new QLabel( i18n( "Port:" ), grid_host, "TextLabel1_3" ); --- 713,718 ---- QGrid* grid_host = new QGrid( 3, this, "grid_host" ); ! TextLabel1 = new QLabel( i18n( "Protocol:" ), grid_host, "TextLabel1" ); ! TextLabel1_22 = new QLabel( i18n( "Host:"), grid_host, "TextLabel_2" ); TextLabel1_3 = new QLabel( i18n( "Port:" ), grid_host, "TextLabel1_3" ); |
From: Shie E. <er...@us...> - 2004-07-27 22:41:20
|
Update of /cvsroot/krusader/krusader_kde3/krusader/GUI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8355/krusader/GUI Modified Files: addplaceholderpopup.cpp Log Message: code cleanup: remove compiler warnings Index: addplaceholderpopup.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/GUI/addplaceholderpopup.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** addplaceholderpopup.cpp 23 Jul 2004 00:03:18 -0000 1.1 --- addplaceholderpopup.cpp 27 Jul 2004 22:41:12 -0000 1.2 *************** *** 119,122 **** --- 119,123 ---- return "%" + panel + currentPlaceholder->expression + parameter + "% "; // with extra space } + return QString::null; } |
From: Shie E. <er...@us...> - 2004-07-27 22:40:29
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8221/krusader/Konfigurator Modified Files: konfiguratoritems.cpp Log Message: code cleanup: remove compiler warnings Index: konfiguratoritems.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/konfiguratoritems.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** konfiguratoritems.cpp 1 Apr 2004 22:07:40 -0000 1.11 --- konfiguratoritems.cpp 27 Jul 2004 22:40:20 -0000 1.12 *************** *** 727,731 **** } ! void KonfiguratorColorChooser::changeAdditionalColor( unsigned num, QColor color ) { if( num < additionalColors.size() ) --- 727,731 ---- } ! void KonfiguratorColorChooser::changeAdditionalColor( unsigned int num, QColor color ) { if( num < additionalColors.size() ) *************** *** 735,739 **** changeItem( createPixmap( color ), text( 2+num ), 2+num ); ! if( currentItem() == 2+num ) emit colorChanged(); } --- 735,739 ---- changeItem( createPixmap( color ), text( 2+num ), 2+num ); ! if( (unsigned int)currentItem() == 2+num ) emit colorChanged(); } |
From: Shie E. <er...@us...> - 2004-07-27 22:39:58
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8096/krusader/Konfigurator Modified Files: konfiguratoritems.h Log Message: code cleanup: remove compiler warnings Index: konfiguratoritems.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/konfiguratoritems.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** konfiguratoritems.h 26 Mar 2004 08:11:52 -0000 1.7 --- konfiguratoritems.h 27 Jul 2004 22:39:47 -0000 1.8 *************** *** 339,343 **** void setDefaultText( QString text ); QColor getColor(); ! void changeAdditionalColor( unsigned num, QColor color ); public slots: --- 339,343 ---- void setDefaultText( QString text ); QColor getColor(); ! void changeAdditionalColor( unsigned int num, QColor color ); public slots: |
From: Shie E. <er...@us...> - 2004-07-27 22:39:17
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8006/krusader/Konfigurator Modified Files: konfigurator.cpp Log Message: code cleanup: remove compiler warnings Index: konfigurator.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/konfigurator.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** konfigurator.cpp 23 Jul 2004 00:03:18 -0000 1.12 --- konfigurator.cpp 27 Jul 2004 22:39:08 -0000 1.13 *************** *** 64,68 **** widget=new KJanusWidget(this,0,KJanusWidget::IconList); ! setButtonCancelText( i18n( "Close" ) ); connect( widget, SIGNAL( aboutToShowPage(QWidget *) ), this, SLOT( slotPageSwitch() ) ); --- 64,68 ---- widget=new KJanusWidget(this,0,KJanusWidget::IconList); ! setButtonCancel(i18n("Close")); connect( widget, SIGNAL( aboutToShowPage(QWidget *) ), this, SLOT( slotPageSwitch() ) ); |
From: Shie E. <er...@us...> - 2004-07-27 22:38:46
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7931/krusader/Dialogs Modified Files: newftpgui.h Log Message: code cleanup: remove compiler warnings Index: newftpgui.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/newftpgui.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** newftpgui.h 15 Apr 2002 18:48:23 -0000 1.1.1.1 --- newftpgui.h 27 Jul 2004 22:38:37 -0000 1.2 *************** *** 31,34 **** --- 31,35 ---- KComboBox* prefix; QLabel* TextLabel1_2_2; + QLabel* TextLabel1_22; QLabel* TextLabel1_2; QLabel* TextLabel1_3; |
From: Shie E. <er...@us...> - 2004-07-27 22:38:19
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7812/krusader/Panel Modified Files: listpanel.cpp Log Message: code cleanup: remove compiler warnings Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** listpanel.cpp 27 Jul 2004 17:00:56 -0000 1.75 --- listpanel.cpp 27 Jul 2004 22:38:09 -0000 1.76 *************** *** 94,99 **** ///////////////////////////////////////////////////// ListPanel::ListPanel( QWidget *parent, bool &left, const char *name ) : ! QWidget( parent, name ), colorMask( 255 ), compareMode( false ), currDragItem( 0 ), statsAgent( 0 ), _left( left ), quickSearch( 0 ), ! cdRootButton( 0 ), cdUpButton( 0 ), popup(0), popupBtn(0) { func = new ListPanelFunc( this ); --- 94,99 ---- ///////////////////////////////////////////////////// ListPanel::ListPanel( QWidget *parent, bool &left, const char *name ) : ! QWidget( parent, name ), colorMask( 255 ), compareMode( false ), currDragItem( 0 ), statsAgent( 0 ), ! quickSearch( 0 ), cdRootButton( 0 ), cdUpButton( 0 ), popupBtn(0), popup(0), _left( left ) { func = new ListPanelFunc( this ); *************** *** 501,512 **** void ListPanel::gotStats( const QString &mountPoint, unsigned long kBSize, ! unsigned long kBUsed, unsigned long kBAvail ) { int perc = 0; if (kBSize != 0) { // make sure that if totalsize==0, then perc=0 ! perc = ((float)kBAvail / (float)kBSize)*100.0; } // mount point information - find it in the list first KMountPoint::List lst = KMountPoint::currentMountPoints(); - KMountPoint *m; QString fstype = i18n("unknown"); for (KMountPoint::List::iterator it = lst.begin(); it != lst.end(); ++it) { --- 501,511 ---- void ListPanel::gotStats( const QString &mountPoint, unsigned long kBSize, ! unsigned long, unsigned long kBAvail ) { int perc = 0; if (kBSize != 0) { // make sure that if totalsize==0, then perc=0 ! perc = (int)(((float)kBAvail / (float)kBSize)*100.0); } // mount point information - find it in the list first KMountPoint::List lst = KMountPoint::currentMountPoints(); QString fstype = i18n("unknown"); for (KMountPoint::List::iterator it = lst.begin(); it != lst.end(); ++it) { *************** *** 625,629 **** } ! QUriDrag *d = KURLDrag::newDrag( *urls, this ); d->setPixmap( px, QPoint( -7, 0 ) ); d->dragCopy(); --- 624,628 ---- } ! KURLDrag *d = new KURLDrag(*urls, this); d->setPixmap( px, QPoint( -7, 0 ) ); d->dragCopy(); |
From: Shie E. <er...@us...> - 2004-07-27 22:37:26
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7694/krusader Modified Files: krusader.cpp Log Message: code cleanup: remove compiler warnings Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** krusader.cpp 23 Jul 2004 13:30:35 -0000 1.75 --- krusader.cpp 27 Jul 2004 22:37:02 -0000 1.76 *************** *** 280,284 **** } ! void Krusader::showEvent ( QShowEvent *e ) { sysTray->hide(); show(); // needed to make sure krusader is removed from --- 280,284 ---- } ! void Krusader::showEvent ( QShowEvent * ) { sysTray->hide(); show(); // needed to make sure krusader is removed from |
From: Shie E. <er...@us...> - 2004-07-27 22:36:48
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7653/krusader/Panel Modified Files: krcalcspacedialog.cpp Log Message: code cleanup: remove compiler warnings Index: krcalcspacedialog.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krcalcspacedialog.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** krcalcspacedialog.cpp 27 Jul 2004 21:26:29 -0000 1.5 --- krcalcspacedialog.cpp 27 Jul 2004 22:36:39 -0000 1.6 *************** *** 47,51 **** KrCalcSpaceDialog::CalcThread::CalcThread(KrCalcSpaceDialog * parent, ListPanel * panel, const QStringList & items) : m_totalSize(0), m_currentSize(0), m_totalFiles(0), m_totalDirs(0), m_items(items), m_files(panel->func->files()), ! m_parent(parent), m_view(panel->view) , m_threadInUse(true), m_stop(false) {} void KrCalcSpaceDialog::CalcThread::cleanUp(){ --- 47,51 ---- KrCalcSpaceDialog::CalcThread::CalcThread(KrCalcSpaceDialog * parent, ListPanel * panel, const QStringList & items) : m_totalSize(0), m_currentSize(0), m_totalFiles(0), m_totalDirs(0), m_items(items), m_files(panel->func->files()), ! m_view(panel->view), m_parent(parent), m_threadInUse(true), m_stop(false) {} void KrCalcSpaceDialog::CalcThread::cleanUp(){ |
From: Shie E. <er...@us...> - 2004-07-27 22:35:34
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7391/krusader/Panel Modified Files: krdetailedview.cpp Log Message: code cleanup: remove compiler warnings Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.88 retrieving revision 1.89 diff -C2 -d -r1.88 -r1.89 *** krdetailedview.cpp 25 Jul 2004 23:04:34 -0000 1.88 --- krdetailedview.cpp 27 Jul 2004 22:35:24 -0000 1.89 *************** *** 47,51 **** #include <kprogress.h> #include <kstatusbar.h> ! #include <klineeditdlg.h> #include <kmessagebox.h> #include <klocale.h> --- 47,51 ---- #include <kprogress.h> #include <kstatusbar.h> ! #include <kinputdialog.h> #include <kmessagebox.h> #include <klocale.h> *************** *** 1000,1004 **** // good old dialog box bool ok = false; ! newName = KLineEditDlg::getText( i18n( "Rename " ) + fileName + i18n( " to:" ), fileName, &ok, krApp ); // if the user canceled - quit if ( !ok || newName == fileName ) --- 1000,1005 ---- // good old dialog box bool ok = false; ! newName = KInputDialog::getText(i18n("Rename"), i18n( "Rename " ) + fileName + i18n( " to:" ), ! fileName, &ok, krApp ); // if the user canceled - quit if ( !ok || newName == fileName ) |
From: Shie E. <er...@us...> - 2004-07-27 22:34:53
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7260/krusader/Panel Modified Files: panelpopup.cpp Log Message: code cleanup: remove compiler warnings Index: panelpopup.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelpopup.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** panelpopup.cpp 24 Jul 2004 23:26:13 -0000 1.2 --- panelpopup.cpp 27 Jul 2004 22:34:43 -0000 1.3 *************** *** 95,104 **** // called when the preview job got something for us ! void PanelPopup::view( const KFileItem* kfi, const QPixmap& pix ) { dynamic_cast<QLabel*>( stack->widget( Preview ) ) ->setPixmap( pix ); } // preview job failed here... ! void PanelPopup::failedToView( const KFileItem* kfi ) { dynamic_cast<QLabel*>( stack->widget( Preview ) ) ->setText( i18n( "No preview available" ) ); } --- 95,104 ---- // called when the preview job got something for us ! void PanelPopup::view( const KFileItem*, const QPixmap& pix ) { dynamic_cast<QLabel*>( stack->widget( Preview ) ) ->setPixmap( pix ); } // preview job failed here... ! void PanelPopup::failedToView( const KFileItem* ) { dynamic_cast<QLabel*>( stack->widget( Preview ) ) ->setText( i18n( "No preview available" ) ); } |
From: Shie E. <er...@us...> - 2004-07-27 22:34:17
|
Update of /cvsroot/krusader/krusader_kde3/krusader/UserAction In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7186/krusader/UserAction Modified Files: expander.cpp Log Message: code cleanup: remove compiler warnings Index: expander.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/UserAction/expander.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** expander.cpp 23 Jul 2004 00:03:19 -0000 1.1 --- expander.cpp 27 Jul 2004 22:34:09 -0000 1.2 *************** *** 430,432 **** --- 430,434 ---- idx++; } + // failsafe + return end; } |