Bug 142848 - Timezone needs to go to GMT +13
Summary: Timezone needs to go to GMT +13
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Plugin-Generic-GeolocationEdit (show other bugs)
Version: unspecified
Platform: Slackware Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-03-11 22:14 UTC by Fran McGowan
Modified: 2018-03-23 12:08 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In: 0.1.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Fran McGowan 2007-03-11 22:14:38 UTC
Version:            (using KDE KDE 3.5.4)
Installed from:    Slackware Packages
OS:                Linux

In New Zealand daylight savings time we are at GMT +13.
Without adjusting the time of the photo (really do not want to do this) I cannot geolocalize the pics.
Comment 1 caulier.gilles 2007-03-11 23:07:12 UTC
Fran,

I can add GMT+13, no problem...

Is GMT-13 exist ?

Gilles
Comment 2 Fran McGowan 2007-03-11 23:20:04 UTC
In the Geolocalization - Correlator - I can only see from GMT -12 to GMT +12
Comment 3 caulier.gilles 2007-03-12 09:47:31 UTC
SVN commit 641670 by cgilles:

kipi-plugins from trunk : GPS Sync dialog : add missing GMT+13 and GMT+14 time zone
BUG: 142848

 M  +4 -2      gpssyncdialog.cpp  
 M  +1 -1      gpssyncdialog.h  


--- trunk/extragear/libs/kipi-plugins/gpssync/gpssyncdialog.cpp #641669:641670
@@ -1,5 +1,5 @@
 /* ============================================================
- * Authors: Gilles Caulier <caulier dot gilles at kdemail dot net>
+ * Authors: Gilles Caulier <caulier dot gilles at gmail dot com>
  * Date   : 2006-05-16
  * Description : a plugin to synchronize pictures with 
  *               a GPS device.
@@ -209,6 +209,8 @@
     d->timeZoneCB->insertItem(i18n("GMT+10:00"), 22);
     d->timeZoneCB->insertItem(i18n("GMT+11:00"), 23);
     d->timeZoneCB->insertItem(i18n("GMT+12:00"), 24);
+    d->timeZoneCB->insertItem(i18n("GMT+13:00"), 25);
+    d->timeZoneCB->insertItem(i18n("GMT+14:00"), 26);
     QWhatsThis::add(d->timeZoneCB, i18n("<p>Sets the time zone of the camera during "
                     "picture shooting, so that the time stamps of the pictures "
                     "can be converted to GMT to match the GPS time"));
@@ -253,7 +255,7 @@
                                             "(c) 2006-2007, Gilles Caulier");
 
     d->about->addAuthor("Gilles Caulier", I18N_NOOP("Author and Maintainer"),
-                        "caulier dot gilles at kdemail dot net");
+                        "caulier dot gilles at gmail dot com");
 
     KHelpMenu* helpMenu = new KHelpMenu(this, d->about, false);
     helpMenu->menu()->removeItemAt(0);
--- trunk/extragear/libs/kipi-plugins/gpssync/gpssyncdialog.h #641669:641670
@@ -1,5 +1,5 @@
 /* ============================================================
- * Authors: Gilles Caulier <caulier dot gilles at kdemail dot net>
+ * Authors: Gilles Caulier <caulier dot gilles at gmail dot com>
  * Date   : 2006-05-16
  * Description : a plugin to synchronize pictures with 
  *               a GPS device.