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: <ma...@us...> - 2003-09-29 19:34:49
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv18622 Modified Files: Krusader.kdevelop krusader.kdevprj Log Message: add: manpage Index: Krusader.kdevelop =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/Krusader.kdevelop,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Krusader.kdevelop 22 Sep 2003 19:34:39 -0000 1.15 --- Krusader.kdevelop 29 Sep 2003 19:34:44 -0000 1.16 *************** *** 97,101 **** <hidenonprojectfiles>false</hidenonprojectfiles> <hidepatterns></hidepatterns> ! <showvcsfields>false</showvcsfields> </tree> </kdevfileview> --- 97,101 ---- <hidenonprojectfiles>false</hidenonprojectfiles> <hidepatterns></hidepatterns> ! <showvcsfields>true</showvcsfields> </tree> </kdevfileview> Index: krusader.kdevprj =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader.kdevprj,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** krusader.kdevprj 20 Sep 2003 20:18:56 -0000 1.28 --- krusader.kdevprj 29 Sep 2003 19:34:44 -0000 1.29 *************** *** 27,31 **** [General] ! AMChanged=false author=Shie Erlich & Rafi Yanai configure_args=\s--build=i386-linux --host=i386-linux --target=i386-linux --prefix=/usr\s --- 27,31 ---- [General] ! AMChanged=true author=Shie Erlich & Rafi Yanai configure_args=\s--build=i386-linux --host=i386-linux --target=i386-linux --prefix=/usr\s *************** *** 85,88 **** --- 85,89 ---- [doc/Makefile.am] + files=doc/krusader.1 sub_dirs=en,pics type=normal *************** *** 145,148 **** --- 146,155 ---- install=false install_location= + type=DATA + + [doc/krusader.1] + dist=true + install=true + install_location=/usr/share/man/man1/krusader.1 type=DATA |
From: <ck...@us...> - 2003-09-29 19:32:01
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv1119/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: Terminal Emulator bug for ` and BACKSPACE keys Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.100 retrieving revision 1.101 diff -C2 -d -r1.100 -r1.101 *** ChangeLog 28 Sep 2003 18:28:57 -0000 1.100 --- ChangeLog 29 Sep 2003 15:44:35 -0000 1.101 *************** *** 1,3 **** --- 1,4 ---- ====================== + FIXED: Terminal Emulator bug at ` and Backspace keys ADDED: Open-in-a-new-tab available in right-click menu ADDED: Creating new files with SHIFT+F4 |
From: <ck...@us...> - 2003-09-29 19:31:11
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv1119/krusader_kde3/krusader Modified Files: krusader.cpp Log Message: FIXED: Terminal Emulator bug for ` and BACKSPACE keys Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** krusader.cpp 26 Sep 2003 22:36:00 -0000 1.35 --- krusader.cpp 29 Sep 2003 15:44:35 -0000 1.36 *************** *** 309,313 **** // second, the KDE standard action //KStdAction::up( SLOTS, SLOT( dirUp() ), actionCollection(), "std_up" )->setShortcut(Key_Backspace); ! KStdAction::home( SLOTS, SLOT( home() ), actionCollection(), "std_home" )->setShortcut(Key_QuoteLeft); KAction *actRedisplay = KStdAction::redisplay( SLOTS, SLOT( refresh() ), actionCollection(), "std_redisplay" ); actRedisplay->setText( "Reload" ); --- 309,314 ---- // second, the KDE standard action //KStdAction::up( SLOTS, SLOT( dirUp() ), actionCollection(), "std_up" )->setShortcut(Key_Backspace); ! /* Shortcut disabled because of the Terminal Emulator bug. */ ! KStdAction::home( SLOTS, SLOT( home() ), actionCollection(), "std_home" ); /*->setShortcut(Key_QuoteLeft);*/ KAction *actRedisplay = KStdAction::redisplay( SLOTS, SLOT( refresh() ), actionCollection(), "std_redisplay" ); actRedisplay->setText( "Reload" ); *************** *** 346,350 **** actCmdlinePopup = new KAction( i18n("popup cmdline"), 0, CTRL + Key_Slash, SLOTS, SLOT(cmdlinePopup()), actionCollection(), "cmdline popup"); ! actDirUp = new KAction( i18n("Up"), "up", Key_Backspace, SLOTS, SLOT(dirUp()), actionCollection(), "dirUp"); new KAction( i18n("Edit new file"), "filenew", SHIFT + Key_F4, SLOTS, SLOT(editDlg()), actionCollection(), "edit_new_file"); --- 347,352 ---- actCmdlinePopup = new KAction( i18n("popup cmdline"), 0, CTRL + Key_Slash, SLOTS, SLOT(cmdlinePopup()), actionCollection(), "cmdline popup"); ! /* Shortcut disabled because of the Terminal Emulator bug. */ ! actDirUp = new KAction( i18n("Up"), "up", 0 /*Key_Backspace*/, SLOTS, SLOT(dirUp()), actionCollection(), "dirUp"); new KAction( i18n("Edit new file"), "filenew", SHIFT + Key_F4, SLOTS, SLOT(editDlg()), actionCollection(), "edit_new_file"); |
From: <ck...@us...> - 2003-09-29 19:25:49
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv1119/krusader_kde3/krusader/Panel Modified Files: krdetailedview.cpp Log Message: FIXED: Terminal Emulator bug for ` and BACKSPACE keys Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** krdetailedview.cpp 23 Sep 2003 12:16:52 -0000 1.44 --- krdetailedview.cpp 29 Sep 2003 15:44:36 -0000 1.45 *************** *** 498,502 **** switch ( e->key() ) { case Key_Enter : ! case Key_Return : { if ( e->state() & ControlButton ) // let the panel handle it e->ignore(); --- 498,502 ---- switch ( e->key() ) { case Key_Enter : ! case Key_Return : { if ( e->state() & ControlButton ) // let the panel handle it e->ignore(); *************** *** 509,512 **** --- 509,521 ---- break; } + case Key_QuoteLeft : // Terminal Emulator bugfix + if ( e->state() ) { // let the panel handle it + e->ignore(); + break; + } else { // a normal click - do a lynx-like moving thing + SLOTS->home(); // ask krusader to move up a directory + return ; // safety + } + break; case Key_Right : if ( e->state() == ControlButton ) { // let the panel handle it *************** *** 525,528 **** --- 534,538 ---- return ; // safety } + case Key_Backspace : // Terminal Emulator bugfix case Key_Left : if ( e->state() == ControlButton ) { // let the panel handle it |
From: <ck...@us...> - 2003-09-29 19:10:03
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv20759/krusader_kde3 Modified Files: ChangeLog Log Message: ADDED: starting Krusader in root mode Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.101 retrieving revision 1.102 diff -C2 -d -r1.101 -r1.102 *** ChangeLog 29 Sep 2003 15:44:35 -0000 1.101 --- ChangeLog 29 Sep 2003 17:18:16 -0000 1.102 *************** *** 1,3 **** --- 1,4 ---- ====================== + ADDED: Starting Krusader with root privileges by pressing Alt+K FIXED: Terminal Emulator bug at ` and Backspace keys ADDED: Open-in-a-new-tab available in right-click menu |
From: <ck...@us...> - 2003-09-29 19:09:52
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv20759/krusader_kde3/krusader Modified Files: krslots.cpp krslots.h krusader.cpp main.cpp Log Message: ADDED: starting Krusader in root mode Index: krslots.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** krslots.cpp 26 Sep 2003 21:46:09 -0000 1.19 --- krslots.cpp 29 Sep 2003 17:18:16 -0000 1.20 *************** *** 44,47 **** --- 44,48 ---- #include <kedittoolbar.h> #include <kdeversion.h> + #include <kcmdlineargs.h> #include <KViewer/krviewer.h> // Krusader includes *************** *** 374,377 **** --- 375,387 ---- proc.start(KProcess::DontCare); delete urls; + } + + void KRslots::rootKrusader(){ + KShellProcess proc; + proc << "kdesu" << QString("'") + KCmdLineArgs::appName() + + " --left=" +MAIN_VIEW->left->func->files()->vfs_getOrigin() + + " --right="+MAIN_VIEW->right->func->files()->vfs_getOrigin() + "'"; + + proc.start(KProcess::DontCare); } Index: krslots.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** krslots.h 26 Sep 2003 21:46:09 -0000 1.11 --- krslots.h 29 Sep 2003 17:18:16 -0000 1.12 *************** *** 63,66 **** --- 63,67 ---- void rightclickMenu(); void insertFileName(bool full_path); + void rootKrusader(); void toggleHidden(); void toggleSwapPanels(); Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** krusader.cpp 29 Sep 2003 15:44:35 -0000 1.36 --- krusader.cpp 29 Sep 2003 17:18:16 -0000 1.37 *************** *** 349,353 **** /* Shortcut disabled because of the Terminal Emulator bug. */ actDirUp = new KAction( i18n("Up"), "up", 0 /*Key_Backspace*/, SLOTS, SLOT(dirUp()), actionCollection(), "dirUp"); ! new KAction( i18n("Edit new file"), "filenew", SHIFT + Key_F4, SLOTS, SLOT(editDlg()), actionCollection(), "edit_new_file"); actSelectColorMask = new KAction( i18n( "Co&nfigure compare-mode" ), 0, --- 349,354 ---- /* Shortcut disabled because of the Terminal Emulator bug. */ actDirUp = new KAction( i18n("Up"), "up", 0 /*Key_Backspace*/, SLOTS, SLOT(dirUp()), actionCollection(), "dirUp"); ! new KAction( i18n("&Edit new file"), "filenew", SHIFT + Key_F4, SLOTS, SLOT(editDlg()), actionCollection(), "edit_new_file"); ! new KAction( i18n("Start &Root Mode Krusader"), "krusader", ALT + Key_K, SLOTS, SLOT(rootKrusader()), actionCollection(), "root krusader"); actSelectColorMask = new KAction( i18n( "Co&nfigure compare-mode" ), 0, Index: main.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/main.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** main.cpp 24 Sep 2003 14:48:40 -0000 1.19 --- main.cpp 29 Sep 2003 17:18:16 -0000 1.20 *************** *** 34,37 **** --- 34,38 ---- #include <klocale.h> #include <kstandarddirs.h> + #include <unistd.h> // Krusader includes *************** *** 52,56 **** int main(int argc, char *argv[]) { // ABOUT data information ! KAboutData aboutData( "krusader", I18N_NOOP("Krusader"), VERSION, description, KAboutData::License_GPL, "(c) 2000-2003, Shie Erlich and Rafi Yanai", --- 53,58 ---- int main(int argc, char *argv[]) { // ABOUT data information ! KAboutData aboutData( "krusader", ( geteuid() ? I18N_NOOP("Krusader") : ! I18N_NOOP("Krusader - ROOT PRIVILEGES")), VERSION, description, KAboutData::License_GPL, "(c) 2000-2003, Shie Erlich and Rafi Yanai", |
From: <ma...@us...> - 2003-09-29 18:58:43
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv9945 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.103 retrieving revision 1.104 diff -C2 -d -r1.103 -r1.104 *** ChangeLog 29 Sep 2003 18:44:05 -0000 1.103 --- ChangeLog 29 Sep 2003 18:58:29 -0000 1.104 *************** *** 1,3 **** --- 1,4 ---- ====================== + FIXED: cmdline would start-up focused on the wrong panel FIXED: when pressing ctrl-enter (or ctrl-shift-enter), focus goes to command line ADDED: Starting Krusader with root privileges by pressing Alt+K |
From: <ma...@us...> - 2003-09-29 18:58:22
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv9842/krusader Modified Files: krusader.cpp Log Message: fix: cmdline would start up focused on the wrong panel Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** krusader.cpp 29 Sep 2003 17:18:16 -0000 1.37 --- krusader.cpp 29 Sep 2003 18:58:09 -0000 1.38 *************** *** 205,210 **** // refresh the right and left panels - mainView->left->func->refresh(); mainView->right->func->refresh(); } --- 205,210 ---- // refresh the right and left panels mainView->right->func->refresh(); + mainView->left->func->refresh(); } |
From: <ma...@us...> - 2003-09-29 18:44:18
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv6830 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.102 retrieving revision 1.103 diff -C2 -d -r1.102 -r1.103 *** ChangeLog 29 Sep 2003 17:18:16 -0000 1.102 --- ChangeLog 29 Sep 2003 18:44:05 -0000 1.103 *************** *** 1,3 **** --- 1,4 ---- ====================== + FIXED: when pressing ctrl-enter (or ctrl-shift-enter), focus goes to command line ADDED: Starting Krusader with root privileges by pressing Alt+K FIXED: Terminal Emulator bug at ` and Backspace keys |
From: <ma...@us...> - 2003-09-29 18:43:48
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv6719/krusader/Panel Modified Files: listpanel.cpp Log Message: fix: focus goes to command line after ctrl-enter Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** listpanel.cpp 28 Sep 2003 22:44:22 -0000 1.37 --- listpanel.cpp 29 Sep 2003 18:43:35 -0000 1.38 *************** *** 707,714 **** case Key_Enter : case Key_Return : ! if ( e->state() & ControlButton ) SLOTS->insertFileName( ( e->state() & ShiftButton ) != 0 ); ! else ! e->ignore(); break; case Key_Right : --- 707,714 ---- case Key_Enter : case Key_Return : ! if ( e->state() & ControlButton ) { SLOTS->insertFileName( ( e->state() & ShiftButton ) != 0 ); ! krApp->mainView->cmdLine->setFocus(); ! } else e->ignore(); break; case Key_Right : |
From: <ya...@us...> - 2003-09-29 17:44:35
|
Update of /cvsroot/krusader/krusader_kde3/krusader/GUI In directory sc8-pr-cvs1:/tmp/cvs-serv26452/krusader/GUI Modified Files: kcmdline.cpp Log Message: chdir every time the panel focus change Index: kcmdline.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/GUI/kcmdline.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** kcmdline.cpp 22 Sep 2003 23:49:44 -0000 1.14 --- kcmdline.cpp 29 Sep 2003 17:44:18 -0000 1.15 *************** *** 112,117 **** path->setText( p + ">" ); completion.setDir( p ); } - KCMDLine::~KCMDLine() { --- 112,119 ---- path->setText( p + ">" ); completion.setDir( p ); + // make sure our command is executed in the right directory + // This line is important for Krusader overall functions -> do not remove ! + chdir( p.local8Bit() ); } KCMDLine::~KCMDLine() { |
From: <ma...@us...> - 2003-09-28 22:44:36
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv18377/krusader/Panel Modified Files: listpanel.cpp Log Message: add: icon to 'open in a new tab' Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** listpanel.cpp 28 Sep 2003 18:27:15 -0000 1.36 --- listpanel.cpp 28 Sep 2003 22:44:22 -0000 1.37 *************** *** 490,495 **** i18n( ( item->isExecutable() ) && ( !item->isDir() ) ? "Run" : "Open" ) ); // open in a new tab (if folder) ! if (item->isDir()) popup.insertItem(i18n("Open in a new tab"), OPEN_TAB_ID); popup.insertSeparator(); } --- 490,497 ---- i18n( ( item->isExecutable() ) && ( !item->isDir() ) ? "Run" : "Open" ) ); // open in a new tab (if folder) ! if (item->isDir()) { popup.insertItem(i18n("Open in a new tab"), OPEN_TAB_ID); + popup.changeItem( OPEN_TAB_ID, krLoader->loadIcon( "favorites", KIcon::Panel ), i18n("Open in a new tab")); + } popup.insertSeparator(); } |
From: <ma...@us...> - 2003-09-28 18:29:11
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv32621 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.99 retrieving revision 1.100 diff -C2 -d -r1.99 -r1.100 *** ChangeLog 28 Sep 2003 18:27:41 -0000 1.99 --- ChangeLog 28 Sep 2003 18:28:57 -0000 1.100 *************** *** 11,15 **** ADDED: SHIFT-F3 view dialog. ADDED: The internal viewer follow links on HTML pages. - ADDED: Total Commander like file renaming (two subsequent single clicks on an item) ADDED: panel swapping by Ctrl+U ADDED: command line improvments: ctrl+/ opens history list, up&down keys work again, and general usability --- 11,14 ---- |
From: <ma...@us...> - 2003-09-28 18:27:55
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv32435 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.98 retrieving revision 1.99 diff -C2 -d -r1.98 -r1.99 *** ChangeLog 28 Sep 2003 18:25:10 -0000 1.98 --- ChangeLog 28 Sep 2003 18:27:41 -0000 1.99 *************** *** 18,22 **** ADDED: new command line widget. should fix some issues and requests ADDED: Missing WhatsThis information (thanks to Mikolaj!) - ADDED: new selection mode (a-la Total Commander) - beta mode! Selected file is colored by the "link" color ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) ADDED: rar support to krArc KIO slave. --- 18,21 ---- |
From: <ma...@us...> - 2003-09-28 18:27:30
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv32342/krusader/Panel Modified Files: listpanel.cpp Log Message: add: open-in-a-new-tab to right-click menu Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** listpanel.cpp 23 Sep 2003 11:08:50 -0000 1.35 --- listpanel.cpp 28 Sep 2003 18:27:15 -0000 1.36 *************** *** 1,5 **** /*************************************************************************** ! listpanel.cpp ! ------------------- copyright : (C) 2000 by Shie Erlich & Rafi Yanai e-mail : kru...@us... --- 1,5 ---- /*************************************************************************** ! listpanel.cpp ! ------------------- copyright : (C) 2000 by Shie Erlich & Rafi Yanai e-mail : kru...@us... *************** *** 11,22 **** A ! db dD d8888b. db db .d8888. .d8b. d8888b. d88888b d8888b. ! 88 ,8P' 88 `8D 88 88 88' YP d8' `8b 88 `8D 88' 88 `8D ! 88,8P 88oobY' 88 88 `8bo. 88ooo88 88 88 88ooooo 88oobY' ! 88`8b 88`8b 88 88 `Y8b. 88~~~88 88 88 88~~~~~ 88`8b ! 88 `88. 88 `88. 88b d88 db 8D 88 88 88 .8D 88. 88 `88. ! YP YD 88 YD ~Y8888P' `8888Y' YP YP Y8888D' Y88888P 88 YD ! S o u r c e F i l e *************************************************************************** --- 11,22 ---- A ! db dD d8888b. db db .d8888. .d8b. d8888b. d88888b d8888b. ! 88 ,8P' 88 `8D 88 88 88' YP d8' `8b 88 `8D 88' 88 `8D ! 88,8P 88oobY' 88 88 `8bo. 88ooo88 88 88 88ooooo 88oobY' ! 88`8b 88`8b 88 88 `Y8b. 88~~~88 88 88 88~~~~~ 88`8b ! 88 `88. 88 `88. 88b d88 db 8D 88 88 88 .8D 88. 88 `88. ! YP YD 88 YD ~Y8888P' `8888Y' YP YP Y8888D' Y88888P 88 YD ! S o u r c e F i l e *************************************************************************** *************** *** 38,42 **** #include <qheader.h> #include <qtimer.h> ! #include <qregexp.h> // KDE includes #include <kmessagebox.h> --- 38,42 ---- #include <qheader.h> #include <qtimer.h> ! #include <qregexp.h> // KDE includes #include <kmessagebox.h> *************** *** 58,62 **** #include <qtabbar.h> #include <kdebug.h> ! #include <kurlrequester.h> // Krusader includes #include "../krusader.h" --- 58,62 ---- #include <qtabbar.h> #include <kdebug.h> ! #include <kurlrequester.h> // Krusader includes #include "../krusader.h" *************** *** 66,69 **** --- 66,71 ---- #include "../VFS/krpermhandler.h" #include "listpanel.h" + #include "../krusaderview.h" + #include "../panelmanager.h" #include "../defaults.h" #include "../resources.h" *************** *** 350,354 **** if ( !file ) { // trying to drop on the ".." ! if ( virtualPath.right( 1 ) == "\\" ) // root of archive.. isWritable = false; else --- 352,356 ---- if ( !file ) { // trying to drop on the ".." ! if ( virtualPath.right( 1 ) == "\\" ) // root of archive.. isWritable = false; else *************** *** 415,419 **** mode = KIO::CopyJob::Link; break; ! case - 1 : // user pressed outside the menu case 4: return ; // cancel was pressed; --- 417,421 ---- mode = KIO::CopyJob::Link; break; ! case - 1 : // user pressed outside the menu case 4: return ; // cancel was pressed; *************** *** 447,470 **** void ListPanel::popRightClickMenu( const QPoint &loc ) { // these are the values that will always exist in the menu #define OPEN_ID 90 ! #define OPEN_WITH_ID 91 ! #define OPEN_KONQ_ID 92 ! #define OPEN_TERM_ID 93 ! #define CHOOSE_ID 94 ! #define DELETE_ID 95 ! #define COPY_ID 96 ! #define MOVE_ID 97 ! #define RENAME_ID 98 ! #define PROPERTIES_ID 99 ! #define MOUNT_ID 100 ! #define UNMOUNT_ID 101 ! #define SHRED_ID 102 ! #define NEW_LINK 103 ! #define NEW_SYMLINK 104 ! #define REDIRECT_LINK 105 ! #define SEND_BY_EMAIL 106 ! #define LINK_HANDLING 107 ! #define EJECT_ID 108 ! #define PREVIEW_ID 109 // those will sometimes appear #define SERVICE_LIST_ID 200 --- 449,473 ---- void ListPanel::popRightClickMenu( const QPoint &loc ) { // these are the values that will always exist in the menu + #define OPEN_TAB_ID 89 #define OPEN_ID 90 ! #define OPEN_WITH_ID 91 ! #define OPEN_KONQ_ID 92 ! #define OPEN_TERM_ID 93 ! #define CHOOSE_ID 94 ! #define DELETE_ID 95 ! #define COPY_ID 96 ! #define MOVE_ID 97 ! #define RENAME_ID 98 ! #define PROPERTIES_ID 99 ! #define MOUNT_ID 100 ! #define UNMOUNT_ID 101 ! #define SHRED_ID 102 ! #define NEW_LINK 103 ! #define NEW_SYMLINK 104 ! #define REDIRECT_LINK 105 ! #define SEND_BY_EMAIL 106 ! #define LINK_HANDLING 107 ! #define EJECT_ID 108 ! #define PREVIEW_ID 109 // those will sometimes appear #define SERVICE_LIST_ID 200 *************** *** 484,489 **** popup.insertItem( "Open/Run", OPEN_ID ); // create the open option if ( !multipleSelections ) { // meaningful only if one file is selected ! popup.changeItem( OPEN_ID, item->icon(), // and add pixmap i18n( ( item->isExecutable() ) && ( !item->isDir() ) ? "Run" : "Open" ) ); popup.insertSeparator(); } --- 487,495 ---- popup.insertItem( "Open/Run", OPEN_ID ); // create the open option if ( !multipleSelections ) { // meaningful only if one file is selected ! popup.changeItem( OPEN_ID, item->icon(), // and add pixmap i18n( ( item->isExecutable() ) && ( !item->isDir() ) ? "Run" : "Open" ) ); + // open in a new tab (if folder) + if (item->isDir()) + popup.insertItem(i18n("Open in a new tab"), OPEN_TAB_ID); popup.insertSeparator(); } *************** *** 581,585 **** case - 1 : return ; // the user clicked outside of the menu ! case OPEN_ID : // Open/Run for ( KrViewItemList::Iterator it = items.begin(); it != items.end(); ++it ) { u.setPath( func->files() ->vfs_getFile( ( *it ) ->name() ) ); --- 587,596 ---- case - 1 : return ; // the user clicked outside of the menu ! case OPEN_TAB_ID : // Open/Run ! // assuming only 1 file is selected (otherwise we won't get here) ! (krApp->mainView->activePanel == krApp->mainView->left ? krApp->mainView->leftMng : ! krApp->mainView->rightMng)->slotNewTab( func->files() ->vfs_getFile( item->name() ) ); ! break; ! case OPEN_ID : // Open in a new tab for ( KrViewItemList::Iterator it = items.begin(); it != items.end(); ++it ) { u.setPath( func->files() ->vfs_getFile( ( *it ) ->name() ) ); *************** *** 609,616 **** KShred::shred( func->files() ->vfs_getFile( item->name() ) ); break; ! case OPEN_KONQ_ID : // open in konqueror kapp->startServiceByDesktopName( "konqueror", func->files() ->vfs_getFile( item->name() ) ); break; ! case CHOOSE_ID : // Other... u.setPath( func->files() ->vfs_getFile( item->name() ) ); lst.append( u ); --- 620,627 ---- KShred::shred( func->files() ->vfs_getFile( item->name() ) ); break; ! case OPEN_KONQ_ID : // open in konqueror kapp->startServiceByDesktopName( "konqueror", func->files() ->vfs_getFile( item->name() ) ); break; ! case CHOOSE_ID : // Other... u.setPath( func->files() ->vfs_getFile( item->name() ) ); lst.append( u ); *************** *** 635,639 **** SLOTS->sendFileByEmail( func->files() ->vfs_getFile( item->name() ) ); break; ! case OPEN_TERM_ID : // open in terminal QString save = getcwd( 0, 0 ); chdir( func->files() ->vfs_getFile( item->name() ).local8Bit() ); --- 646,650 ---- SLOTS->sendFileByEmail( func->files() ->vfs_getFile( item->name() ) ); break; ! case OPEN_TERM_ID : // open in terminal QString save = getcwd( 0, 0 ); chdir( func->files() ->vfs_getFile( item->name() ).local8Bit() ); *************** *** 694,702 **** case Key_Enter : case Key_Return : ! if( e->state() & ControlButton ) ! SLOTS->insertFileName( (e->state() & ShiftButton) != 0 ); ! else ! e->ignore(); ! break; case Key_Right : case Key_Left : --- 705,713 ---- case Key_Enter : case Key_Return : ! if ( e->state() & ControlButton ) ! SLOTS->insertFileName( ( e->state() & ShiftButton ) != 0 ); ! else ! e->ignore(); ! break; case Key_Right : case Key_Left : |
From: <ma...@us...> - 2003-09-28 18:25:23
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv31919 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.97 retrieving revision 1.98 diff -C2 -d -r1.97 -r1.98 *** ChangeLog 26 Sep 2003 21:46:09 -0000 1.97 --- ChangeLog 28 Sep 2003 18:25:10 -0000 1.98 *************** *** 1,3 **** --- 1,4 ---- ====================== + ADDED: Open-in-a-new-tab available in right-click menu ADDED: Creating new files with SHIFT+F4 ADDED: Russian translation (thanks to Dmitry Chernyak) |
From: <ma...@us...> - 2003-09-28 18:23:26
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv31613/krusader Modified Files: panelmanager.h Log Message: add: open-in-a-new-tab to right-click menu Index: panelmanager.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/panelmanager.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** panelmanager.h 22 Sep 2003 19:36:22 -0000 1.2 --- panelmanager.h 28 Sep 2003 18:23:13 -0000 1.3 *************** *** 34,40 **** void startPanel(ListPanel *panel, QString path); protected slots: void slotNewTab(); - void slotNewTab(QString path); void slotCloseTab(); void slotChangePanel(ListPanel *p); --- 34,46 ---- void startPanel(ListPanel *panel, QString path); + public slots: + /** + * Called externally to start a new tab. Example of usage would be the "open in a new tab" + * action, from the context-menu. + */ + void slotNewTab(QString path); + protected slots: void slotNewTab(); void slotCloseTab(); void slotChangePanel(ListPanel *p); |
From: <ck...@us...> - 2003-09-27 02:26:52
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv15359/krusader_kde3/krusader Modified Files: krslots.cpp krslots.h krusader.cpp krusaderui.rc Log Message: ADDED: creating new files with Shift+F4 Index: krslots.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** krslots.cpp 22 Sep 2003 23:49:44 -0000 1.18 --- krslots.cpp 26 Sep 2003 21:46:09 -0000 1.19 *************** *** 423,427 **** QString dest = chooser->dest; if ( dest == QString::null ) return ; // the usr canceled ! else KrViewer::view( KURL::fromPathOrURL(dest) ); // view the file // nothing more to it! } --- 423,461 ---- QString dest = chooser->dest; if ( dest == QString::null ) return ; // the usr canceled ! else ! { ! /* KURL::fromPathOrURL requires fullpath, so we check whether it is relative */ ! if ( !dest.contains( ":/" ) && !dest.startsWith( "/" ) ) ! dest = ACTIVE_FUNC->files()->vfs_getOrigin() + "/" + dest; /* it's full path now */ ! ! KrViewer::view( KURL::fromPathOrURL(dest) ); // view the file ! } ! // nothing more to it! ! } ! ! // Shift F4 ! void KRslots::editDlg(){ ! // ask the user for the filename to edit ! KChooseDir *chooser = new KChooseDir( 0,i18n("Enter the filename to edit:"), QString::null); ! QString dest = chooser->dest; ! if ( dest == QString::null ) return ; // the usr canceled ! else ! { ! /* KURL::fromPathOrURL requires fullpath, so we check whether it is relative */ ! if ( !dest.contains( ":/" ) && !dest.startsWith( "/" ) ) ! dest = ACTIVE_FUNC->files()->vfs_getOrigin() + "/" + dest; /* it's full path now */ ! ! krConfig->setGroup( "General" ); ! QString edit = krConfig->readEntry( "Editor", _Editor ); ! ! if ( edit == "internal editor" ) ! KrViewer::edit( KURL::fromPathOrURL( dest ), true ); ! else { ! KProcess proc; ! proc << edit << dest; ! if ( !proc.start( KProcess::DontCare ) ) ! KMessageBox::sorry( krApp, i18n( "Can't open " ) + "\"" + edit + "\"" ); ! } ! } // nothing more to it! } Index: krslots.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** krslots.h 22 Sep 2003 23:49:44 -0000 1.10 --- krslots.h 26 Sep 2003 21:46:09 -0000 1.11 *************** *** 117,120 **** --- 117,122 ---- // F4 void edit(); + // Shift F4 + void editDlg(); // F5 void copyFiles(); Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** krusader.cpp 22 Sep 2003 21:21:51 -0000 1.33 --- krusader.cpp 26 Sep 2003 21:46:09 -0000 1.34 *************** *** 274,277 **** --- 274,280 ---- accels->insert( "F4_Edit", i18n( "F4 Edit" ), QString::null, Key_F4, SLOTS, SLOT( edit() ) ); + // SHIFT+F4 + accels->insert( "F4_EditDlg", i18n( "F4 Edit Dialog" ), QString::null, + SHIFT+Key_F4, SLOTS, SLOT( editDlg() ) ); // F5 accels->insert( "F5_Copy", i18n( "F5 Copy" ), QString::null, *************** *** 310,313 **** --- 313,317 ---- //KStdAction::up( SLOTS, SLOT( dirUp() ), actionCollection(), "std_up" )->setShortcut(Key_Backspace); KStdAction::home( SLOTS, SLOT( home() ), actionCollection(), "std_home" )->setShortcut(Key_QuoteLeft); + KStdAction::openNew( SLOTS, SLOT( editDlg() ), actionCollection(), "std_open_new" ); KAction *actRedisplay = KStdAction::redisplay( SLOTS, SLOT( refresh() ), actionCollection(), "std_redisplay" ); actRedisplay->setText( "Reload" ); Index: krusaderui.rc =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusaderui.rc,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** krusaderui.rc 18 Sep 2003 15:33:29 -0000 1.10 --- krusaderui.rc 26 Sep 2003 21:46:09 -0000 1.11 *************** *** 8,11 **** --- 8,12 ---- <Action name="test archives" /> <Action name="compare" /> + <Action name="std_open_new" /> <Action name="multirename" /> <Action name="calculate" /> *************** *** 81,84 **** --- 82,86 ---- <Action name="select all" /> <Action name="unselect all" /> + <Action name="std_open_new" /> <Action name="unpack" /> <Action name="pack" /> |
From: <ck...@us...> - 2003-09-27 02:26:51
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv15359/krusader_kde3 Modified Files: ChangeLog Log Message: ADDED: creating new files with Shift+F4 Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.96 retrieving revision 1.97 diff -C2 -d -r1.96 -r1.97 *** ChangeLog 24 Sep 2003 14:39:49 -0000 1.96 --- ChangeLog 26 Sep 2003 21:46:09 -0000 1.97 *************** *** 1,3 **** --- 1,4 ---- ====================== + ADDED: Creating new files with SHIFT+F4 ADDED: Russian translation (thanks to Dmitry Chernyak) ADDED: Ctrl+Enter and Ctrl+Shift+Enter keyboard shortcuts |
From: <ck...@us...> - 2003-09-27 00:15:38
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv23527/krusader_kde3/krusader Modified Files: krusader.cpp krusaderui.rc Log Message: FIXED: Ctrl+N remove from Edit New File (New Network Connection collision) Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** krusader.cpp 26 Sep 2003 21:46:09 -0000 1.34 --- krusader.cpp 26 Sep 2003 22:36:00 -0000 1.35 *************** *** 274,280 **** accels->insert( "F4_Edit", i18n( "F4 Edit" ), QString::null, Key_F4, SLOTS, SLOT( edit() ) ); - // SHIFT+F4 - accels->insert( "F4_EditDlg", i18n( "F4 Edit Dialog" ), QString::null, - SHIFT+Key_F4, SLOTS, SLOT( editDlg() ) ); // F5 accels->insert( "F5_Copy", i18n( "F5 Copy" ), QString::null, --- 274,277 ---- *************** *** 313,317 **** //KStdAction::up( SLOTS, SLOT( dirUp() ), actionCollection(), "std_up" )->setShortcut(Key_Backspace); KStdAction::home( SLOTS, SLOT( home() ), actionCollection(), "std_home" )->setShortcut(Key_QuoteLeft); - KStdAction::openNew( SLOTS, SLOT( editDlg() ), actionCollection(), "std_open_new" ); KAction *actRedisplay = KStdAction::redisplay( SLOTS, SLOT( refresh() ), actionCollection(), "std_redisplay" ); actRedisplay->setText( "Reload" ); --- 310,313 ---- *************** *** 351,354 **** --- 347,351 ---- SLOT(cmdlinePopup()), actionCollection(), "cmdline popup"); actDirUp = new KAction( i18n("Up"), "up", Key_Backspace, SLOTS, SLOT(dirUp()), actionCollection(), "dirUp"); + new KAction( i18n("Edit new file"), "filenew", SHIFT + Key_F4, SLOTS, SLOT(editDlg()), actionCollection(), "edit_new_file"); actSelectColorMask = new KAction( i18n( "Co&nfigure compare-mode" ), 0, Index: krusaderui.rc =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusaderui.rc,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** krusaderui.rc 26 Sep 2003 21:46:09 -0000 1.11 --- krusaderui.rc 26 Sep 2003 22:36:00 -0000 1.12 *************** *** 8,12 **** <Action name="test archives" /> <Action name="compare" /> ! <Action name="std_open_new" /> <Action name="multirename" /> <Action name="calculate" /> --- 8,12 ---- <Action name="test archives" /> <Action name="compare" /> ! <Action name="edit_new_file" /> <Action name="multirename" /> <Action name="calculate" /> *************** *** 82,86 **** <Action name="select all" /> <Action name="unselect all" /> ! <Action name="std_open_new" /> <Action name="unpack" /> <Action name="pack" /> --- 82,86 ---- <Action name="select all" /> <Action name="unselect all" /> ! <Action name="edit_new_file" /> <Action name="unpack" /> <Action name="pack" /> |
From: <ck...@us...> - 2003-09-27 00:11:07
|
Update of /cvsroot/krusader/krusader_kde3/krusader/KViewer In directory sc8-pr-cvs1:/tmp/cvs-serv15359/krusader_kde3/krusader/KViewer Modified Files: krviewer.cpp krviewer.h Log Message: ADDED: creating new files with Shift+F4 Index: krviewer.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/KViewer/krviewer.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** krviewer.cpp 22 Sep 2003 16:14:42 -0000 1.11 --- krviewer.cpp 26 Sep 2003 21:46:09 -0000 1.12 *************** *** 66,70 **** } ! KParts::Part* KrViewer::getPart(KURL url, QString mimetype ,bool readOnly){ KParts::Part *part = 0L; KLibFactory *factory = 0; --- 66,70 ---- } ! KParts::Part* KrViewer::getPart(KURL url, QString mimetype ,bool readOnly, bool create){ KParts::Part *part = 0L; KLibFactory *factory = 0; *************** *** 85,89 **** ptr->name().latin1(), type.latin1() )); if( part ) ! if( ((KParts::ReadOnlyPart*)part)->openURL(url) ) break; else { delete part; --- 85,89 ---- ptr->name().latin1(), type.latin1() )); if( part ) ! if( ((KParts::ReadOnlyPart*)part)->openURL( url ) || create ) break; else { delete part; *************** *** 144,148 **** } ! void KrViewer::edit(KURL url){ KrViewer* viewer = new KrViewer(krApp); --- 144,148 ---- } ! void KrViewer::edit(KURL url, bool create){ KrViewer* viewer = new KrViewer(krApp); *************** *** 151,155 **** viewer->show(); ! if( !viewer->editText() ) { viewer->destroy(); --- 151,155 ---- viewer->show(); ! if( !viewer->editText( create ) ) { viewer->destroy(); *************** *** 195,201 **** } ! bool KrViewer::editText(){ if( !editor_part ){ ! editor_part = static_cast<KParts::ReadWritePart*>(getPart(url,"text/plain",false)); if( !editor_part ) return false; manager.addPart(editor_part,this); --- 195,201 ---- } ! bool KrViewer::editText( bool create ){ if( !editor_part ){ ! editor_part = static_cast<KParts::ReadWritePart*>(getPart(url,"text/plain",false,create)); if( !editor_part ) return false; manager.addPart(editor_part,this); Index: krviewer.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/KViewer/krviewer.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** krviewer.h 22 Sep 2003 16:14:42 -0000 1.4 --- krviewer.h 26 Sep 2003 21:46:09 -0000 1.5 *************** *** 36,40 **** ~KrViewer(); static void view(KURL url); ! static void edit(KURL url); --- 36,40 ---- ~KrViewer(); static void view(KURL url); ! static void edit(KURL url, bool create = false ); *************** *** 45,49 **** bool editGeneric(QString mimetype, KURL _url); ! bool editText(); void keyPressEvent(QKeyEvent *e); --- 45,49 ---- bool editGeneric(QString mimetype, KURL _url); ! bool editText( bool create = false ); void keyPressEvent(QKeyEvent *e); *************** *** 53,57 **** private: KrViewer(QWidget *parent=0, const char *name=0); ! KParts::Part* getPart(KURL url, QString m ,bool readOnly); QPopupMenu* viewerMenu; --- 53,57 ---- private: KrViewer(QWidget *parent=0, const char *name=0); ! KParts::Part* getPart(KURL url, QString m ,bool readOnly, bool create=false); QPopupMenu* viewerMenu; |
From: <des...@us...> - 2003-09-24 14:48:47
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv1839/krusader Modified Files: main.cpp Log Message: added russian translator credit Index: main.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/main.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** main.cpp 22 Sep 2003 20:16:13 -0000 1.18 --- main.cpp 24 Sep 2003 14:48:40 -0000 1.19 *************** *** 81,84 **** --- 81,85 ---- aboutData.addCredit("Lukasz Janyst","Polish translation","lj...@wp...",0); aboutData.addCredit("Kukk Zoltan","Hungarian translation","kuk...@fr...",0); + aboutData.addCredit("Dmitry Chernyak","Russian translation","che...@ma...",0); aboutData.addCredit("Milan Brabec","the first patch ever !","mb...@vo...",0); |
From: <des...@us...> - 2003-09-24 14:39:53
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv32762 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.95 retrieving revision 1.96 diff -C2 -d -r1.95 -r1.96 *** ChangeLog 22 Sep 2003 23:49:44 -0000 1.95 --- ChangeLog 24 Sep 2003 14:39:49 -0000 1.96 *************** *** 1,3 **** --- 1,4 ---- ====================== + ADDED: Russian translation (thanks to Dmitry Chernyak) ADDED: Ctrl+Enter and Ctrl+Shift+Enter keyboard shortcuts ADDED: default shortcut for refreshing the panel is Ctrl+R |
From: <des...@us...> - 2003-09-24 14:39:26
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1:/tmp/cvs-serv32680/po Added Files: ru.po Log Message: --- NEW FILE: ru.po --- # translation of ru.po to Russian # translation of krusader.po to Russian # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Dmitry V. Chernyak <dv...@ma...>, 2003 # msgid "" msgstr "" "Project-Id-Version: ru\n" "POT-Creation-Date: 2003-08-01 13:49+0300\n" "PO-Revision-Date: 2003-09-24 14:55+0300\n" "Last-Translator: Dmitry V. Chernyak <dv...@ma...>\n" "Language-Team: Russian <ru...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.0\n" #: GUI/kcmdline.cpp:69 [...2430 lines suppressed...] msgid "Krusader is unable to download: " msgstr "Krusader не Ð¼Ð¾Ð¶ÐµÑ Ð·Ð°Ð³ÑÑзиÑÑ: " #: krslots.cpp:193 msgid "" "In order to save the time needed to enter an archive, Krusader will not " "allow bookmarks which point into an archive, as it is usually a mistake to " "do so!" msgstr "" #: krslots.cpp:311 msgid "Can't find \"KsysCtrl\". Please install KDE admin package" msgstr "Ðенайдено \"KsysCtrl\". ÐожалÑйÑÑа ÑÑÑановиÑе KDE admin package" #: krslots.cpp:319 msgid "" "Can't find a batch renamer tool.\n" "You can get Krename at http://krename.sf.net" msgstr "" |
From: <ck...@us...> - 2003-09-23 12:16:56
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv30635/krusader_kde3/krusader/Panel Modified Files: krdetailedview.cpp Log Message: FIXED: missing break for the Ctrl+A fix Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** krdetailedview.cpp 23 Sep 2003 12:11:16 -0000 1.43 --- krdetailedview.cpp 23 Sep 2003 12:16:52 -0000 1.44 *************** *** 578,581 **** --- 578,582 ---- KListView::keyPressEvent( e ); updateView(); + break; } default: |