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: <ya...@us...> - 2003-08-24 19:53:30
|
Update of /cvsroot/krusader/krusader_kde3/krArc In directory sc8-pr-cvs1:/tmp/cvs-serv26667/krArc Modified Files: krarc.cpp Log Message: RAR support Index: krarc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krArc/krarc.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** krarc.cpp 16 Aug 2003 14:20:35 -0000 1.5 --- krarc.cpp 24 Aug 2003 19:53:27 -0000 1.6 *************** *** 226,233 **** return; } ! QString file = url.path().mid(arcFile->url().path().length()+1); ! if( !isFile && file.right(1) != "/" ) file = file + "/"; ! KShellProcess proc; proc << delCmd << "\""+arcFile->url().path()+"\" " << "\""+file+"\""; infoMessage(i18n("Deleting %1 ...").arg( url.fileName() ) ); --- 226,235 ---- return; } ! QString file = url.path().mid(arcFile->url().path().length()+1); ! if( !isFile && file.right(1) != "/" ) { ! if(arcType == "zip") file = file + "/"; ! } ! KShellProcess proc; proc << delCmd << "\""+arcFile->url().path()+"\" " << "\""+file+"\""; infoMessage(i18n("Deleting %1 ...").arg( url.fileName() ) ); *************** *** 395,401 **** int lineNo = 0; while(temp.file()->readLine(buf,1000) != -1){ line = QString::fromLocal8Bit(buf); ! parseLine(lineNo++,line.stripWhiteSpace(),temp.file()); } // close and delete our file --- 397,418 ---- int lineNo = 0; + // the rar list is started with a ------ line. + if(arcType == "rar"){ + while(temp.file()->readLine(buf,1000) != -1){ + line = QString::fromLocal8Bit(buf); + if( line.startsWith("-----------") ) break; + } + } while(temp.file()->readLine(buf,1000) != -1){ line = QString::fromLocal8Bit(buf); ! if( arcType == "rar" ) { ! // the rar list is ended with a ------ line. ! if( line.startsWith("-----------") ) break; ! else{ ! temp.file()->readLine(buf,1000); ! line = line+QString::fromLocal8Bit(buf); ! } ! } ! parseLine(lineNo++,line.stripWhiteSpace(),temp.file()); } // close and delete our file *************** *** 541,545 **** ! if(arcType == "zip"){ // permissions perm = nextWord(line); --- 558,562 ---- ! if(arcType == "zip"){ // permissions perm = nextWord(line); *************** *** 560,563 **** --- 577,599 ---- fullName = nextWord(line,'\n'); } + if(arcType == "rar"){ + // full name + fullName = nextWord(line,'\n'); + // size + size = nextWord(line).toLong(); + // ignore the next 2 fields + nextWord(line); nextWord(line); + // date & time + QString d = nextWord(line); + QDate qdate(d.mid(6,2).toInt(),d.mid(3,2).toInt(),d.mid(0,2).toInt()); + if( qdate.year() < 1930 ) qdate.addYears(100); + QString t = nextWord(line); + QTime qtime(t.mid(0,2).toInt(),t.mid(4,2).toInt(),0); + time = QDateTime(qdate,qtime).toTime_t(); + // permissions + perm = nextWord(line); + if(perm.length() != 10) perm = (perm.at(0)=='d')? "drwxr-xr-x" : "-rw-r--r--" ; + mode = parsePermString(perm); + } if( fullName.right(1) == "/" ) fullName = fullName.left(fullName.length()-1); *************** *** 589,599 **** entry.append( atom ); - dir->append(entry); if(perm[0] == 'd'){ fullName=fullName+"/"; ! if(dirDict.find(fullName) == 0){ dirDict.insert(fullName,new UDSEntryList()); ! } } } --- 625,637 ---- entry.append( atom ); if(perm[0] == 'd'){ fullName=fullName+"/"; ! if(dirDict.find(fullName) == 0) dirDict.insert(fullName,new UDSEntryList()); ! else ! return; // there is alreay an entry for this directory } + + dir->append(entry); } *************** *** 605,608 **** --- 643,652 ---- delCmd = "zip -d "; putCmd = "zip -ry "; + } else if (arcType == "rar"){ + cmd = "unrar" ; + listCmd = "unrar -c- v "; + getCmd = "unrar x -y "; + delCmd = "rar d "; + putCmd = "rar -r a "; } else { cmd = QString::null; *************** *** 614,620 **** if( KStandardDirs::findExe(cmd).isEmpty() ){ ! error(ERR_SLAVE_DEFINED,QString("I Love you !\n") );//ERR_UNSUPPORTED_PROTOCOL, ! //i18n("%1 archives are not supported").arg(arcType) ); ! return false; } return true; --- 658,665 ---- if( KStandardDirs::findExe(cmd).isEmpty() ){ ! error( KIO::ERR_CANNOT_LAUNCH_PROCESS, ! cmd+ ! i18n("\nMake sure that the %1 binary are installed properly on your system.").arg(cmd)); ! return false; } return true; |
From: <jan...@us...> - 2003-08-24 18:13:31
|
Update of /cvsroot/krusader/krusader_kde3/krusader/BookMan In directory sc8-pr-cvs1:/tmp/cvs-serv11152/krusader_kde3/krusader/BookMan Modified Files: kbookmarkmenu.cpp Log Message: Netscape bookmarks removed Index: kbookmarkmenu.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/BookMan/kbookmarkmenu.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** kbookmarkmenu.cpp 8 Aug 2003 21:19:24 -0000 1.2 --- kbookmarkmenu.cpp 24 Aug 2003 18:13:28 -0000 1.3 *************** *** 226,229 **** --- 226,230 ---- return; + /* if ( m_bIsRoot ) { *************** *** 253,256 **** --- 254,258 ---- } } + */ KBookmarkGroup parentBookmark = m_pManager->findByAddress( m_parentAddress ).toGroup(); |
From: <ma...@us...> - 2003-08-23 17:54:48
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1:/tmp/cvs-serv625/krusader/Dialogs Modified Files: krspecialwidgets.cpp krspecialwidgets.h Log Message: Index: krspecialwidgets.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krspecialwidgets.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** krspecialwidgets.cpp 16 Aug 2003 13:17:09 -0000 1.3 --- krspecialwidgets.cpp 23 Aug 2003 14:56:24 -0000 1.4 *************** *** 220,225 **** case Key_Up: case Key_Down: ! case Key_Home: ! case Key_End: emit stop(e); break; --- 220,225 ---- case Key_Up: case Key_Down: ! case Key_Escape: ! case Key_Enter: emit stop(e); break; Index: krspecialwidgets.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krspecialwidgets.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** krspecialwidgets.h 16 Aug 2003 13:17:23 -0000 1.2 --- krspecialwidgets.h 23 Aug 2003 14:56:24 -0000 1.3 *************** *** 108,112 **** signals: ! void stop(QKeyEvent *e); }; --- 108,113 ---- signals: ! void stop(QKeyEvent *e); ! }; |
From: <ma...@us...> - 2003-08-23 16:42:22
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv625/krusader/Panel Modified Files: krdetailedview.cpp Log Message: Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** krdetailedview.cpp 22 Aug 2003 10:42:45 -0000 1.26 --- krdetailedview.cpp 23 Aug 2003 14:56:24 -0000 1.27 *************** *** 54,58 **** // // Ext Column ! #define _ExtColumn true // Mime Column #define _MimeColumn false --- 54,58 ---- // // Ext Column ! #define _ExtColumn true // Mime Column #define _MimeColumn false *************** *** 534,539 **** KrDetailedViewItem * viewItem = dynamic_cast<KrDetailedViewItem *> ( getCurrentKrViewItem() ); if ( !viewItem || !( viewItem->isDir() && viewItem->size() <= 0 ) ) { ! KListView::keyPressEvent( e ); ! return ; // wrong type } long long totalSize = 0; --- 534,539 ---- KrDetailedViewItem * viewItem = dynamic_cast<KrDetailedViewItem *> ( getCurrentKrViewItem() ); if ( !viewItem || !( viewItem->isDir() && viewItem->size() <= 0 ) ) { ! KListView::keyPressEvent( new QKeyEvent(QKeyEvent::KeyPress, Key_Insert, 0, 0) ); ! return ; // wrong type, just mark(unmark it) } long long totalSize = 0; *************** *** 553,557 **** (e->key()>=Key_0 && e->key()<=Key_9) || (e->key() == Key_Backspace) || ! (e->key() == Key_Down) ) { // are we doing quicksearch? if not, send keys to panel if ( _config->readBoolEntry( "Do Quicksearch", _DoQuicksearch ) ) { --- 553,558 ---- (e->key()>=Key_0 && e->key()<=Key_9) || (e->key() == Key_Backspace) || ! (e->key() == Key_Down) || ! (e->key() == Key_Period) ) { // are we doing quicksearch? if not, send keys to panel if ( _config->readBoolEntry( "Do Quicksearch", _DoQuicksearch ) ) { |
From: <ma...@us...> - 2003-08-23 16:11:22
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv5086 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** ChangeLog 22 Aug 2003 10:44:13 -0000 1.64 --- ChangeLog 23 Aug 2003 15:25:59 -0000 1.65 *************** *** 1,7 **** ====================== ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) FIXED: crash when using spacebar on the ".." (thanks to heiner) FIXED: automark directories didn't work (thanks to Anarky) ! FIXED: bug when using space to calculate space of directory (cursor shouldn't go down) UPDATED: many usability issues (thanks to Mikolaj) UPDATED: Spanish translation --- 1,9 ---- ====================== + ADDED: new selection mode (a-la Total Commander) - beta mode! ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) + FIXED: right-click menu via keyboard appeared in the wrong place FIXED: crash when using spacebar on the ".." (thanks to heiner) FIXED: automark directories didn't work (thanks to Anarky) ! FIXED: bug when using space to calculate space of directory UPDATED: many usability issues (thanks to Mikolaj) UPDATED: Spanish translation |
From: <ma...@us...> - 2003-08-23 15:25:42
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv5054/krusader Modified Files: krslots.cpp Log Message: fixed: right-click menu via keyboard appeared in the wrong place Index: krslots.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** krslots.cpp 2 Aug 2003 21:03:55 -0000 1.13 --- krslots.cpp 23 Aug 2003 15:25:38 -0000 1.14 *************** *** 184,188 **** void KRslots::rightclickMenu() { ! ACTIVE_PANEL->popRightClickMenu(QPoint(0,0)); } --- 184,193 ---- void KRslots::rightclickMenu() { ! ACTIVE_PANEL->popRightClickMenu( ! ACTIVE_PANEL->mapToGlobal( ! dynamic_cast<KListView*>(ACTIVE_PANEL->view)->itemRect(dynamic_cast<QListViewItem*> ! (ACTIVE_PANEL->view->getCurrentKrViewItem())).topLeft() ! ) ! ); } |
From: <ma...@us...> - 2003-08-23 10:55:28
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1:/tmp/cvs-serv4316/krusader/MountMan Modified Files: kmountmangui.cpp Log Message: missing accelartor Index: kmountmangui.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountmangui.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** kmountmangui.cpp 7 May 2003 15:59:34 -0000 1.3 --- kmountmangui.cpp 22 Aug 2003 10:40:46 -0000 1.4 *************** *** 57,61 **** connect((QObject*)&krMtMan,SIGNAL(updated()),this,SLOT(updateList())); // <> connect(watcher,SIGNAL(dirty()),(QObject*)&krMtMan,SLOT(forceUpdate())); //<> ! setButtonOKText(i18n("Close"),i18n("Close the Mount.Man window."),0); showButtonApply(false); showButtonCancel(false); setPlainCaption(i18n("MountMan - Your Mount-Manager")); --- 57,61 ---- connect((QObject*)&krMtMan,SIGNAL(updated()),this,SLOT(updateList())); // <> connect(watcher,SIGNAL(dirty()),(QObject*)&krMtMan,SLOT(forceUpdate())); //<> ! setButtonOKText(i18n("&Close"),i18n("Close the Mount.Man window."),0); showButtonApply(false); showButtonCancel(false); setPlainCaption(i18n("MountMan - Your Mount-Manager")); |
From: <ma...@us...> - 2003-08-22 22:48:42
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv31701 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** ChangeLog 18 Aug 2003 20:26:42 -0000 1.62 --- ChangeLog 22 Aug 2003 10:01:13 -0000 1.63 *************** *** 1,2 **** --- 1,5 ---- + ====================== + FIXED: crash when using spacebar on the ".." (thanks to heiner) + FIXED: automark directories didn't work (thanks to Anarky) UPDATED: Spanish translation |
From: <ma...@us...> - 2003-08-22 16:36:09
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv13610/krusader/Panel Modified Files: krdetailedviewitem.cpp krdetailedviewitem.h Log Message: new selection mode (total commandeR) Index: krdetailedviewitem.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** krdetailedviewitem.cpp 18 Jul 2003 20:40:15 -0000 1.8 --- krdetailedviewitem.cpp 22 Aug 2003 16:36:04 -0000 1.9 *************** *** 36,42 **** --- 36,44 ---- #include "../VFS/krpermhandler.h" #include <sys/types.h> + #include <qpainter.h> #include <pwd.h> #include <grp.h> #include <stdlib.h> + #include <qpalette.h> #include <kdebug.h> #include <kmimetype.h> *************** *** 126,137 **** void KrDetailedViewItem::paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int align) { // center the <DIR> thing if needed if(column != _view->column(KrDetailedView::Size)) ! KListViewItem::paintCell(p, cg, column, width, align); else if (_vf) { if (_vf->vfile_isDir() && _vf->vfile_getSize()<=0) ! KListViewItem::paintCell(p, cg, column, width, Qt::AlignHCenter); ! else KListViewItem::paintCell(p, cg, column, width, align); // size ! } else KListViewItem::paintCell(p, cg, column, width, Qt::AlignHCenter); // updir } --- 128,175 ---- void KrDetailedViewItem::paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int align) { + QColorGroup _cg(cg); + // kdelibs' paintCell ////////////////////////////////////////// + const QPixmap *pm = listView()->viewport()->backgroundPixmap(); + if (pm && !pm->isNull()) + { + _cg.setBrush(QColorGroup::Base, QBrush(backgroundColor(), *pm)); + p->setBrushOrigin( -listView()->contentsX(), -listView()->contentsY() ); + } + else + if (isAlternate()) + if (listView()->viewport()->backgroundMode()==Qt::FixedColor) + _cg.setColor(QColorGroup::Background, static_cast< KListView* >(listView())->alternateBackground()); + else + _cg.setColor(QColorGroup::Base, static_cast< KListView* >(listView())->alternateBackground()); + // end of kdelibs' paintCell /////////////////////////////////// + + #define COLOR _cg.color(QColorGroup::Link) + // make selected items colored (wincmd style) + if (isSelected()) { + if (_view->getCurrentKrViewItem() == this) { // selected and current + // for visual comfortability, don't color it red if it's + // the only file that's selected + if (!_view->automaticSelection()) + _cg.setColor(QColorGroup::HighlightedText, COLOR); + else _cg.setColor(QColorGroup::HighlightedText, _cg.color(QColorGroup::Foreground)); + _cg.setColor(QColorGroup::Highlight, backgroundColor()); //? + } else { // selected but not current + _cg.setColor(QColorGroup::HighlightedText, COLOR); + _cg.setColor(QColorGroup::Highlight, backgroundColor()); + } + } else if (_view->getCurrentKrViewItem() == this) { // current but not selected + _cg.setColor(QColorGroup::Base, backgroundColor()); + } else { // not selected + + } + // center the <DIR> thing if needed if(column != _view->column(KrDetailedView::Size)) ! QListViewItem::paintCell(p, _cg, column, width, align); else if (_vf) { if (_vf->vfile_isDir() && _vf->vfile_getSize()<=0) ! QListViewItem::paintCell(p, _cg, column, width, Qt::AlignHCenter); ! else QListViewItem::paintCell(p, _cg, column, width, align); // size ! } else QListViewItem::paintCell(p, _cg, column, width, Qt::AlignHCenter); // updir } Index: krdetailedviewitem.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** krdetailedviewitem.h 22 Aug 2003 10:05:21 -0000 1.5 --- krdetailedviewitem.h 22 Aug 2003 16:36:04 -0000 1.6 *************** *** 65,69 **** int compare(QListViewItem *i,int col,bool ascending ) const; void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int align); - bool isAlternate() { return false; } void repaintItem(); --- 65,68 ---- |
From: <ma...@us...> - 2003-08-22 12:28:57
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1:/tmp/cvs-serv32054/krusader/VFS Modified Files: krpermhandler.cpp Log Message: fixed: a cast bug for freebsd Index: krpermhandler.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/krpermhandler.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** krpermhandler.cpp 18 Jul 2003 20:52:13 -0000 1.5 --- krpermhandler.cpp 22 Aug 2003 10:04:32 -0000 1.6 *************** *** 252,256 **** QString dateTime; // convert the time_t to struct tm ! struct tm* t=localtime(&time); QDateTime tmp(QDate(t->tm_year+1900, t->tm_mon+1, t->tm_mday), QTime(t->tm_hour, t->tm_min)); --- 252,256 ---- QString dateTime; // convert the time_t to struct tm ! struct tm* t=localtime((time_t *)&time); QDateTime tmp(QDate(t->tm_year+1900, t->tm_mon+1, t->tm_mday), QTime(t->tm_hour, t->tm_min)); |
From: <ma...@us...> - 2003-08-22 11:08:13
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv4405/krusader Modified Files: main.cpp Log Message: Index: main.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/main.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** main.cpp 4 Aug 2003 22:02:48 -0000 1.15 --- main.cpp 22 Aug 2003 10:41:33 -0000 1.16 *************** *** 60,64 **** aboutData.addAuthor("Dirk Eschler", "Webmaster and i18n coordinator", "hom...@gm...", 0); aboutData.addAuthor("Jan Halasa", "Developer", "xh...@fi...", 0); ! aboutData.addCredit("Heiner Eichmann","FreeBSD port, patchs and general help", "h.e...@gm...", 0); aboutData.addCredit("Cristi Dumitrescu","QA, bug-hunting, patches and general help","cr...@ch...",0); aboutData.addCredit("Aurelien Gateau","patch for KViewer","aur...@fr...",0); --- 60,65 ---- aboutData.addAuthor("Dirk Eschler", "Webmaster and i18n coordinator", "hom...@gm...", 0); aboutData.addAuthor("Jan Halasa", "Developer", "xh...@fi...", 0); ! aboutData.addCredit("Heiner Eichmann","FreeBSD port, patches and general help", "h.e...@gm...", 0); ! aboutData.addCredit("Mikolaj Machowski", "Usability and QA", "<mi...@wp...>", 0); aboutData.addCredit("Cristi Dumitrescu","QA, bug-hunting, patches and general help","cr...@ch...",0); aboutData.addCredit("Aurelien Gateau","patch for KViewer","aur...@fr...",0); |
From: <ma...@us...> - 2003-08-22 10:44:17
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv4777 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** ChangeLog 22 Aug 2003 10:01:13 -0000 1.63 --- ChangeLog 22 Aug 2003 10:44:13 -0000 1.64 *************** *** 1,5 **** --- 1,8 ---- ====================== + ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) FIXED: crash when using spacebar on the ".." (thanks to heiner) FIXED: automark directories didn't work (thanks to Anarky) + FIXED: bug when using space to calculate space of directory (cursor shouldn't go down) + UPDATED: many usability issues (thanks to Mikolaj) UPDATED: Spanish translation |
From: <ma...@us...> - 2003-08-22 10:43:35
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv4655/krusader Modified Files: krusader.cpp Log Message: usability Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** krusader.cpp 16 Aug 2003 13:15:23 -0000 1.23 --- krusader.cpp 22 Aug 2003 10:43:31 -0000 1.24 *************** *** 310,314 **** SLOT( toggleTerminal() ), actionCollection(), "toggle terminal emulator" ); actToggleTerminal->setChecked( false ); ! actToggleHidden = new KToggleAction( i18n( "Show H&idden Files" ), 0, SLOTS, SLOT( toggleHidden() ), actionCollection(), "toggle hidden files" ); actToggleSortByExt = new KToggleAction( i18n( "Sort By E&xtention" ), 0, SLOTS, --- 310,314 ---- SLOT( toggleTerminal() ), actionCollection(), "toggle terminal emulator" ); actToggleTerminal->setChecked( false ); ! actToggleHidden = new KToggleAction( i18n( "Show &Hidden Files" ), CTRL + Key_Period, SLOTS, SLOT( toggleHidden() ), actionCollection(), "toggle hidden files" ); actToggleSortByExt = new KToggleAction( i18n( "Sort By E&xtention" ), 0, SLOTS, *************** *** 325,329 **** actTest = new KAction( i18n( "&Test Archive(s)" ), "kr_arc_test", CTRL + Key_T, SLOTS, SLOT( testArchive() ), actionCollection(), "test archives" ); ! actFTPConnect = new KAction( i18n( "&Net Connections" ), "socket", CTRL + Key_F, SLOTS, SLOT( runRemoteMan() ), actionCollection(), "ftp connect" ); actFTPNewConnect = new KAction( i18n( "New Net &Connection" ), "ftp", CTRL + Key_N, --- 325,329 ---- actTest = new KAction( i18n( "&Test Archive(s)" ), "kr_arc_test", CTRL + Key_T, SLOTS, SLOT( testArchive() ), actionCollection(), "test archives" ); ! actFTPConnect = new KAction( i18n( "&Net Connections" ), "socket", CTRL + Key_C, SLOTS, SLOT( runRemoteMan() ), actionCollection(), "ftp connect" ); actFTPNewConnect = new KAction( i18n( "New Net &Connection" ), "ftp", CTRL + Key_N, *************** *** 345,349 **** actHomeTerminal = new KAction( i18n( "&Terminal" ), "kr_terminal", 0, SLOTS, SLOT( homeTerminal() ), actionCollection(), "terminal@home" ); ! actFTPDisconnect = new KAction( i18n( "FTP Disc&onnect" ), "kr_ftp_disconnect", SHIFT + CTRL + Key_F, SLOTS, SLOT( FTPDisconnect() ), actionCollection(), "ftp disconnect" ); actMountMan = new KAction( i18n( "&MountMan" ), "kcmpartitions", ALT + Key_Slash, --- 345,349 ---- actHomeTerminal = new KAction( i18n( "&Terminal" ), "kr_terminal", 0, SLOTS, SLOT( homeTerminal() ), actionCollection(), "terminal@home" ); ! actFTPDisconnect = new KAction( i18n( "Disconnect &From Net" ), "kr_ftp_disconnect", SHIFT + CTRL + Key_F, SLOTS, SLOT( FTPDisconnect() ), actionCollection(), "ftp disconnect" ); actMountMan = new KAction( i18n( "&MountMan" ), "kcmpartitions", ALT + Key_Slash, |
From: <ma...@us...> - 2003-08-22 10:42:48
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv4533/krusader/Panel Modified Files: krdetailedview.cpp Log Message: fixed: bug when pressing space Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** krdetailedview.cpp 16 Aug 2003 13:16:18 -0000 1.25 --- krdetailedview.cpp 22 Aug 2003 10:42:45 -0000 1.26 *************** *** 545,549 **** _countSize += totalSize; viewItem->repaintItem(); ! KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Insert, 0, 0 ) ); } break; --- 545,549 ---- _countSize += totalSize; viewItem->repaintItem(); ! //KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Space, 0, 0 ) ); } break; |
From: <ma...@us...> - 2003-08-22 10:05:25
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv32165/krusader/Panel Modified Files: krdetailedviewitem.h Log Message: fixed: crash when trying to work with ".." - which has no vfile Index: krdetailedviewitem.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** krdetailedviewitem.h 15 Jul 2003 12:09:26 -0000 1.4 --- krdetailedviewitem.h 22 Aug 2003 10:05:21 -0000 1.5 *************** *** 48,59 **** QString name() const; QString description() const; // for status bar ! inline bool isDir() const { return _vf->vfile_isDir(); } ! inline bool isExecutable() const { return _vf->vfile_isExecutable(); } ! inline unsigned long size() const { return _vf->vfile_getSize(); } ! inline QString dateTime() const { return _vf->vfile_getDateTime(); } ! inline QString mime() const { return _vf->vfile_getMime(); } ! inline QString symlinkDest() const { return _vf->vfile_getSymDest(); } ! inline bool isSymLink() const { return _vf->vfile_isSymLink(); } ! bool isSelected() const { return KListViewItem::isSelected(); } void setSelected(bool s) { KListViewItem::setSelected(s); } /*void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment){}*/ --- 48,63 ---- QString name() const; QString description() const; // for status bar ! inline bool isDir() const { return (_vf ? _vf->vfile_isDir() : false); } ! inline bool isExecutable() const { return (_vf ? _vf->vfile_isExecutable() : false); } ! inline unsigned long size() const { return (_vf ? _vf->vfile_getSize() : 0); } ! inline QString dateTime() const { return (_vf ? _vf->vfile_getDateTime() : QString::null); } ! inline QString mime() const { return (_vf ? _vf->vfile_getMime() : QString::null); } ! inline QString symlinkDest() const { ! //return (_vf ? : _vf->vfile_getSymDest() : QString::null); ! if (_vf) return _vf->vfile_getSymDest(); ! else return QString::null; ! } ! inline bool isSymLink() const { return (_vf ? _vf->vfile_isSymLink() : false); } ! bool isSelected() const { return (_vf ? KListViewItem::isSelected() : false); } void setSelected(bool s) { KListViewItem::setSelected(s); } /*void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment){}*/ |
From: <ma...@us...> - 2003-08-22 10:03:49
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv31972/krusader/Panel Modified Files: krview.cpp Log Message: fixed: automark dirs bug Index: krview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krview.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** krview.cpp 18 Nov 2002 22:13:13 -0000 1.1 --- krview.cpp 22 Aug 2003 10:03:45 -0000 1.2 *************** *** 121,125 **** void KrView::changeSelection(const QString& filter, bool select) { ! KConfigGroupSaver grpSvr(_config, nameInKConfig()); bool markDirs = _config->readBoolEntry("Mark Dirs",_MarkDirs); --- 121,125 ---- void KrView::changeSelection(const QString& filter, bool select) { ! KConfigGroupSaver grpSvr(_config, "Look&Feel"/*nameInKConfig()*/); bool markDirs = _config->readBoolEntry("Mark Dirs",_MarkDirs); *************** *** 149,153 **** void KrView::invertSelection() { ! KConfigGroupSaver grpSvr(_config, nameInKConfig()); bool markDirs = _config->readBoolEntry("Mark Dirs",_MarkDirs); --- 149,153 ---- void KrView::invertSelection() { ! KConfigGroupSaver grpSvr(_config, "Look&Feel"/*nameInKConfig()*/); bool markDirs = _config->readBoolEntry("Mark Dirs",_MarkDirs); |
From: <des...@us...> - 2003-08-18 20:26:44
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv11102 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.61 retrieving revision 1.62 diff -C2 -d -r1.61 -r1.62 *** ChangeLog 16 Aug 2003 13:20:22 -0000 1.61 --- ChangeLog 18 Aug 2003 20:26:42 -0000 1.62 *************** *** 1,2 **** --- 1,4 ---- + UPDATED: Spanish translation + 1.25-beta1 ====================== |
From: <des...@us...> - 2003-08-18 20:25:08
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1:/tmp/cvs-serv10704/po Modified Files: es.po Log Message: Index: es.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/es.po,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** es.po 1 Aug 2003 11:02:12 -0000 1.1 --- es.po 18 Aug 2003 20:25:05 -0000 1.2 *************** *** 1,4 **** ! # translation of es-krusader120.po to Español ! # translation of es-krusader120.po to español # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --- 1,3 ---- ! # translation of es-krusader125.po to Español # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER *************** *** 7,13 **** [...2375 lines suppressed...] "To compare 2 files by content, select (mark) a file in the left panel, and " *************** *** 2457,2461 **** "y marque otro en el panel derecho." ! #: krslots.cpp:162 krslots.cpp:168 msgid "Krusader is unable to download: " msgstr "Krusader no puede descargar: " --- 2471,2475 ---- "y marque otro en el panel derecho." ! #: krslots.cpp:163 krslots.cpp:169 msgid "Krusader is unable to download: " msgstr "Krusader no puede descargar: " *************** *** 2482,2483 **** --- 2496,2498 ---- "No se encuentra ningúna utilidad de renombrado.\n" "Puede obtener Krename en http://krename.sf.net" + |
From: <ma...@us...> - 2003-08-16 18:25:02
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv6389/krusader/Panel Removed Files: krlistitem.cpp krlistitem.h Log Message: --- krlistitem.cpp DELETED --- --- krlistitem.h DELETED --- |
From: <ya...@us...> - 2003-08-16 14:49:14
|
Update of /cvsroot/krusader/krusader_kde3/krArc In directory sc8-pr-cvs1:/tmp/cvs-serv3488/krArc Modified Files: krarc.cpp Log Message: Multi archive support preparations. Index: krarc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krArc/krarc.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** krarc.cpp 19 Jul 2003 13:13:06 -0000 1.4 --- krarc.cpp 16 Aug 2003 14:20:35 -0000 1.5 *************** *** 492,539 **** dir = addNewDir(path.left(path.findRev("/",-2)+1)); ! // do we have an entry for the parent dir ? QString name = path.mid(path.findRev("/",-2)+1); name = name.left(name.length()-1); ! UDSEntryList::iterator entry; ! bool dirEntryExists = false; ! for ( entry = dir->begin(); entry != dir->end() && !dirEntryExists; ++entry ){ ! UDSEntry::iterator atom; ! for( atom = (*entry).begin(); atom != (*entry).end(); ++atom ){ ! if( (*atom).m_uds == UDS_NAME ){ ! if((*atom).m_str == name){ ! dirEntryExists = true; ! } ! else break; ! } ! } ! } ! // add a new entry in the parent dir ! if( !dirEntryExists ){ ! UDSEntry entry; ! UDSAtom atom; ! atom.m_uds = UDS_NAME; ! atom.m_str = name; ! entry.append(atom); ! mode_t mode = parsePermString("drwxr-xr-x"); ! atom.m_uds = UDS_FILE_TYPE; ! atom.m_long = mode & S_IFMT; // keep file type only ! entry.append( atom ); ! atom.m_uds = UDS_ACCESS; ! atom.m_long = mode & 07777; // keep permissions only ! entry.append( atom ); ! atom.m_uds = UDS_SIZE; ! atom.m_long = 0; ! entry.append( atom ); ! atom.m_uds = UDS_MODIFICATION_TIME; ! atom.m_long = arcFile->time(UDS_MODIFICATION_TIME); ! entry.append( atom ); ! dir->append(entry); ! } // create a new directory entry and add it.. dir = new UDSEntryList(); --- 492,525 ---- dir = addNewDir(path.left(path.findRev("/",-2)+1)); ! // add a new entry in the parent dir QString name = path.mid(path.findRev("/",-2)+1); name = name.left(name.length()-1); ! ! UDSEntry entry; ! UDSAtom atom; ! atom.m_uds = UDS_NAME; ! atom.m_str = name; ! entry.append(atom); ! mode_t mode = parsePermString("drwxr-xr-x"); ! atom.m_uds = UDS_FILE_TYPE; ! atom.m_long = mode & S_IFMT; // keep file type only ! entry.append( atom ); ! atom.m_uds = UDS_ACCESS; ! atom.m_long = mode & 07777; // keep permissions only ! entry.append( atom ); ! atom.m_uds = UDS_SIZE; ! atom.m_long = 0; ! entry.append( atom ); ! atom.m_uds = UDS_MODIFICATION_TIME; ! atom.m_long = arcFile->time(UDS_MODIFICATION_TIME); ! entry.append( atom ); ! dir->append(entry); ! // create a new directory entry and add it.. dir = new UDSEntryList(); *************** *** 548,590 **** UDSAtom atom; ! // permissions ! QString perm = nextWord(line); ! if(perm.length() != 10) perm = (perm.at(0)=='d')? "drwxr-xr-x" : "-rw-r--r--" ; ! mode_t mode = parsePermString(perm); ! atom.m_uds = UDS_FILE_TYPE; ! atom.m_long = mode & S_IFMT; // keep file type only ! entry.append( atom ); ! atom.m_uds = UDS_ACCESS; ! atom.m_long = mode & 07777; // keep permissions only ! entry.append( atom ); ! // ignore the next 2 fields ! nextWord(line); nextWord(line); ! // size ! long size = nextWord(line).toLong(); ! atom.m_uds = UDS_SIZE; ! atom.m_long = size; ! entry.append( atom ); ! // ignore the next 2 fields ! nextWord(line);nextWord(line); ! // date & time ! QString d = nextWord(line); ! QDate date(d.mid(0,4).toInt(),d.mid(4,2).toInt(),d.mid(6,2).toInt()); ! QTime time(d.mid(9,2).toInt(),d.mid(11,2).toInt(),d.mid(13,2).toInt()); ! atom.m_uds = UDS_MODIFICATION_TIME; ! atom.m_long = QDateTime(date,time).toTime_t(); ! entry.append( atom ); ! // name ! QString fullName = nextWord(line,'\n'); ! if( fullName.right(1) == "/" ) fullName = fullName.left(fullName.length()-1); ! if( !fullName.startsWith("/") ) fullName = "/"+fullName; ! QString path = fullName.left(fullName.findRev("/")+1); ! // set/create the directory UDSEntryList dir = dirDict.find(path); if(dir == 0) dir = addNewDir(path); ! QString name = fullName.mid(fullName.findRev("/")+1); ! atom.m_uds = UDS_NAME; ! atom.m_str = name; ! entry.append(atom); ! dir->append(entry); if(perm[0] == 'd'){ fullName=fullName+"/"; --- 534,593 ---- UDSAtom atom; ! QString perm; ! mode_t mode = 0666; ! size_t size = 0; ! time_t time = ::time(0); ! QString fullName; ! ! ! if(arcType == "zip"){ ! // permissions ! perm = nextWord(line); ! if(perm.length() != 10) perm = (perm.at(0)=='d')? "drwxr-xr-x" : "-rw-r--r--" ; ! mode = parsePermString(perm); ! // ignore the next 2 fields ! nextWord(line); nextWord(line); ! // size ! size = nextWord(line).toLong(); ! // ignore the next 2 fields ! nextWord(line);nextWord(line); ! // date & time ! QString d = nextWord(line); ! QDate qdate(d.mid(0,4).toInt(),d.mid(4,2).toInt(),d.mid(6,2).toInt()); ! QTime qtime(d.mid(9,2).toInt(),d.mid(11,2).toInt(),d.mid(13,2).toInt()); ! time = QDateTime(qdate,qtime).toTime_t(); ! // full name ! fullName = nextWord(line,'\n'); ! } ! ! if( fullName.right(1) == "/" ) fullName = fullName.left(fullName.length()-1); ! if( !fullName.startsWith("/") ) fullName = "/"+fullName; ! QString path = fullName.left(fullName.findRev("/")+1); ! // set/create the directory UDSEntryList dir = dirDict.find(path); if(dir == 0) dir = addNewDir(path); ! QString name = fullName.mid(fullName.findRev("/")+1); ! // file name ! atom.m_uds = UDS_NAME; ! atom.m_str = name; ! entry.append(atom); ! // file type ! atom.m_uds = UDS_FILE_TYPE; ! atom.m_long = mode & S_IFMT; // keep file type only ! entry.append( atom ); ! // file permissions ! atom.m_uds = UDS_ACCESS; ! atom.m_long = mode & 07777; // keep permissions only ! entry.append( atom ); ! // file size ! atom.m_uds = UDS_SIZE; ! atom.m_long = size; ! entry.append( atom ); ! // modification time ! atom.m_uds = UDS_MODIFICATION_TIME; ! atom.m_long = time; ! entry.append( atom ); ! ! dir->append(entry); if(perm[0] == 'd'){ fullName=fullName+"/"; *************** *** 611,617 **** if( KStandardDirs::findExe(cmd).isEmpty() ){ ! error(ERR_UNSUPPORTED_ACTION, ! i18n("%1 archives are not supported").arg(arcType) ); ! return false; } return true; --- 614,620 ---- if( KStandardDirs::findExe(cmd).isEmpty() ){ ! error(ERR_SLAVE_DEFINED,QString("I Love you !\n") );//ERR_UNSUPPORTED_PROTOCOL, ! //i18n("%1 archives are not supported").arg(arcType) ); ! return false; } return true; |
From: <ya...@us...> - 2003-08-16 14:29:14
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv2692 Modified Files: configure.in.in krusader.kdevprj Log Message: Changed version to 1.25-beta1 Index: configure.in.in =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/configure.in.in,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** configure.in.in 5 Jul 2003 16:57:47 -0000 1.10 --- configure.in.in 16 Aug 2003 14:15:47 -0000 1.11 *************** *** 1,5 **** #MIN_CONFIG(3) ! AM_INIT_AUTOMAKE(krusader,1.21-beta1) dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__ --- 1,5 ---- #MIN_CONFIG(3) ! AM_INIT_AUTOMAKE(krusader,1.25-beta1) dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__ Index: krusader.kdevprj =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader.kdevprj,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** krusader.kdevprj 2 Aug 2003 21:03:12 -0000 1.23 --- krusader.kdevprj 16 Aug 2003 14:15:47 -0000 1.24 *************** *** 24,31 **** cxxflags=\s-O0 -Wall ldadd=VFS/libVFS.a KViewer/libKViewer.a Dialogs/libDialogs.a BookMan/libBookMan.a -lm $(LIB_KPARTS) $(LIB_KFILE) $(LIB_KDEUI) $(LIB_KDECORE) $(LIB_QT) ! ldflags=\s \s [General] ! AMChanged=false author=Shie Erlich & Rafi Yanai configure_args=\s--build=i386-linux --host=i386-linux --target=i386-linux --prefix=/usr\s --- 24,31 ---- cxxflags=\s-O0 -Wall ldadd=VFS/libVFS.a KViewer/libKViewer.a Dialogs/libDialogs.a BookMan/libBookMan.a -lm $(LIB_KPARTS) $(LIB_KFILE) $(LIB_KDEUI) $(LIB_KDECORE) $(LIB_QT) ! ldflags=\s \s [General] ! AMChanged=true author=Shie Erlich & Rafi Yanai configure_args=\s--build=i386-linux --host=i386-linux --target=i386-linux --prefix=/usr\s *************** *** 40,44 **** short_info= sub_dir=krusader/ ! version=1.21-beta1 version_control=None workspace=1 --- 40,44 ---- short_info= sub_dir=krusader/ ! version=1.25-beta1 version_control=None workspace=1 |
From: <ma...@us...> - 2003-08-16 13:34:13
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1:/tmp/cvs-serv27568/krusader/Dialogs Modified Files: krspecialwidgets.cpp Log Message: added: infrastructure for quicksearch Index: krspecialwidgets.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krspecialwidgets.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** krspecialwidgets.cpp 29 Oct 2002 22:49:44 -0000 1.2 --- krspecialwidgets.cpp 16 Aug 2003 13:17:09 -0000 1.3 *************** *** 39,42 **** --- 39,44 ---- #include <kfileitem.h> #include <klocale.h> + #include <klineedit.h> + #include <kdebug.h> ///////////////////////////////////////////////////////////////////////////// *************** *** 63,68 **** ////////////////////////////////////////////////////////////////////////////// // This is the full constructor: use it for a mounted filesystem ! KRFSDisplay::KRFSDisplay(QWidget *parent, QString _alias, QString _realName, ! long _total, long _free) : QWidget(parent), totalSpace(_total), freeSpace(_free), alias(_alias), realName(_realName), mounted(true), empty(false), supermount(false) { --- 65,70 ---- ////////////////////////////////////////////////////////////////////////////// // This is the full constructor: use it for a mounted filesystem ! KRFSDisplay::KRFSDisplay(QWidget *parent, QString _alias, QString _realName, ! long _total, long _free) : QWidget(parent), totalSpace(_total), freeSpace(_free), alias(_alias), realName(_realName), mounted(true), empty(false), supermount(false) { *************** *** 151,155 **** } ! } //////////////////////////////////////////////////////////////////////////////// --- 153,157 ---- } ! } //////////////////////////////////////////////////////////////////////////////// *************** *** 189,193 **** } ! paint.setPen(Qt::black); // the pie --- 191,195 ---- } ! paint.setPen(Qt::black); // the pie *************** *** 208,211 **** --- 210,233 ---- slices.append(new KRPieSlice(sizeLeft*100/totalSize,Qt::yellow,"DEFAULT")); } + + //////////////////////////////////////////////////// + /////////////////// KrQuickSearch ///////////////// + //////////////////////////////////////////////////// + KrQuickSearch::KrQuickSearch(QWidget *parent, const char * name): KLineEdit(parent,name) {} + + void KrQuickSearch::myKeyPressEvent(QKeyEvent *e) { + switch (e->key()) { + case Key_Up: + case Key_Down: + case Key_Home: + case Key_End: + emit stop(e); + break; + default: + kdWarning()<<"got " << e->text() << endl; + keyPressEvent(e); + } + } + #include "krspecialwidgets.moc" |
From: <ma...@us...> - 2003-08-16 13:21:40
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv28061 Modified Files: Krusader.kdevelop Log Message: Index: Krusader.kdevelop =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/Krusader.kdevelop,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Krusader.kdevelop 15 Jul 2003 12:06:24 -0000 1.11 --- Krusader.kdevelop 16 Aug 2003 13:21:37 -0000 1.12 *************** *** 83,87 **** </cppsupportpart> <kdevclassview> ! <folderhierarchy>false</folderhierarchy> <depthoffolders>2</depthoffolders> </kdevclassview> --- 83,87 ---- </cppsupportpart> <kdevclassview> ! <folderhierarchy>true</folderhierarchy> <depthoffolders>2</depthoffolders> </kdevclassview> |
From: <ma...@us...> - 2003-08-16 13:20:25
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv27925 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** ChangeLog 12 Aug 2003 22:05:26 -0000 1.60 --- ChangeLog 16 Aug 2003 13:20:22 -0000 1.61 *************** *** 1,5 **** ====================== - ADDED: new Hungarian translation, thanks to Kukk Zoltán ADDED: Finally, the new bookmark system is here! courtasy of Jan Halasa FIXED: mountMan bug - didn't allow to umount/mount filesystem with trailing / FIXED: width of modified column for i18n (thanks to heiner) --- 1,6 ---- + 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) |
From: <ma...@us...> - 2003-08-16 13:20:09
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv27853 Modified Files: README Log Message: Index: README =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/README,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** README 18 Jul 2003 11:08:17 -0000 1.9 --- README 16 Aug 2003 13:20:06 -0000 1.10 *************** *** 1,30 **** ! Krusader 1.21-beta1 =================== ! Welcome to the latest unstable release of krusader. ! This one has a lot of bugfixes and some new features. ! Some of the highlights are: ! * new KIO slave for handling archives. This is a work in progress, which ! takes krusader's archive handling to new places ;-) The NEW mechanism ! handles tar,gz,bz2 and zip, and accessing these archives should be much ! faster. Notice that this feature is really beta. A known issue is that ! handling really large ZIP files is slow (>500MB). ! * Krusader now uses in-place renaming (thanks to Heiner Eichmann) ! * Support for multi-file properties dialog ! * Total-Commander-like directory selection. Select a directory using SPACE ! to check out this feature (thanks to Heiner Eichmann) ! * A much requested feature: opening the left/right bookmark list (done using ! alt+left/right arrow) is now an action. You can change the keyboard shortcuts ! for it. ! * Fix for panel flicker bug ! * Fix for search module ! * Fix for using KRename with files containing spaces (thanks to Tobias Vogele) ! * Updated translations ! * Many i18n issues (thanks to Frank Schoolmeesters) ! * A lot of usability issues were fixed (thanks to Mikolaj Machowski) For more information, please check the changelog. Notice: if you've got bugs to report, please do it using krusader's website, and ! not using KDE's bugzilla (bugs.kde.org). as always, enjoy --- 1,15 ---- ! Krusader 1.25-beta1 =================== ! Welcome. ! The focus of this release in the new bookmark manager (thanks to Jan Halasa). ! The new system offers support for local AND remote bookmarks, so bookman and ! remoteman are now obsolete. Please test it, and let us know. + Also, as usual some bugfixes, a new Hungarian translation and two updated ones. For more information, please check the changelog. + Notice: if you've got bugs to report, please do it using krusader's website, and ! not using KDE's bugzilla (bugs.kde.org). as always, enjoy |