~tempo-openerp/+junk/hamster-tempo-precise-pangolin_dev

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
===============
Version 2.91.2
===============
  * experimental trophy support (to try out need to install the achievement
    service from https://github.com/tbaugis/gnome-achievements)
  * improvements in HTML reports

  Updated translations:
    * ar (Khaled Hosny)
    * bq (Damyan Ivanov)
    * ca (Gil Forcada)
    * ca@valencia (Gil Forcada)
    * cs (Adrian Guniš)
    * da (Kenneth Nielsen)
    * de (Christian Kirbach)
    * el (Michael Kotsarinis)
    * en_GB (Bruce Cowan)
    * es (Jorge González)
    * et (Ivar Smolin)
    * fr (Bruno Brouard)
    * gl (Fran Dieguez)
    * he (Yaron Shahrabani)
    * hu (Gabor Kelemen)
    * it (Milo Casagrande)
    * ja (Takayuki KUSANO)
    * ko (Changwoo Ryu)
    * lt (Žygimantas Beručka)
    * pl (Piotr Drąg)
    * pt_BR (Og Maciel)
    * pt (Duarte Loreto)
    * sl (Andrej Žnidaršič)
    * sr (Милош Поповић)

===============
Version 2.31.90
===============
  * maintaining selection on refresh in a more sane manner
  * self-monitor the database not only for updates but also for remove/create
    (solves problems with some synchronization tools)
  * documentation updates
  * fixed the global hotkey. require gnome-keybindings (gnome-control-center-dev)
    package as the hotkey is part of expected functionality

  Updated translations:
    * es (Jorge González)
    * nb (Kjartan Maraas)
    * ro (Lucian Adrian Grijincu)

===============
Version 2.31.6
===============
  * the top graph in overview is now interactive and allows zooming in and out
  * sqlite utf-8 case sensitivity workarounds for queries
  * hamster's docky helper installed together with hamster
  * using full text search in the overview window now
  * hopefully activity trees now behave better on refresh

  Updated translations:
    * de (Mario Blättermann)
    * es (Jorge González)
    * sl (Matej Urbančič)
    * ta (Dr.T.Vasudevan)
    * zh_CN (Tao Wang)
    * gl (Fran Diéguez)
    * he (Yaron Shahrabani)
    * zh_TW (Cheng-Chia Tseng)
    * zh_HK (Cheng-Chia Tseng)
    * nb (Kjartan Maraas)


===============
Version 2.31.5
===============
  * adjustments for custom widgets to better work with themes
  * if dialog windows are called from commandline, make sure they shut down
    properly

  Update translation
    * ee (Ivar Smolin)
    * es (Jorge González)
    * fr (Jean-Philippe Fleury)
    * gl (Fran Diéguez)

  Updated documentation translations
    * zh_CN (TeliuTe)

===============
Version 2.31.4
===============
  * overview gets a menu, drops toolbars and now supports date range browsing
  * adjustments to starts and ends graph in statistics (should be more accurate)
  * performance updates in graphics
  * html report was looking in the wrong place for the template

  Updated translations
    * es (Jorge González)
    * et (Ivar Smolin)
    * gl (Fran Diéguez)
    * he (Yaron Shahrabani)
    * lv (Anita Reitere)
    * nb (Kjartan Maraas)

===============
Version 2.31.3.2
===============
  * respecting SYSCONFDIR environment variable to determine where to store
    gconf schema (bug 620965)

===============
Version 2.31.3.1
===============
  * including generated help pages in the tarball so that they appear in
    library.gnome.org

===============
Version 2.31.3
===============
  * dropped in-house global hotkey management in favour to Gnome's global
    hotkeys
  * HTML report template now can be overridden from $HOME folder. instructions
    can be found in the report footer
  * remembering path of last saved report
  * moved build system from autotools to waf

  Updated translations
    * cs (Adrian Guniš)
    * es (Jorge González)
    * et (Ivar Smolin)
    * gl (Fran Diéguez)
    * he (Yair Hershkovitz)
    * nb (Kjartan Maraas)
    * sl (Matej Urbančič)
    * zh_CN (Ray Wang)

===============
Version 2.31.2
===============
  * optional integration with gtg (via preferences)
  * all kinds of bugfixes

  Updated translations
    * ee (Ivar Smolin)
    * en@shaw (Thomas Thurman)
    * es (Jorge González)

===============
Version 2.31.1.2
===============
  * hamster-service had not been packed in the tarball

===============
Version 2.31.1.1
===============
  * forgot to pull in translations

===============
Version 2.31.1
===============
  * application has been split up in back-end d-bus daemon and clients
  * edit activity preview widget got some love
  * minor bugfixes from 2.30 release

  Updated translations
    * es (Jorge González)
    * sl (Matej Urbančič)
    * gl (Fran Diéguez)


===============
Version 2.30.0
===============
  Updated translations
    * ca (Gil Forcada)
    * da (Kenneth Nielsen)
    * et (Mattias Põldaru)
    * eu (Iñaki Larrañaga Murgoitio)
    * fi (Tommi Vainikainen)
    * hu (Gabor Kelemen)
    * lt (Gintautas Miliauskas)
    * lv (Toms Bauģis)
    * pa (A S Alam)
    * pt (Duarte Loreto)
    * ru (Alexander Saprykin)
    * sv (Daniel Nylander)
    * uk (Maxim Dziumanenko)

  Updated documentation translations
    * el (Marios Zindilis)
    * fr (Claude Paroz)
    * zh_HK (Chao-Hsiung Liao)
    * zh_TW (Chao-Hsiung Liao)


===============
Version 2.29.92
===============
  Bug fixes
    * depend on gnome-python-desktop to fulfill wnck-python dependency
    * minor bug with screen refresh after deletion

  Updated translations
    * bg (Alexander Shopov)
    * de (Mario Blättermann)
    * el (Kostas Papadimas)
    * en_GB (Bruce Cowan)
    * es (Jorge González)
    * it (Milo Casagrande)
    * nb (Kjartan Maraas)
    * pl (Piotr Drąg)

  Updated documentation translations
    * en (Bruce Cowan, Milo Casagrande)
    * es (Jorge González)

===============
Version 2.29.91
===============
  * bug fixes - avoiding blank entries, not reusing fact ids; other details

  Updated translations
    * bg (Alexander Shopov)
    * cs (Adrian Guniš)
    * de (Mario Blättermann)
    * et (Ivar Smolin)
    * fr (Bernard Opic)
    * gl (Fran Diéguez)
    * pt_BR (Rodrigo Flores)
    * ro (Lucian Adrian Grijincu)
    * ta (Dr,T,Vasudevan)
    * zh_HK (Chao-Hsiung Liao)
    * zh_TW (Chao-Hsiung Liao)

  Updated documentation translations
    * cs (Adrian Guniš)
    * de (Christian Kirbach)


===============
Version 2.29.90
===============
  Updated translations
    * bn (Israt Jahan)
    * es (Jorge González)
    * sl (Matej Urbančič)
    * zh_CN (Ray Wang)

  Updated documentation translations
    * es (Jorge González)

===============
Version 2.29.6
===============
  * workspace tracking - switch activity, when switching desktops
    (Ludwig Ortmann, Toms Baugis, Patryk Zawadzki)
  * chart improvements - theme friendly and less noisier
  * for those without GNOME panel there is now a standalone version, accessible
    via Applications -> Accessories -> Time Tracker
  * overview window remembers position
  * maintaining cursor on the selected row after edits / refreshes
    (unimportant, but very convenient)
  * descriptions once again in the main input field, delimited by comma
  * activity suggestion box now sorts items by recency (Patryk Zawadzki)

  Updated translations
    * es (Jorge González)
    * eu (Iñaki Larrañaga Murgoitio)
    * nb (Kjartan Maraas)
    * sv (Daniel Nylander)
    * zh_CN (Tao Wei)


===============
Version 2.29.5
===============
  * searching
  * simplified save report dialog, thanks to the what you see is what you report
    revamp
  * overview/stats replaced with activities / totals and stats accessible from
    totals
  * interactive graphs to drill down in totals
  * miscellaneous performance improvements
  * pixel-perfect graphs


  Updated translations
   * es (Jorge González)
   * et (Ivar Smolin)
   * sl (Matej Urbančič)
   * sv (Daniel Nylander)
   * uk (Maxim V. Dziumanenko)

===============
Version 2.29.4
===============
  * overview window overhaul(still in progress)
  * more progress on tag front (now showing in lists)

  Updated translations
   * es (Jorge González)
   * et (Ivar Smolin)
   * he (Yair Hershkovitz)
   * sl (Matej Urbančič)
   * zh_CN (Funda Wang)

===============
Version 2.29.3
===============
  * partial tag support (adding to a fact and editing autocomplete list,
    no reports yet)
  * fixed glitches when editing ongoing task
  * improved save report dialog
  * better autocomplete for the entries

 Updated translations
  * en@shaw (Thomas Thurman)
  * es (Jorge González)
  * et (Ivar Smolin)
  * sl (Matej Urbančič)
  * zh_CN (Ray Wang)

===============
Version 2.29.2
===============
  * fixed bug 599343 - the charts are now back again (for those who had lost them)
  * hamster midnight is now a preference
  * when in panel, printing uncaugt errors to .xsession-errors
  * when looking for ongoing task, don't look into the future
    (causes some mad durations and is generally impractical)
  * new dbus method getCurrentActivity that returns just the name and category
  * fixed problems with hamster interfering with screensaver hibernation code
  * database MOVED to the xdg home (~/.local)
  * in reports inlude also activities without category
  * set start time to the end of the last activity if adding previous activity
    for today
  * fixes to the dropdown in compiz (not spanning over virtual desktops anymore)
  * in dropdown added end time and dropped the stripes (too much noise already)

 Updated translations:
  * ca (Gil Forcada)
  * en_GB (Bruce Cowan)
  * es (Jorge González)
  * et (Mattias Põldaru)
  * it (Milo Casagrande)
  * pl (Tomasz Dominikowski)
  * ro (Mișu Moldovan)
  * sl (Matej Urbančič)
  * sv (Daniel Nylander)
  * ta (Dr.T.Vasudevan )
  * zh_CN (Ray Wang)


===============
Version 2.28.0
===============
 Updated translations:
  * as (Amitakhya Phukan)
  * bg (Alexander Shopov)
  * bn_IN (Runa Bhattacharjee)
  * da (Ask Hjorth Larsen)
  * de (Hendrik Richter)
  * en_GB (Bruce Cowan)
  * fi (Tommi Vainikainen)
  * gl (Antón Méixome)
  * gu (Ankit Patel)
  * hi (Rajesh Ranjan)
  * hu (Gabor Kelemen)
  * it (Milo Casagrande)
  * ja (Takeshi AIHANA)
  * kn (Shankar Prasad)
  * ko (Changwoo Ryu)
  * lt (Gintautas Miliauskas)
  * lv (Pēteris Caune)
  * mai (Sangeeta Kumari)
  * ml (പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍)
  * mr (Sandeep Shedmake)
  * or (Manoj Kumar Giri)
  * pa (A S Alam)
  * pl (Tomasz Dominikowski)
  * sl (Matej Urbančič)
  * sr (Горан Ракић)
  * ta (I. Felix)
  * te (Krishna Babu K)
  * uk (Maxim Dziumanenko)
  * zh_HK (Chao-Hsiung Liao)

===============
Version 2.27.92
===============
 Updated translations:
  * ar (Khaled Hosny)
  * be (Alexander Nyakhaychyk)
  * bg (Alexander Shopov)
  * bn (Maruf Ovee)
  * bn_IN (Runa Bhattacharjee)
  * cs (Adrian Guniš)
  * en_GB (Philip Withnall)
  * es (Jorge González)
  * et (Mattias Põldaru)
  * eu (Iñaki Larrañaga Murgoitio)
  * fi (Tommi Vainikainen)
  * fr (Claude Paroz)
  * gl (Antón Méixome)
  * gu (Sweta Kothari)
  * kn (Shankar Prasad)
  * nb (Kjartan Maraas)
  * or (Manoj Kumar Giri)
  * pl (Tomasz Dominikowski)
  * pt (Duarte Loreto)
  * pt_BR (Fábio Nogueira)
  * sv (Daniel Nylander)
  * ta (I. Felix)
  * te (Krishna Babu K)
  * zh_HK (Chao-Hsiung Liao)


===============
Version 2.27.90
===============
  * Fixes to idle detection (now works with gnome screensaver 2.27+)
  * return of the day view
  * UI layout fixes to match HIG
  * now it is possible to add more than one applet to panel without crashing

  Updated translations:
    * ee (Ivar Smolin)
    * gl (Antón Méixome)
    * es (Jorge González)
    * hu (Gabor Kelemen)
    * zh_HK (Chao-Hsiung Liao)
    * sv (Daniel Nylander)


===============
Version 2.27.5
===============
  * Better autocomplete
  * More skeptic on parsing time
  * Legend in overview is sized proportionally to screen size,
    allowing larger labels

  Updated translations:
    * be (Alexander Nyakhaychyk)
    * es (Jorge González)
    * pa (Amanpreet Singh Alam)

===============
Version 2.27.4
===============
  * Now it is possible to copy/paste activities in the overview
  * mostly polishing and bug fixing the new stuff brought in in 2.27 cycle

  Updated translations:
    * bn_IN (Runa Bhattacharjee)
    * es (Jorge González)
    * et (Ivar Smolin)
    * fr (Claude Paroz)
    * sv (Daniel Nylander)
    * uk (Maxim V. Dziumanenko)

===============
Version 2.27.3
===============
  * A much better DBUS support (Felix Ontanon)
  * Switch days at 5am because humans tend to work late. Overlapping activities
    fall in day where the largest part of it is (Patryk Zawadski)
  * Now you can enter negatives minutes to start an activity in past.
    Example "-30 cookies" will start activity "cookies" 30 minutes before now
  * TSV, XML and iCal export
  * Ability to filter task by date and category
  * Overview has been improved by adding some nifty statistics for your pleasure

  Updated translations:
    * ta.po (Dr.T.Vasudevan)

===============
Version 2.27.2
===============
  * Now a reminder is displayed every configured amount of time also when no
    activity is being tracked. (Can be disabled in preferences)
  * Allow to switch to same task if description differs
  * Activity edit icon in dropdown is now keyboard accessible
  * Start time and end time can be specified when typing in task.
       Example: 00:04 Hamster
  * slightly smarter autocomplete with category suggestions when after @ symbol
  * fixes to edit activity dialog's end time field

  Updated translations:
    * el.po (Jennie Petoumenou)
    * et.po (Ivar Smolin)
    * ta.po (Dr.T.vasudevan)
    * uk.po (Maxim V. Dziumanenko)
    * ca@valencia.po (Gil Forcada/Miquel Esplà)


===============
Version 2.27.1
===============
  * Overview window graphs have been redone and now are less noisy
  * Tasks now can span over midnight, showing correct per-day totals in overview
  * Add earlier activity / edit activity has been overhauled and now is much
    easier to use. An experimental preview has been added
  * In preferences UI buttons have been added for editing and deletion
  * Glade files have been migrated to gtkbuilder format
  * now it is possible to start overview and other windows straight from command
    line using "-s [stats|edit|prefs]" switch

  Updated translations:
    * ca.po (David Planella)
    * cs.po (Petr Kovář)
    * da.po (Ask Hjorth Larsen)
    * de.po (Hendrik Richter)
    * el.po (Kostas Papadimas)
    * en_GB.po (Philip Withnall)
    * et.po (Ivar Smolin)
    * fi.po (Ilkka Tuohela)
    * fr.po (Claude Paroz)
    * gl.po (Ignacio Casal Quinteiro)
    * he.po (Yair Hershkovitz)
    * kn.po (Shankar Prasad)
    * lt.po (Gintautas Miliauskas)
    * lv.po (Toms Bauģis)
    * nl.po (Wouter Bolsterlee)
    * or.po (Manoj Kuamr Giri)
    * pl.po (Łukasz Jernaś)
    * pt_BR.po (Vladimir Melo)
    * ro.po (Mișu Moldovan)
    * ru.po (Nickolay V. Shmyrev)
    * si.po (Danishka Navin)
    * sl.po (Matej Urban)
    * sv.po (Daniel Nylander)
    * tr.po (Baris Cicek)
    * zh_CN.po (Aron Xu)


===============
Version 2.25.3
===============
  We were late for 2.25.1 and 2.25.2, so here we go - changes since 2.24.0!

  Applet - changes
    * Now it is possible to add description after activity, delimiting with
      comma: "watering flowers, begonias" will add activity "watering flowers"
      with description "begonias". Likewise you can go for cacti, and
      forgetmenots
    * Task category can be seen in dropdown and can be specified on fly to
      autocreate: working@new project - will create category "new project"
      and add activity "working" to it
    * Hamster now can remind of itself every once in a while, interval is set
      in preferences (George Logiotatidis)
    * Sending dbus signals on activity change (Juanje Croissier)

  Applet - love
    * Applet now again can be found in applet list by searching for 'hamster'
    * Get instant totals per category for today, in applet dropdown
    * Improvements in report - somewhat nicer look and there are also totals
      (Giorgos Logiotatidis)
    * Use vertical space if we have some on panel and show applet in two lines

  Updated translations
    * bg.po (Alexander Shopov)
    * el (Nick Agianniotis)
    * he (Yair Hershkovitz)
    * ku (Erdal Ronahi)
    * lv (Toms Bauģis)
    * sv (Daniel Nylander)
    * zh_CN (Ray Wang)



===============
Version 2.24.0
===============
  Applet
    * some more strings available for translation, but the main changes are
      the updated translations

  Updated translations
    * ar (Djihed Afifi)
    * bg (Alexander Shopov)
    * bn_IN (Runa Bhattacharjee)
    * ca (Gil Forcada)
    * cs (Petr Kovar)
    * da (Ask Hjorth Larsen)
    * de (Hendrik Richter)
    * el (Nikos Charonitakis)
    * en_GB (Philip Withnall)
    * es (Jorge González)
    * et (Ivar Smolin)
    * eu (Iñaki Larrañaga Murgoitio)
    * fi (Timo Jyrinki)
    * fr (Claude Paroz)
    * gl (Ignacio Casal Quinteiro)
    * gu (Sweta Kothari)
    * he (Yair Hershkovitz)
    * hi (Rajesh Ranjan)
    * hu (Gabor Kelemen)
    * it (Milo Casagrande)
    * kn (Shankar Prasad)
    * ko (Changwoo Ryu)
    * lt (Gintautas Miliauskas)
    * lv (Toms Baugis)
    * mk (Jovan Naumovski)
    * ml (പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍ )
    * mr (Sandeep Shedmake)
    * nb (Kjartan Maraas)
    * nl (Wouter Bolsterlee)
    * pa (Amanpreet Singh Alam)
    * pl (Tomasz Dominikowski)
    * pt (Duarte Loreto)
    * pt_BR (Vladimir Melo)
    * ru (Alexandre Prokoudine)
    * sl (Matej Urbančič)
    * sq (Laurent Dhima)
    * sr (Горан Ракић)
    * sr@latin (Goran Rakić)
    * sv (Daniel Nylander)
    * ta (Kannan Subramanian)
    * th (Theppitak Karoonboonyanan)
    * tr (Baris Cicek)
    * zh_HK (Chao-Hsiung Liao)
    * zh_TW (Chao-Hsiung Liao)

===============
Version 2.23.92
===============
  Applet
    * fixed code so that it works also with Python 2.4
    * Fixed bug with tasks falling into unsorted category (bug #548914)
    * Fixed error when switching tasks with doubleclick


  Translations
    * ar (Anas Afif Emad)
    * bg (Alexander Shopov)
    * bn_IN (Runa Bhattacharjee)
    * ca (Gil Forcada)
    * cs (Adrian Guniš)
    * de (Matthias Mailänder)
    * en_GB (Philip Withnall)
    * es (Juanje Ojeda Croissier)
    * et (Ivar Smolin)
    * eu (Iñaki Larrañaga Murgoitio)
    * fi (Timo Jyrinki)
    * fr (Claude Paroz)
    * gl (Ignacio Casal Quinteiro)
    * gu (Sweta Kothari)
    * he (Yair Hershkovitz)
    * it (Stefano Pedretti)
    * lt (Gintautas Miliauskas)
    * lv (Toms Baugis)
    * mk (Jovan Naumovski)
    * mr (Sandeep Shedmake)
    * nb (Kjartan Maraas)
    * nl (Wouter Bolsterlee)
    * pl (Tomasz Dominikowski)
    * pt (Duarte Loreto)
    * pt_BR (Vladimir Melo)
    * ru (Sasha Shveik)
    * sl (Matej Urbančič)
    * sv (Daniel Nylander)
    * zh_HK (Chao-Hsiung Liao)
    * zh_TW (Chao-Hsiung Liao)

===============
Version 2.23.91
===============
  Applet
	* When adding earlier activity in current day, set default end time to now
	* In overview start week with monday/sunday depending on locale (bug 548102)
    * Respect theme colors for graph labels
      (bug 548840) patch by CJ van den Berg
    * Fixed fail on exit when there is no last activity


  Translations
    * ar (Anas Afif Emad)
    * ca (Gil Forcada)
	* de (Matthias Mailänder)
	* es (Juanje Ojeda Croissier)
	* et (Ivar Smolin)
    * fi (Timo Jyrinki)
	* fr (Claude Paroz)
	* gl (Ignacio Casal Quinteiro)
    * gu (Sweta Kothari)
	* he (Yair Hershkovitz)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
    * mk (Jovan Naumovski)
    * mr (Sandeep Shedmake)
	* nb (Kjartan Maraas)
	* nl (Wouter Bolsterlee)
    * pl (Tomasz Dominikowski)
	* pt (Duarte Loreto)
    * pt_BR (Vladimir Melo)
	* ru (Sasha Shveik)
	* sv (Daniel Nylander)
    * zh_HK (Chao-Hsiung Liao)
    * zh_TW (Chao-Hsiung Liao)

===============
Version 2.23.90
===============
  Applet
	* Changing name from "Hamster" to "Time Tracker"
	* Information on when computer becomes idle is now determined from
	  screensaver
	* Fixes to focusing issues when calling applet with hotkey


  Translations
	* de (Matthias Mailänder)
	* es (Juanje Ojeda Croissier)
	* et (Ivar Smolin)
	* fr (Stéphane Raimbault)
	* gl (Ignacio Casal Quinteiro)
	* he (Yair Hershkovitz)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* nb (Kjartan Maraas)
	* nl (Wouter Bolsterlee)
	* pt (Duarte Loreto)
	* ru (Sasha Shveik)
	* sv (Daniel Nylander)


==============
Version 2.23.6
==============
  Applet
	* Follow GNOME version scheme
	* Properly integrate with Keyboard Shortcuts in gnome-control-center

  Translations
	* de (Matthias Mailänder)
	* es (Juanje Ojeda Croissier)
	* fr (Stéphane Raimbault)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* nl (Wouter Bolsterlee)
	* ru (Sasha Shveik)
	* sv (Kalle Persson)

=============
Version 0.6.2
=============
  Applet
	* Fixed the header info and updated the Spanish translations
	* Updated the Dutch translation by Wouter Bolsterlee (#544975)
	* Disable keybindings if not supported by g-c-c
	* Properly integrate with GNOME's keyboard binding dialog
	* Fixed problems with simple report
	* Now you can edit facts in overview by double clicking
	* Updated French translation (Stephane Raimbaul)
	* Put icons back in overview window
	* Stock buttons for add / update fact
	* Fixed potential popup window positioning issue

  Translations
	* de (Matthias Mailänder)
	* es (Juanje Ojeda Croissier)
	* fr (Stéphane Raimbault)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* nl (Wouter Bolsterlee)
	* ru (Sasha Shveik)
	* sv (Kalle Persson)

=============
Version 0.6.1
=============
  Applet
	* Do not eat up middle-click
	* Fixed fact pushing on overlap
	* Correct orientation on vertical applets

  Translations
	* de (Matthias Mailänder)
	* es (Juanje Ojeda Croissier)
	* fr (Pierre-Luc Beaudoin)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===========
Version 0.6
===========
  Applet
	* Simple reporting via Overview dialog

  Translations
	* de (Matthias Mailänder)
	* es (Juanje Ojeda Croissier)
	* fr (Pierre-Luc Beaudoin)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===========
Version 0.5
===========
  Applet
	* Preferences are now editable via user interface
	* Added option to stop tracking on shutdown
	* Current activity is now showing up in totals

  Translations
	* es (Juanje Ojeda Croissier)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

=============
Version 0.4.1
=============
  Applet
	* Fixed lintian warnings, mentioned in bug 531965. Also, got rid of rest of them :)
	* Fixed rules as per bug 532711. Patch by Juanje Ojeda.

  Translations
	* es (Juanje Ojeda Croissier)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

=============
Version 0.4.1
=============
  Miscellanous
	* Fixed usage of spanish and italian translations

  Translations
	* es (Juanje Ojeda Croissier)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===========
Version 0.4
===========
  Applet
	* Fact editing!

  Translations
	* es (Juanje Ojeda Croissier)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===========
Version 0.3
===========
  Applet
	* Many small fixes to activity editing window (setting, focus, F2 for
	  renames and others you would expect)

  Translations
	* es (Juanje Ojeda Croissier)
	* it (Stefano Pedretti)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===========
Version 0.2
===========
  Applet
	* change days on midnight also when there is no current activity
	* option to stop tracking after certain minutes of idle
	* simplified versioning to three numbers

  Translations
	* es (Juanje Ojeda Croissier)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.7.5
===============
  Applet
	* Fixed midnight crasher

  Translations
	* es (Juanje Ojeda Croissier)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.7.4
===============
  Applet
	* Fixed licensing issues

  Debian
	* Packaging is back to per arch

  Translations
	* es (Juanje Ojeda Croissier)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.7.3
===============
  Applet
	* In stats the top caption shows what can be actually seen
	  (day / week / month) - geekout
	* remove hamster killname, since it breaks x86_64
	* switching tasks on doubleclick in applet main window
	* some more thinking on accidental facts (forth and back to previous task
	  within minute)
	* graphs now have fixed offset from left, long labels get ellipsized

  Debian
	* attempt to package with arch = all

  Translations
	* es (Juanje Ojeda Croissier)
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.7.2
===============
  Applet
	* Fixed focus issues with global hotkeys

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.7.1
===============
  Applet
	* Fixed regression with keys ignored in applet window

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

=============
Version 0.1.7
=============
  Applet
	* Fixed applet vertical sizing issues
	* Showing Evolution's active TODO's in activity lists
	* Drop down window now doesn't have double shadow on top of it
	* Fixed bug with situation, when activities get moved to newly created
	  category

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.6.2
===============
  Applet
	* Stop at 12 different activities a day, 12th being total of others
	* Give more space to activity stats
	* Put back resize to both sizes, since we are now ellipsizing

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.6.1
===============
  Applet
	* Kind of fixed problem with gconf schema not appearing

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

=============
Version 0.1.6
=============
  Applet
	* Enhanced drag and drop behaviour in edit activities window
	* Added labels, tooltips, spacings, and other flags to enhance experience

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.5.5
===============
  Applet
	* Fixed pysqlite dependency
	* Fixed area chart color

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.5.4
===============
  Applet
	* Hamster now has a process name for killall, which enables us to
	  kill it on install!

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.5.3
===============
  Applet
	* Fixed antialiasing problems in bar chart

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.5.2
===============
  Applet
	* Minor changes and slight adjustments to Swedish translation

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

===============
Version 0.1.5.1
===============
  Applet
	* Fixed window icons

  Translations
	* lv (Toms Baugis)
	* sv (Kalle Persson)

=============
Version 0.1.5
=============
  Applet
	* Initial release