
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
Is a plasma runner that searches in Chromium/Chrome's bookmarks. Ideal for all kde users that surf the net with Chrome/Chromium that now is a little more integrated with KDE.
NOTE: If you are manually upgrading from version 0.1 to 0.2 remember to remove first old one (in particular remove:
/usr/share/kde4/services/browsechromiumbookmarks.desktop
/usr/share/kde4/services/browsechromiumbookmarks_config.desktop
replace /usr/share/kde4 with /usr/share/kde if the case)
8 years ago
0.3:
* added trigger word: bcb (default enabled)
* fixed match
* fixed kconfiggroup name
0.2 :
* added config dialog:
- now it is possible choose which browser to use (chromium or chrome) or define a custom Bookmarks file (as suggested by archtaku)
- added translation support
- added italian translation
0.1 : Initial Release
8 years ago
0.3:
* added trigger word: bcb (default enabled)
* fixed match
* fixed kconfiggroup name
0.2 :
* added config dialog:
- now it is possible choose which browser to use (chromium or chrome) or define a custom Bookmarks file (as suggested by archtaku)
- added translation support
- added italian translation
0.1 : Initial Release
bernardinowilliams
7 years ago
I had to install gettext and libqjson-dev to compile it. No problems.
I get an error, however, on make install:
[email protected]:~/sda3/SYSTEM/SOFT/KDE/plasma-runner-browsechromiumbookmarks/build$ sudo make install
Error: syntax error in /home/darwin/sda3/SYSTEM/SOFT/KDE/plasma-runner-browsechromiumbookmarks/build/kcm_krunner_browsechromiumbookmarks_automoc.cpp.files
make[2]: *** [CMakeFiles/kcm_krunner_browsechromiumbookmarks_automoc] Error 1
make[1]: *** [CMakeFiles/kcm_krunner_browsechromiumbookmarks_automoc.dir/all] Error 2
make: *** [all] Error 2
Report
aaronlewis1989
9 years ago
http://pastebin.mozilla.org/1206046
Report
horayy
9 years ago
Report
KZKG-Gaara
9 years ago
http://kde4life.wordpress.com/2011/04/15/mejor-integracion-de-chromium-en-kde-con-chromiumbookmarks/
Report
archtaku
9 years ago
2) Would be nice to configure where to have it look for bookmarks. I use a build of the Chromium dev branch which stores its configuration files in a different directory from the default location (so that it can be installed alongside the production version). In the meantime, I just created a symlink for ~/.config/chromium to point to that directory.
Report
ZomAur
9 years ago
find_package(QJson REQUIRED)
Should be
find_package(QJSON REQUIRED)
Report
archtaku
9 years ago
Thanks! I've been waiting for something like this and was considering teaching myself how to use cmake, et al. to write something like it.
Report
nerdykid
9 years ago
I have successfully compiled and installed the plugin, and I ran kbuildsycoca4 and restarted krunner. The plugin shows up in krunners list of plugins, but doesn't seem to work. Am I doing anything wrong?
Report
virgolus
10 years ago
Report
gcala
10 years ago
the working link is
http://kde-apps.org/CONTENT/content-files/137685-plasma-runner-browsechromiumbookmarks-0.1.tar.bz2
Report
gcala
10 years ago
Report
virgolus
10 years ago
I've extrat the archive,
mkdir build,
cd build
cmake ..
checkinstall
no errors but I've killed krunner and relaunched but when I search a chromium bookmarks I find nothing and in krunner plugins I don't view your plugin.
What did I do wrong?
bye
Report
gcala
10 years ago
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`
make
checkinstall
if checkinstall fails try a simple `make install`
Report