diff options
-rw-r--r-- | CHANGELOG | 17 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | UPGRADE | 4 | ||||
-rw-r--r-- | phpfspot.class.php | 2 |
4 files changed, 23 insertions, 2 deletions
@@ -1,3 +1,20 @@ +phpfspot (1.3) + + * fixed auto-rotation when EXIF Orientation header is set. + * removed much of HTML tables to speed up GUI. + * key navigation (next/prev photo, photo index, reset all). + * CSS cleanup + * fixed incorrect time-range when using external-url to enter phpfspot. + * display also photos which have no tags. + * gen_thumbs.php has a new overwrite-thumbnails option. + * fixed image handling which were slender enough, but too high. + * max. thumb height can now be changed in config settings. + * fix for PDO sqlite when trying to fetch one single row (contributed by + Arun Persaud). + * fix for incorrect SQL query (contributed by Arun Persaud). + + -- Andreas Unterkircher <unki@netshadow.at> Sat, 12 Jan 2008 11:00:00 +0100 + phpfspot (1.2) * Show only user-definied tags and pictures (contributed by Arun Persaud). @@ -1,5 +1,5 @@ Package Name: phpfspot -Version: 1.2 +Version: 1.3 Author: Andreas Unterkircher <unki@netshadow.at> Website: http://oss.netshadow.at Desc: dynamic PHP gallery for F-Spot @@ -1,3 +1,7 @@ +== Upgrading from 1.2 == + + * nothing special necessary yet. + == Upgrading from 1.1 == * New configuration option "show_tags". But not mandatory to be diff --git a/phpfspot.class.php b/phpfspot.class.php index c811720..c06ef24 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -47,7 +47,7 @@ class PHPFSPOT { /* set application name and version information */ $this->cfg->product = "phpfspot"; - $this->cfg->version = "1.2"; + $this->cfg->version = "1.3"; $this->sort_orders= array( 'date_asc' => 'Date ↑', |