
Various KDE 1.-4. Improvements
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Plugin for the konqueror navigation panel that shows a sidebar with links and informations. Unlike other sidebars, doesn't use html.
17 years ago
Version 0.4.1 - 17-11-2003
* Fixed compilation bug with KDE 3.1.x
* Fixed weird bug with roll-over changing colors..
Now the the rollovers are disabled and all works fine...
Version 0.4 - 26/10/2003
* Actions panel now uses standard kde actions too.
* Device panel load the list of devices using the device:/ ioslave
* bugfixing
Version 0.3
* Added "Actions" panel with contextual actions
(Still buggy and only with few actions,
ideas are welcome)
* The layout of panel (open/close) is saved
* Added support for catalogue files (translations)
* Fixed color issues
Version 0.2.1
* Fixed a compilation error
Version 0.2
* Panels can be hidden
* Added metainfo data visualisation
* Items with no meaning in Details panel are hidden
* Rollover effects
Version 0.1
* Fixed a compilation error
* Initial version 0.1
17 years ago
Version 0.4.1 - 17-11-2003
* Fixed compilation bug with KDE 3.1.x
* Fixed weird bug with roll-over changing colors..
Now the the rollovers are disabled and all works fine...
Version 0.4 - 26/10/2003
* Actions panel now uses standard kde actions too.
* Device panel load the list of devices using the device:/ ioslave
* bugfixing
Version 0.3
* Added "Actions" panel with contextual actions
(Still buggy and only with few actions,
ideas are welcome)
* The layout of panel (open/close) is saved
* Added support for catalogue files (translations)
* Fixed color issues
Version 0.2.1
* Fixed a compilation error
Version 0.2
* Panels can be hidden
* Added metainfo data visualisation
* Items with no meaning in Details panel are hidden
* Rollover effects
Version 0.1
* Fixed a compilation error
* Initial version 0.1
p0z3r
17 years ago
cheers,
-p0z3r
Report
p0z3r
17 years ago
What I did was mv ~/.sidebar ~/.sidebar.bak to remove the kontexbar from loading.
Report
ThEOnE
17 years ago
Now i want know how i could enable the acompanion words in the sidebar i.e. in the screenshot the word for the ksidebar is "sidebar". I want know how i could enable this feature, or if i need install an extra package or anything.
Thanks.
Report
ThEOnE
17 years ago
I trying to install and when i try to compile happend this :
details.cpp: In member function `void Details::urlChanged(const KURL&)':
details.cpp:249: no matching function for call to `KFileMetaInfo::KFileMetaInfo
(KURL&)'
/usr/include/kde/kfilemetainfo.h:920: candidates are:
KFileMetaInfo::KFileMetaInfo(const KFileMetaInfo&)
/usr/include/kde/kfilemetainfo.h:915:
KFileMetaInfo::KFileMetaInfo()
/usr/include/kde/kfilemetainfo.h:909:
KFileMetaInfo::KFileMetaInfo(const QString&, const QString& = QString::null,
unsigned int = Fastest)
make[2]: *** [details.lo] Error 1
make[2]: Leaving directory `/home/ronald/Desktop/ksidebar-0.3/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/ronald/Desktop/ksidebar-0.3'
make: *** [all] Error 2
How i could fix this...
Report
BOSSoNe
17 years ago
KFileMetaInfo( (KURL &)mUrl );
by:
KFileMetaInfo( ((KURL &)mUrl).path() );
Report
ThEOnE
17 years ago
actions.cpp: In member function `void Actions::clicked(s_action&)':
actions.cpp:201: no method `KonqOperations::newDir'
make[2]: *** [actions.lo] Error 1
make[2]: Leaving directory `/home/ronald/Desktop/SOURCE/ksidebar-0.3/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/ronald/Desktop/SOURCE/ksidebar-0.3'
make: *** [all] Error 2
The line 201 in actions.cpp is the next :
KonqOperations::newDir( (QWidget *)0, mUrl);
Please if u know about how to fix this please tell me.
Report
dcpark
17 years ago
Report
gordin
17 years ago
(Gentoo kde3.1.4)
Report
yglodt
17 years ago
Report
yglodt
17 years ago
debian stable packages anyone...?
Report
Tschaeck
17 years ago
some extra detail-features would be cool. for example a thumbnailpreview, if the selected file is an image.
Report
matteo
17 years ago
Report
madpenguin8
17 years ago
Report
matteo
17 years ago
Report
madpenguin8
17 years ago
Report
ben
17 years ago
after install what should I do to view the sidebar ?
Report
Tschaeck
17 years ago
you can do this in the configurationmenu of your sidebar.
Report
cmf
17 years ago
details.cpp:228: no matching function for call to `KFileMetaInfo::KFileMetaInfo(const KURL&)'
/usr/include/kfilemetainfo.h:926: candidates are: KFileMetaInfo::KFileMetaInfo(const KFileMetaInfo&)
/usr/include/kfilemetainfo.h:921: KFileMetaInfo::KFileMetaInfo()
/usr/include/kfilemetainfo.h:915: KFileMetaInfo::KFileMetaInfo(const QString&, const QString& = QString::null, unsigned int = Fastest)
make[2]: *** [details.lo] Error 1
make[2]: Leaving directory `/home/lou/Desktop/ksidebar-0.2/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/lou/Desktop/ksidebar-0.2'
make: *** [all] Error 2
KSidebar 0.2
Report
dcpark
17 years ago
from
KFileMetaInfo *metainfo = new KFileMetaInfo( url );
to
KFileMetaInfo *metainfo = new KFileMetaInfo( (QString&) url );
this will fix the compilation problem. :)
the patch goes like this:
--
diff -uNr ksidebar-0.2.orig/src/details.cpp ksidebar-0.2/src/details.cpp
--- ksidebar-0.2.orig/src/details.cpp 2003-09-27 06:17:52.000000000 +0900
+++ ksidebar-0.2/src/details.cpp 2003-09-27 06:37:49.000000000 +0900
@@ -225,7 +225,7 @@
sInfo[i]->hide();
}
- KFileMetaInfo *metainfo = new KFileMetaInfo( url );
+ KFileMetaInfo *metainfo = new KFileMetaInfo( (QString&) url );
if ( metainfo->isEmpty() )
return;
QStringList list = metainfo->preferredKeys();
--
Report
matteo
17 years ago
However, the casting should be done to (KURL &) to access metainfo even on network protocols.
Report
pregopresto
17 years ago
prego
Report
scream
17 years ago
details.cpp: In member function `void Details::urlChanged(const KURL&)':
details.cpp:228: no matching function for call to `KFileMetaInfo::KFileMetaInfo
(const KURL&)'
/opt/kde3/include/kfilemetainfo.h:920: candidates are:
KFileMetaInfo::KFileMetaInfo(const KFileMetaInfo&)
/opt/kde3/include/kfilemetainfo.h:915:
KFileMetaInfo::KFileMetaInfo()
/opt/kde3/include/kfilemetainfo.h:909:
KFileMetaInfo::KFileMetaInfo(const QString&, const QString& = QString::null,
unsigned int = Fastest)
Could you please fix this?
Report
scream
17 years ago
Report
matteo
17 years ago
Report
kol
17 years ago
http://www.kdelook.org/content/show.php?content=8015
You can change the design & customize to your liking very easily.
Report