From c8f20ffe76df4c66fffe2a8c2e115ca8f0fe160f Mon Sep 17 00:00:00 2001 From: gc Date: Wed, 5 Mar 2008 22:26:34 +0000 Subject: [PATCH] *** empty log message *** --- INSTALL | 6 +++--- README | 9 ++++++++- bin/booh | 8 ++++---- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/INSTALL b/INSTALL index 8b0fcf4..f6d80e4 100644 --- a/INSTALL +++ b/INSTALL @@ -17,9 +17,8 @@ This software requires for compiling: And for runtime: - convert (from ImageMagick) - -For runtime, not strictly needed but nice to have: - +- identify (from ImageMagick) +- exif - mplayer (not strictly needed if you won't manipulate any video) @@ -39,6 +38,7 @@ And type this as superuser: $ make install If you want to package as normal user to another root: + $ ruby_archdir=`ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']"` $ libdir=`ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']"` $ rm -rf ${buildroot} diff --git a/README b/README index 03f9d83..2a43615 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ [[ Booh ]] -``The Web-Album of choice for discriminating Linux users'' +''The Web-Album of choice for discriminating Linux users'' Booh stands for Best web-album Of the world, Or your money back, Humerus. @@ -44,6 +44,13 @@ Highlights: - very advanced capabilities by keyboard shortcuts and mouse gestures - input captions, rotate, reorder and remove images FAST + classifier: + +- FAST loading of photos and videos into thumbnails (loads about + 5 2.4 MB photos per second on a p4) +- FAST navigation while loading in background, preloading of + surrounding thumbnails +- keyboard shortcuts for navigation and classifying Performance improvements thanks to SMP support: diff --git a/bin/booh b/bin/booh index c9439e8..663938f 100755 --- a/bin/booh +++ b/bin/booh @@ -3320,8 +3320,8 @@ def new_album nperrow = nperrows.find { |e| e[:widget].active? }[:value] nperpage = nperpage_model.get_value(nperpagecombo.active_iter, 1) opt432 = optimize432.active? - madewith = madewithentry.text.gsub('"', '"').gsub('\'', ''') - indexlink = indexlinkentry.text.gsub('"', '"').gsub('\'', ''') + madewith = madewithentry.text.gsub('\'', ''') #- because the parameters to booh-backend are between apostrophes + indexlink = indexlinkentry.text.gsub('\'', ''') end if src_nb_thread Thread.kill(src_nb_thread) @@ -3521,8 +3521,8 @@ def properties save_opt432 = optimize432.active? save_nperrow = nperrows.find { |e| e[:widget].active? }[:value] save_nperpage = nperpage_model.get_value(nperpagecombo.active_iter, 1) - save_madewith = madewithentry.text.gsub('"', '"').gsub('\'', ''') - save_indexlink = indexlinkentry.text.gsub('"', '"').gsub('\'', ''') + save_madewith = madewithentry.text.gsub('\'', ''') #- because the parameters to booh-backend are between apostrophes + save_indexlink = indexlinkentry.text.gsub('\'', ''') dialog.destroy if ok && (save_theme != theme || save_limit_sizes != limit_sizes || save_opt432 != opt432 || save_nperrow != nperrow || save_nperpage != nperpage || save_madewith != madewith || save_indexlink != indexlinkentry || save_multilanguages_value != multilanguages_value) -- 2.30.4