Today's date doesn't change
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
| Indicator Date and Time |
Fix Released
|
Low
|
Unassigned | |
| indicator-datetime (Ubuntu) |
Low
|
Michael Terry |
Bug Description
Binary package hint: indicator-datetime
If I suspend my computer and wake up the next day, the date label in the indicator-datetime menu hasn't changed (to be clear, I'm not talking about the label in the panel, but in the dropdown menu).
I don't know if it works correctly if left continuously going, but I know it happens upon a suspend/resume.
ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: indicator-datetime 0.2.2-0ubuntu1
ProcVersionSign
Uname: Linux 2.6.38-8-generic x86_64
Architecture: amd64
Date: Wed Apr 13 10:15:46 2011
ProcEnviron:
LANGUAGE=en_US:en
PATH=(custom, user)
LANG=en_GB.utf8
LC_MESSAGES=
SHELL=/bin/bash
SourcePackage: indicator-datetime
UpgradeStatus: Upgraded to natty on 2010-09-28 (197 days ago)
Related branches
- Mikkel Kamstrup Erlandsen (community): Approve on 2011-04-14
-
Diff: 128 lines (+43/-40)2 files modifiedsrc/datetime-service.c (+43/-0)
src/indicator-datetime.c (+0/-40)
- Ken VanDine: Pending requested 2011-10-13
-
Diff: 301 lines (+59/-27) (has conflicts)8 files modifiedChangeLog (+32/-0)
configure (+10/-19)
configure.ac (+1/-2)
data/datetime-dialog.ui (+0/-1)
debian/changelog (+14/-0)
debian/control (+0/-2)
src/datetime-prefs.c (+0/-1)
src/datetime-service.c (+2/-2)
Michael Terry (mterry) wrote : | #1 |
Michael Terry (mterry) wrote : | #2 |
Changed in indicator-datetime (Ubuntu): | |
assignee: | nobody → Michael Terry (mterry) |
status: | New → In Progress |
Changed in indicator-datetime: | |
status: | New → Fix Committed |
milestone: | none → 0.2.3 |
Changed in indicator-datetime: | |
status: | Fix Committed → Fix Released |
Changed in indicator-datetime: | |
importance: | Undecided → Low |
Changed in indicator-datetime (Ubuntu): | |
importance: | Undecided → Low |
status: | In Progress → Fix Committed |
Launchpad Janitor (janitor) wrote : | #3 |
This bug was fixed in the package indicator-datetime - 0.2.3-0ubuntu1
---------------
indicator-datetime (0.2.3-0ubuntu1) natty; urgency=low
* New upstream release.
∘ Use GTK directly for detecting when the menu appears and disappears
to reset the date (LP: #649800)
∘ Handle items being removed from the locations list by choosing
another item in the list (LP: #740948)
∘ Check for resume in the service and update the label as well
(LP: #759854)
-- Ted Gould <email address hidden> Thu, 14 Apr 2011 14:51:20 -0500
Changed in indicator-datetime (Ubuntu): | |
status: | Fix Committed → Fix Released |
Benno Hoelle (ender-error) wrote : | #4 |
same Problem with newer indicator-
Workaround after every suspend:
kill $(pidof indicator-
root@lucie:
Description: Ubuntu 12.04.4 LTS
Release: 12.04
root@lucie:
indicator-datetime:
Installiert: 0.3.94-0ubuntu2
Kandidat: 0.3.94-0ubuntu2
Versionstabelle:
*** 0.3.94-0ubuntu2 0
500 http://
100 /var/lib/
OK, I know why this is happening. We schedule an update for the menu using g_timeout_ add_seconds, with a calculated time one second after midnight. But that function pauses counting down while asleep. So if the user suspends, the update will be offset by however long the user suspended for.
Coming up with a patch.