File: CHANGELOG

package info (click to toggle)
skrooge 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 30,280 kB
  • sloc: cpp: 48,072; sh: 55; xml: 19; makefile: 4
file content (1042 lines) | stat: -rw-r--r-- 64,464 bytes parent folder | download
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
skrooge (1.3.0)
  *Correction bug 291512: Show hide checked operations setting are not retained 
  *Correction bug 291550: Advice (dashboard) about operations with empty category : case of transfers
  *Correction bug 292225: Skrooge 1.2.0 crash on opening report
  *Correction bug 293398: Display Graph windows during Account Creation
  *Correction bug 293397: Error on duplicate account name creation
  *Correction bug 293580: Select/unselect "import state" column will display empty field 
  *Correction bug 293941: Skrooge crashed on deleting split operation
  *Correction bug 278220:  Wrong values in Monthly Report "Amounts in accounts"
  *Correction bug 296204: add balance entered in Operations
  *Correction bug 297722: Copy/paste comment in the table of a split operation leads to a wrong behaviour
  *Correction: creation of subcategories with entered number  
  *Correction: hide templates when open operations from other pages
  *Correction: Use radio button in "Show" menus when needed  
  *Correction: Support import of gnucash file without "gnc:book"  
  *Correction: Generate an error message when trying to import a missing ofx file  
  *Correction: FastEdition does not work when more than one "operation" page is opened  
  *Correction: Crash on QIF export when the document has 3 operations grouped with op1.value=-op2.value  
  *Correction: Refresh of graphs when unit values are modified  
  *Correction: Install the grantlee filter plugin into the correct location.
  *Correction: Avoid empty "Account" page when no account exist  
  *Correction: No automatic resize of columns when "auto resize" is not check
  *Correction: Addition the "rate" in internet code tool tip.
  *Correction: Amounts are displayed with the right number of digits in "operation" and "account" table.
  *Correction: Refresh view when a new appearance is selected
  *Correction: Bad computation of fake operation in case of multi selection  
  *New feature: Better display of "Show" menu in operation table
  *New feature: Colors in "Incomes and Expenditure" dashboard widget
  *New feature: "Search & Process" is now working on comments of sub operations  
  *New feature: "Base 100" mode
  *New feature: Skrooge is now able to import file have amounts with unit symbole (example: -$8.35)  
  *New feature: Possibility to pin/unpin pages  
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 23 Apr 2012 11:45:09 +0200
 
skrooge (1.2.0)
  *Correction bug 288683: E: skrooge-common: arch-dependent-file-in-usr-share usr/share/kde4/apps/skrooge/plugins/grantlee/0.2/grantlee_skroogefilters.so
  *Correction bug 290626: No support of OFX format
  *Correction: Avoid suboperations pointing on unused category when all categories are deleted
  *Correction: Hide internal properties in property dock
  *Correction: A new document is no more considered as modified  
  *Correction: Advice "xxx is an old tracker" modified to use the LASTDATE instead of the FIRSTDATE    
  *Correction: Better display in "Income & Expenditure" dashboard widget + addition of "Saving"
  *Correction: In "Account" page, "Other ..." in icon list is now working  
  *Correction: Correction for advice "Possible schedule 'xxx'"
  *Correction: Hide internal properties in graph
  *Correction: Bug on inline edition on comment & mode
  *Correction: Optimisation on "anonymize" function for big files
  *Correction: Highlight switch on category
  *Correction: In operations tab, provide a "show" menu as for other plugins
  *Correction: Avoid duplication of some categories when search and process is used  
  *Correction: Avoid modifications in interest table  
  *Correction: Fast edition refreshs the "comment" field  
  *Correction: The autocompletion list for number displays only the numbers of the selected account  
  *Correction: Monthly report create .kde directory event if .kde4 must be used  
  *New feature: Fields of update part of the search & process panel are not editable to facilitate the completion
  *New feature: Import of non local files (example: http://myserver/document.qif)
  *New feature: Export of non local files (example: http://myserver/document.qif)
  *New feature: Dashboard > Shares & Indexes renamed to "Quotes" and provide a possibility to select all available Units (Objects, Currencies etc.)
  *New feature: Operations > Transfer: don't display a name of a chosen source account in the field of target account
  *New feature: New mode in reports
  *New feature: Memorize expanded groups in bookmarks
  *New feature: "Incomes & Expenditures" widget is clickable  
  *New feature: Highlight on units  
  *New feature: Addition of "Show" menu in scheduled operations    
  *New feature: Hide title in "Scheduled operations" if at least one schedule is existing
  *New feature: Open "Scheduled operations" when an operation is scheduled
  *New feature: SKGTreeView scrollbars are sticked on maximum position
  *New feature: SKGTableWidget scrollbars are sticked on maximum position
  *New feature: New "Open operations" function in contextual menu (connected with double click - support multi selection)
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 09 Jan 2012 11:01:12 +0100

skrooge (1.1.1)
  *Correction: "Highlighted only" is by default disabled in "Account" widget
  *Correction: Mysterious crash in SKGTreeView::onExpand

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Wed, 23 Nov 2011 21:44:09 +0100
 
skrooge (1.1.0)
  *Correction bug 283683: Can not add a new operation after modifying the values on an existing one 
  *Correction bug 284220: Closed account still showing up in accounts combobox of "operations" tab 
  *Correction bug 283840: Skrooge is unable to download units for a past period, but it works for the current day
	==> Better warning message
  *Correction bug 284073: Expressions in splitted operation amount are not calculated 
  *Correction bug 283842: If I add today a past operation in a different unit than the principal, the amount calculated uses the present unit value, and not that of the specific date
  *Correction bug 284752: Skrooge does not look for Grantlee at build time 
  *Correction bug 284843: OFX import does not work on UTF-8 encoded files
  *Correction bug 285289: Misspell found: reconcilation instead of reconciliation
  *Correction bug 285880: Cumulative amount of main categories don't appear 
  *Correction bug 286538: Renaming categories doesn't rename relevant search/process rules (not fixed but better error management)
  *Correction: Better colors in "5 main variations" widget for dashboard
  *Correction: Installation of grantlee_skroogefilters.so in only one place and not hardcoded
  *Correction: No more error when importing skg file with payees
  *Correction: Addition of an error message on loading of a document generated by a most recent version (example loading on a 1.0.0 document into Skrooge 0.9.1)
  *Correction: Addition of missing date for x axis on unit graph
  *Correction: Import homebank set types of accounts
  *Correction: Possibility to remove an empty account without warning
  *Correction: Better performances during migration
  *Correction: Change language of the document on open if the language of KDE has changed
  *Correction: Better affectation of payees and comments during gnucash import 
  *Correction: Better default size of the "category" panel in the split table to avoid manual resizing
  *Correction: Better performances during import of multi files by applying "search & process" rules only at the end
  *New feature: New type of account "Loan", transfer from/to this kind of account are considered as "expenditure" in reports
  *New feature: New function to remove useless values in unit (the curve is preserved but useless values are removed)
  *New feature: New tag for grantlee to be able to use standard palette. Colors of the "Default" template are coming from the KDE palette now.
  *New feature: Possibility to download values of units with regular expressions.	
  *New feature: Possibility to create/modify monthy template directly from skrooge
  *New feature: More detail in progress bar  
  *New feature: New advice to find and repair operations in groups with only one operation
  *New feature: New advice to find potential monthly schedule

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 21 Nov 2011 15:31:03 +0100
 
skrooge (1.0.0)
  *Correction bug 280362: Skrooge is not accepting dots or commas
  *Correction bug 280897: Unit wont set on mt940 import when there are existing operations 
  *Correction bug 280915: The import logic should use an existing account based on bank name read from :20: and the account number read from :25:
  *Correction bug 282983: Multi-currency transactions not anchored to the exchange rate of the day of the transaction
  *Correction bug 283246: Some text is hard to read with dark color theme
  *Correction: Better performances in check box of operation, account, tracker pages
  *Correction: Grisbi import with split operations does not work  
  *Correction: Capability to open read only file
  *Correction: Completion on substring available only in "Dropdown list" mode
  *Correction: To improve performances, the refresh of advices is done when dashboard is activated and only if refresh is needed
  *Correction: To improve performances, the refresh of models is done for views in current page
  *Correction: To improve performances, the refresh of graphs is done for graphs in current page
  *Correction: "Delete unused" of category page tries a delete only on categories really not used
  *Correction: Various correction in bookmarks (enable/disable in menu, bad management in parent/child relation)
  *Correction: Cascading delete in categories and bookmarks  
  *New feature: New function to bookmark all opened page in one click
  *New feature: Addition of "Once a week" for scheduled operations  
  *New feature: Merge of trackers by drag & drop  
  *New feature: "Count" mode in reports  
  *New feature: In table views, when at least one scroll bar is visible, the corner widget allows to display the contextual menu of the header
  *New feature: Graphs can be corrected by an indice defined in unit page
  *New feature: Less icon in tool bar by default. New "Fast edit" button in operation editor.
  *New feature: Add copy menu in contextual menu for cells
  *New feature: Advice for closed account with amount<>0
  *New feature: "Autostart" and "Remove autostart" available in multi selection
  *New feature: In krunner, A string like "buy 10 ESSO" allows to quickly prepare add a new operation in skrooge. Advices in dashboard allows to finalize the creation
  *New feature: "Auto start" bookmarks are not opened if the key SHIFT is maintained pressed during the start of Skrooge  
  *New feature: Grouping function in all tables  
  *New feature: New menu to lock/unlock docks
  *New feature: Allow menu hiding 
  *New feature: "Monthly report" widgets for the dashboard can be set on current month

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 03 Oct 2011 14:21:04 +0200
 
skrooge (0.9.1)
  *Correction bug 271294: Modifying transactions with spaces in their amounts causes them to be reset to 0
  *Correction bug 275963: Operations imported in the primary currency unit, not the account unit 
  *Correction bug 278004: Skrooge installs library files with wrong version numbers
  *Correction bug 278220: Wrong values in Monthly Report "Amounts in accounts" 
  *Correction bug 279421: General reports problems/request
  *Correction bug 275956: Possibility to display different accounts in different currency units
  *Correction: Change icons and remove useless icons
  *Correction: Hide useless "Add" and "Update" buttons in amortization table of "Simulation" page
  *Correction: No display of initial value (0000) in graph when history mode is not selected
  *Correction: Now the forecast period is equal to the real period
  *Correction: Addition of "Add category" in contextual menu of "Category" page
  *Correction: Differentiation between "Sum" and "Pourcent" mode of PIE graphs
  *Correction: When "operation" page is an a particular account, the editor is cleaned with this account 
  *Correction: Remove password when anonymize a document
  *Correction: Better performance by simulating "materialized views" with tables (used for categories and budgets)
  *Correction: In CSV import, if 2 "amount" columns are found then the first one is considered as a debit and the second one as a credit
  *Correction: During import, in case of doubt, MM_DD is preferred than DD_MM
  *Correction: Imports are supporting dates with backslashes like 29\06\2011
  *Correction: Better performances
  *Correction: Saving the state of 'Categories Page' ignores the resized columns with (Auto resize: off)
  *Correction: CSV import supports multiline file like:  
		date;amount;comment;type
		"1/1/2010";1000;"transfer 1
		from account A
		to account B";TRANSFER
		"2/2/2010";2000;"transfer 2
		from account A
		to account C";TRANSFER
  *Correction: Protection again empty date ==> if the user remove date string then the current date is used
  *Correction: Toolbar is realy configurable
  *Correction: Import of encrypted skrooge files
  *Correction: Better print when many pages are open
  *Correction: Missing gsb format in import file selection panel
  *New feature: Graphs in "Bank and Account" page
  *New feature: Addition of "Jump to the operation" in contextual menu of "Scheduled operations" page
  *New feature: Properties can be a copy of a file or a link to an existing file
  *New feature: In all pages, possibility to hide line by using operator - in "Search" field
  *New feature: Addition of "Highlight" status on catagories and payees  
  *New feature: In reports, the first columns is resizable and has a tooltip for a better display
  *New feature: "Expand all" and "Collapse all" in category and bookmark trees  
  *New feature: An option to set a frequency of units download (once a day/week/month)  
  *New feature: Properties associated by drag & drop can be copied or linked (ALT+)
  *New feature: CTRL+C enables copying of selected cells of tables

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 15 Aug 2011 18:53:00 +0200
 
skrooge (0.9.0)
  *Correction bug 273692: Weird overlay in each dashboard widget 
  *Correction bug 268933: Category editing is tedious and confusing 
  *Correction bug 270207: Cannot enter positive value (credit) for operations in my account 
  *Correction bug 270450: Add a wallet as a distinct account
  *Correction bug 271529: Add a search box to the Categories tab
  *Correction bug 271708: Wrong account transfer merging when importing QIF files
  *Correction bug 272863: Allow to choose which wallet store password in
  *Correction bug 274777: inconsistency between amounts&nb of operations displayed by modules Tiers, Categories and Operations 
  *Correction bug 274993: Generation of forecast in a report depends on the option "auto-write" 
  *Correction: Error during QIF import if unit is already existing 
  *Correction: Open property file with space
  *Correction: Selected items always on top in graphs
  *Correction: Symbol in legend when "Point" is the selected mode of graph
  *Correction: Skrooge crashes on change of icon for folders in bookmark dock
  *Correction: Show progress bar only when needed  
  *Correction: Bad values when customized dates are changed in reports
  *Correction: Better draw of pies in graphs
  *Correction: "Antialiasing" option in settings panel + automatic refresh of graphs after settings modification
  *Correction: "find and group transfer" does not work if 2 operations with same date and same amount
  *Correction: Homebank import supports budgets and scheduled operation
  *Correction: Change "Context" by "Pages"
  *Correction: Better computation of forecast period for "Scheduled" and "Budget" modes  
  *Correction: Better performance in advice for scheduled operations
  *Correction: Better proportion in reports in BUBBLE mode 
  *New feature: Formula is autorized in splitted amount (must start by =)
  *New feature: Ensure visibility of selected items in graph 
  *New feature: New logo with rupee symbol
  *New feature: New button to reset internal filter in reports
  *New feature: Settings for "Reports" to select colors
  *New feature: Information zone in budget to display budgeted amount based on selected budgets
  *New feature: New contextual action "New category" on categories
  *New feature: Balance and balance of the day in account widgets (table, dashboard)
  *New feature: Merge of an imported operation with a manual operation is now possible even if amounts are different
  *New feature: Button on "Scheduled operations" to jump to the operation template for edition
  *New feature: New advice to align scheduled operation amount with the last amount inserted
  *New feature: New kind of graph "stack of columns"  
  *New feature: New kind of graph (values in % of columns)
  *New feature: New setting to select the color of outline in reports
  *New feature: New setting to enable/disable balances computation
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 06 Jun 2011 14:00:49 +0200
 
skrooge (0.8.1)
  *Correction bug 259417: Units: graph unreadable when values are missing for some dates ==> "Show origin" allows to show/hide the origin of the graph for a better display
  *Correction bug 259416: Report: showing limits, average and tendency does not work in mode "Sum" 
  *Correction bug 259414: Feature request: select previously selected tab when closing a tab 
  *Correction bug 259412: Date chooser field: keyboard shortcuts do not work
  *Correction bug 257324: No icon for Skrooge in the Gnome menu 
  *Correction bug 261001: Better integration on OS X
  *Correction bug 261318: Amount field calculator gives too many digits
  *Correction bug 262511: Wrong widget placement in properties subwindow 
  *Correction bug 263263: Separate field for income and expenditure when importing CSV files 
  *Correction bug 263716: Conversion multiple records to "transfer" type cause all have the same ammount 
  *Correction bug 266703: Window exceeds screen size on Netbook 
  *Correction bug 267442: Support for mt940 files
  *Correction bug 267773: Skrooge always start maximized
  *Correction bug 267996: Export CSV not unique identifier 
  *Correction: Bad fullname and cumulative amount on categories after a drag and drop
  *Correction: Import csv with "sign" column before "amount"
  *Correction: All items are in "Skrooge" category in "Configure shortcuts"
  *Correction: No symbol for curves of indexes
  *Correction: "XX is an old tracker" advice does not give the right result when after 31 december
  *Correction: GNUCash import creates sometimes "wrong" splits with values close to 0
  *Correction: Better initial state for the window (docks, maximized)
  *Correction: Bookmark of report
  *Correction: Many small correction in "interest" computation (tooltips, items in combo box, computation, ...)
  *Correction: Bad unit in "unit" page for units having a unit reference
  *Correction: Better tooltips in report (usefull for huge report where lines title is not visible)
  *Correction: Better management of codex for exports
  *Correction: Bad value when update of transfer is done from target account of the transfer
  *New feature: Import csv with ' as cote (for "Money Manager Ex" exports)  
  *New feature: Import csv is now possible on file without header
  *New feature: Import csv supports more than one "category" column
  *New feature: Import "Money Manager EX" file
  *New feature: Change icon on bookmarks
  *New feature: "Open potential duplicates"
  *New feature: Massive update on budgets
  *New feature: Delete is more secured.   
  *New feature: Force mode on delete.   
  *New feature: Possibility to change the account of operations even when only operations of one account are displayed (useful for credit card)
  *New feature: New "Search & Process" panel
  *New feature: Property dock is able to display all properties
  *New feature: New "About" panel using KDE 4.6 features
  *New feature: Better mass update on "account", "payee", "tracker" and "unit" pages
  *New feature: Possibility to merge accounts by using massive update on name of accounts
  *New feature: Possibility to merge payees by using massive update on name of payees
  *New feature: Possibility to merge units by using massive update on name of units
  *New feature: Possibility to merge categories by using massive update on name of categories
  *New feature: Timeline in reports
  *New feature: Some fields are directly editable in view
  *New feature: Completion for all fields with operators (=upper and =lower for the moment)
  *New feature: New "stacked area" graph type
  *New feature: New "bubble" graph type
  *New feature: New button in "operation" page to freeze/unfreeze all fields with text
  *New feature: Better zoom widget in contextual menu of reports
   
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 14 Mar 2011 15:40:34 +0100

skrooge (0.8.0)
  *Correction bug 250350: Impossible to update an operation of a closed tracker 
  *Correction bug 250403: Dashboard "Shares & Indexes" shows wrong percentaged variation 
  *Correction bug 250677: Bank account choice do not use the country information 
  *Correction bug 246973: Dashboard should be more customizable 
  *Correction bug 251465: Wrong totals with second currency accounts
  *Correction bug 252869: Skrooge doesn't import KMM bank names correctly
  *Correction bug 255133: Skrooge crash on ofx import (With wrong data format. Bug in libOFX)
  *Correction bug 221207: Budget and forecast for accounts
  *Correction bug 256214: Skrooge after full screen mode I have only StartPage
  *Correction bug 257322: Installation doesn't depend from "QCA OSSL plugin for libqca2" (libqca2-plugin-ossl is not optional)
  *Correction bug 258307: comment from main split operation duplicated
  *Correction bug 258621: Skrooge crashes when KDE session is closed 
  *Correction: Better dashboard display by using a flow layout
  *Correction: Bookmark of report having "Columns: -- Nothing --"
  *Correction: Support of "!type:prices" for QIF import and export
  *Correction: Better export KMyMoney
  *Correction: Better detection of double during imports
  *Correction: Protection again sql injection
  *Correction: Graph redraw even on hidden tabs
  *Correction: Crash on selection of a cell when graph is hidden in reports
  *Correction: Refresh of page in case of reset default state
  *Correction: Boorkmark of "operation" page in template mode
  *Correction: In report, hide columns or lines without property
  *New feature: On reports, average and limits are available if "All values in positive" is used too
  *New feature: Download of all additional information as properties for units (new setting to activate this mode)
  *New feature: Skrooge is able to store passwords in KDE wallet (new setting to activate this mode)
  *New feature: Scheduled operations with warning are in bold in dashboard
  *New feature: Show/hide properties as a column in tables
  *New feature: Auto point of imported operations to obtain the expected final balance
  *New feature: Reorder widget in dashboard by drag & drop
  *New feature: Floating panel in dashboard to remove or zoom widgets
  *New feature: Accounts can be merged by drag & drop (useful after an import)
  *New feature: Units can be merged by drag & drop (useful after an import)
  *New feature: Automatic import of csv columns as properties based on regular expression
  *New feature: New report capabilities
  *New feature: Sub total in reports
  *New feature: New advice for bank without account
  *New feature: New icons for banks of South Africa (Thank you David)
  *New feature: OR operator (+) supported in string filters
  *New feature: New contextual menu in html pages for export as pdf, odt, image and copy
  *New feature: Possible to show/hide items in context list
  *New feature: Forecast based on budgets
  *New feature: Multi selection in report table and graph
  *New feature: New "show" button
  *New feature: Better performances on dashboard  
  *New feature: Better performances on tracker page  
  *New feature: New function on operation: "Merge sub operations"
  *New feature: New advice for budgets  
  *New feature: Possibility to dismiss kind of advices
  *New feature: Hide tendency line column  
   
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 06 Dec 2010 15:31:21 +0100
 
skrooge (0.7.3)
  *Correction bug 245847: skrooge 0.7.3: 'pow10' was not declared in this scope 
  *Correction bug 213786: Account balance is not displayed 
  *Correction bug 246178: Dashboard "Income & Expenses" widget counting transfers
  *Correction bug 246408: Skrooge prints hardcopy
  *Correction bug 246977: In reports from selected data the date selection should be all data 
  *Correction bug 247445: Linker error in skgbasemodelertest/skgtestnodes.cpp 
  *Correction bug 246976: 'Select all' option in menu edit 
  *Correction bug 249955: No password request after hardware crash 
  *Correction: Better management of print option (collate, nb copy, from, to, last page first)
  *Correction: Do not authorize creation of operation with "-------"
  *Correction: In report, capability to create history with of property
  *Correction: In report, do not allow hiding table or graph by resizing
  *Correction: Import QIF with !Account section containing more than one account and with D attribute (Thank you Dennis)
  *New feature: Properties with a 'http' or 'file' url as value can be opened from skrooge (useful to set bank site on an account) 
  *New feature: New daskboard component to know money per bank
  *New feature: Bookmarks in a menu
  *New feature: Context in a toolbar (useful for small screen)
  *New feature: Advice widget in dashboard  
  *New feature: Full screen (useful for small screen)  
  *New feature: Addition of file as property by drag and drop
  *New feature: Tables are scrolled "bottom" or "top" based on sort order
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sun, 05 Sep 2010 07:36:37 +0200
 
skrooge (0.7.2)
  *Correction bug 237498: Skrooge crash on saving preferences (when system tray is not available)
  *Correction bug 238087: kAmountEdit widget in Operations plugin isn't properly localized
  *Correction bug 238477: Can't open base if partition is full 
  *Correction bug 240600: Skrooge must be able to export as a sqlite database 
  *Correction bug 240640: Skrooge crash after password entered - input file DELETED at failure 
  *Correction bug 234597: Gnucash import issues with two accounts with the same name 
  *Correction bug 240601: Skrooge must be able to export an anonymized file 
  *Correction bug 243738: Import of Gnucash file that has CNY currency fails 
  *Correction bug 245254: Category creation failed on first level 
  *Correction: Drag & drop of categories
  *Correction: Import skg file with tracker or interest simulation
  *Correction: No XML export of tables sqlite_sequence and sqlite_stat1
  *Correction: Layouts compatible with small screen (1024x768)
  *Correction: Open right page when click on "Estimated interest" in dashboard applet
  *New feature: Zoom on tables by using CTRL+wheel
  *New feature: Search button is "Search & process" page to be able to search operations without creating a rule
  *New feature: Click on a column in "Search & process" editor removes the column
  *New feature: CTRL+F opens the "Search & process" panel with a condition based on current selection
  *New feature: Stability of colors in graph
  *New feature: Selection of colors in graph (saved and restored)
  *New feature: "Add property" to add easily properties
  *New feature: skg files saved on a FTP server can be loaded directly from Skrooge. Save is not possible.
  *New feature: New "Payee" page
  *New feature: Merge of payees by drag & drop
  *New feature: Report plugin is able to display graph based on properties
  *New feature: Possibility to select icon file for a bank
  *New feature: Any kind of file as property
  *New feature: Go home
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sat, 24 Jul 2010 10:00:00 +0200
 
skrooge (0.7.1)
  *Correction bug 233895: Switching account from 1 type to another with multi-sel is modifying the initial balance 
  *Correction bug 233930: QIF address field is not imported 
  *Correction bug 234595: Better handling of category deletion ==> Reparent operations on parent category when a category is removed
  *Correction bug 234608: Some gnucash notes are lost during import phase
  *Correction bug 234771: Problem importing ofx file 
  *Correction bug 234845: Bad Account after importing ofx
  *Correction bug 235689: Can't localize quotation marks 
  *Correction bug 234596: Customisable date format in operations panel 
  *Correction bug 236753: Search but not process on attribute  
  *Correction: Rename "Import CSV unit..." in "Import currency values..."
  *Correction: Better management of constraints in data model
  *Correction: Conflict on categories when importing twice a gnc document 
  *Correction: Conflict on categories when importing twice a xhb document 
  *Correction: Conflict on categories when importing twice a gsb document 
  *Correction: Conflict during property update
  *Correction: Modification of trackers in splitter operations from "Search and process"
  *Correction: Transfer when signe + is specified before the value
  *Correction: Various modifications on "Search & Process"
  *Correction: Replacement of [%1] by '%1' for localization
  *Correction: No more direct sqlite prerequisit
  *New feature: Better performances on "File/New" (first Save is longer)
  *New feature: Usage of KNewPasswordDialog and KPasswordDialog for password protection
  *New feature: Applet for dashboard to display tip of the day
  *New feature: CSV import of splits and transfers 
  *New feature: CSV import is able to oncatenate many attributes in "comment" or "payee"
  *New feature: CSV import is to import unknown attributes as properties
  *New feature: Export XML  
  *New feature: "Search & Process" is able to search on properties values  
  *New feature: "Search & Process" is able to update, insert and delete properties (prop='' to delete it)
  *New feature: All currencies are now available in unit page (Thanks to KCurrencyCode)
  *New feature: Properties are displayed on tooltips
  *New feature: Open property picture associated to an object
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 10 May 2010 15:21:33 +0200
 
skrooge (0.7.0)
  *Correction bug 225855: Monthly Report: difference in percentage is wrong 
  *Correction bug 225980: Share download not in primary currency : value not correct
  *Correction bug 226451: .skg file incorrectly identified as password-protected ==> New document icon to identify encrypted files
  *Correction bug 228808: Gnucash import: scheduled operation at 0 euros 
  *Correction bug 228904: Gnucash import should not take into account recurrent operation containing loan formulas 
  *Correction bug 230175: Sometimes report plugin resizes Skrooge over the screen size 
  *Correction bug 232937: Search & Process : if a category has no operation yet, it doesn't appear in the possible categories for "update" 
  *Correction wis 228901: Manage Liability accounts (loan, etc...) 
  *Correction wis 197409: There's no way to define initial balance of non-OFX account 
  *Correction wis 224933: A legend in the graphics 
  *Correction wis 224042: Possibility to store several CSV import schemes ==> Implemented by regular expression in automatic mapping.
  *Correction wis 225818: Change skrooge desktop file description 
  *Correction wis 226963: Export CSV of split operations 
  *Correction wis 228170: Skrooge must be able to import skg file 
  *Correction of forecast computation on scheduled operations
  *Correction of export of "Initial balance" for QIF and CSV
  *Correction of import of "Initial balance" for QIF and CSV
  *Correction of import of "Initial balance" for OFX
  *Correction: Better error message in case of repository of document is RO
  *Correction on confirmation message
  *Correction selection on graph (histogram and stack)
  *New feature: "Weighted moving average" in reports
  *New feature: Specific font and color for disabled schedule (nbtime = 0)
  *New feature: Addition of "First date" and "Last date" in trackers
  *New feature: Amortization table
  *New feature: import gnucash document
  *New feature: import kmymoney document
  *New feature: import skrooge document (can be used to merge documents)
  *New feature: import grisbi document
  *New feature: import homebank document
  *New feature: export kmymoney document
  *New feature: export skrooge document (without history)
  *New feature: possible to create a bookmark even when a bookmark is already selected
  *New feature: button to clean history (reduce the size of the file)
  *New feature: all settings in only one file. WARNING: check your settings.
  *New feature: generic modeler is ready to be used by other applications.
  *New feature: "5 main variations" in monthly report.
  *New feature: New key accelerator to enable editor of current page
    
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 05 Apr 2010 20:00:00 +0200

skrooge (0.6.0)
  *Correction wis 215668: Dashboard is too big to be a real dashboard 
  *Correction bug 216520: Incorrect import of a transfer when inside a splitted operation (a splitted operation can not be a transfer)
  *Correction bug 217896: UK Currency and Date formats displayed for Scheduled Transactions in Dashboard
  *Correction bug 217743: Configuring Banks and Accounts Section (Bank name update issue)
  *Correction bug 219791: No progress bar during export QIF 
  *Correction bug 219750: Delete key in split table remove the full line 
  *Correction bug 214508: Provide a balance evolution graph 
  *Correction wis 220659: Option to "Apply rules on to imported operations" automatically after an import 
  *Correction cra 220936: Crash on double click on bookmarks 
  *Correction cra 222340: Freezes after some time 
  *Correction bug 222339: CVS import: problem with decimal point and comma 
  *Correction wis 220663: Selected operations must still visible after a sort modification 
  *Correction wis 223848: make libofx an optional dependency 
  *Correction wis 224676: keyboard shortcut for modify and add operation 
  *Correction wis 209314: key scrolling does not work, and click on a line has odd behaviour 
  *Correction bug 224932: Graphic Report SVG export bug + wish on a legend 
  *Possible to define favorite account
  *Possible to define favorite search
  *New gui for search and process
  *Delete icon on each suboperation line
  *Compatibility with bespin theme
  *Do not collapse tree after editing one of it's items
  *More options in "Report" page
  *New function to delete unused categories
  *Selection in pages list is now synchronized with current page
  *New option in contextual menu of report to hide bottom tool bar
  *Edition of splitted operations by single click
  *Clean button in operation table is renamed "Clear form"
  *Better export QIF for investment
  *Better display on reports (average, min and max are displayed if only one curve is drawn)
  *Better display on reports (linear regression is displayed if only one curve is drawn)
  *Option to show/hide average and limits in graph
  *Selection of year for interets computation
  *Correction in sum of operation computation when suboperations are selected
  *Graph proportion adapted to view size
  *"Account position" is replaced by "Ending balance"
  *Avoid cpu loop when double click on operation fields on KDE 4.4
  *Completion based on substrings
  *Better import of QIF files when both side of the import don't have exactly the same date
  *Correction on update category and tracker for transfers
  *Completion on comments
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sat, 06 Feb 2010 09:00:00 +0100
 
skrooge (0.5.5)
  *Disable some functions on sub-operations
  *Correction on update of a splitted operation by a split returned by Fast Edition
  *Correction bug 215995: SQL Error when attempting to display a report in history mode
  *Correction bug 215754: Invest account is incorrectly imported as current account 
  *Correction bug 214809: Incorrect import of a transfer 
  *Correction bug 214851: Incorrect import of 'investment account' QIF file 
  *Correction bug 216348: Account filters synchronisation problem in the operation HMI 
  *Correction bug 216522: Incorrect import of transfer (twice imported) 
  *Correction bug 216551: Click in blank area make 'date' widget to extend its size 
  *Correction bug 216514: Incorrect import of QIF file when account names are similar 
  *Correction bug 216520: Incorrect import of a transfer when inside a splitted operation (transfer of suboperation is not supported)
  *Correction crash 215992: Skrooge crash when clicking on "rapport" menu   
  *Correction regression on "Open report" (P0)
  *Invertion of colors in report (more saturation for new operations)
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sun, 29 Nov 2009 15:00:00 +0100
 
skrooge (0.5.4)
  *Correction bug 211579: Irregular percent value in monthly report amounts in accounts 
  *Correction bug 212313: Can not update a lot of operations 
  *Correction bug 211029: Skrooge should have an better account evolution graphic 
  *Correction bug 213783: Account balance computation is inaccurate 
  *Correction bug 214045: Import CSV date format problem 
  *Correction bug 214097: Can not search on multiple criteria. (OR is not supported)
  *Correction bug 214157: Impossible to import an ofx file from a directory containing special characters 
  *Correction bug 214462: Does not use primary currency unit when importing, and does not warn on import of splitted operation with multiple currencies 
  *Correction bug 214447: Auto save the open document at closing 
  *Correction bug 214794: Incorrect report of warning when importing QIF file 
  *Correction bug 214809: Incorrect import of a transfer 
  *Correction bug 214849: CSV export from grid is not correct 
  *Correction bug 214904: Can not download a stock/share quotation 
  *Correction bug 214851: Incorrect import of 'investment account' QIF file 
  *Correction bug 215114: Button to customize dashboard 
  *Correction bug 215620: Can not import QIF file with skrooge version SVN 1052520 
  *Correction bug 215656: History reports are wrong if first date is not selected 
  *Correction bug 215658: Some editors are modified when a bookmark is created 
  *Correction on double click of a template of transfer
  *Update of both side of a transfer is now possible
  *Only one fast edition. User is be able to lock some fields before.
  *Interest can be computed with 360 and 365/366 days method
  *New splashscreen size
  *New graph gui with "Quarters", "Semesters", "Weeks" and "Days"
  *Zoom with CTRL+wheel on graph
  *Dashboard is automatically launched when a new document is created
  *Use of graph component in unit page
  *New button to clean editor in operations page
  *Correction on scheduled transfers
  *New report widget for dashboard (all reports can be added to dashboard)
  *Addition of "Del" shortcut to delete suboperations in split panel
  *New tooltip on operation status
  *New function "Open sub operations" to display all sub operations. Useful to filter them.
  *New function to reconciliate an account from bank page
  *Better QIF import/export of account type 
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 23 Nov 2009 14:00:00 +0100
 
skrooge (0.5.3)
  *Correction bug 209451: Display quantity of each unit 
  *Correction bug 209457: Number of decimal for each unit must be different 
  *Correction bug 209453: Impot must avoid double even when operations are not validated 
  *Correction bug 209529: Unable to reconcile. Delta zero but "Validate checked operations" tick still grayed out
  *Correction bug 208939: "Search and process" does not work anymore 
  *Correction bug 209610: Skrooge doesn not work if "Maximum undo depth" is 0 
  *Correction bug 209542: Automatic conversion of schedule 
  *Correction bug 209672: Amount of indexes must be displayed without unit symbol 
  *Correction bug 209705: Importing investments from csv doesn't import the dollar amount of shares purchased 
  *Correction bug 209705: Find&Group is now able to detect share purchase/sale
  *Correction bug 209702: Need the ability to be able to manually group transfers 
  *Correction bug 209914: executable bits set for skgalarmboardwidget.h 
  *Correction bug 209905: currency import is broken
  *Correction bug 209912: rpmlint warnings after installation: unused-direct-shlib-dependency 
  *Correction bug 209053: Savings account support request 
  *Correction bug 210946: columns are always resized to content when opening operations tab 
  *Save icon in tab bar to overwrite bookmarks or current context
  *New dashboard plugin for highlighted operations
  *New dashboard plugin for estimated interests
  *"Backward" & "Forward" navigation on pages
  *New unit "Swedish krona"
  *New command to open operations modified during last user action (useful after an import or a processing)
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 19 Oct 2009 12:00:00 +0200
 
skrooge (0.5.2)
  *Correction bug 207927: skrooge summary field uncomplete bank account name 
  *Correction bug 208130: 'Import CSV Unit' menu puts data into the 'Operations' tab 
  *Correction bug 208210: Multiple clause research/update in french 
  *Correction bug 208194: Skrooge loose all data on file migration 
  *Correction bug 208040: Error when entering shares information 
  *Correction bug 208459: Skrooge crashes when changing tab 
  *Correction bug 209317: key scrolling very long 
  *Better performance in report by using QTimer
  *Better performance bank page by using QTimer
  *New SKGDateEdit with more features
  *Delivery of default categories and bookmarks for pt. Thanks Caio de Campos Ferreira.
  *Better performance when opening pages
  *Correction on monthly report for a better display with dark theme  
  *New widget on dashboard for alarms
  *SKGDateEdit validation on lose focus
  *Automatic detection of CSV separator during import
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sun, 04 Oct 2009 16:00:00 +0200

skrooge (0.5.1)
  *Correction bug 205471: Impossible to know how to check an operation 
  *Correction bug 205466: Date missing in reports 
  *Correction bug 193426: Ability to create from scratch a "recurrent operation" 
  *Correction bug 203787: Balance should be displayed for each operation in the operation context. Correction done: balance is displayed on tooltip because it's better for performances than in column.
  *Correction bug 206894: Crash second import CSV 
  *Correction bug 206459: "Search & process" must be able to do complex update 
  *Correction bug 199539: Dashboard must be customisable 
  *Correction bug 207249: rpmlint error: debuginfo-without-sources (including a fix) 
  *Correction bug 207246: rpmlint warning shared-lib-calls-exit /usr/lib64/libskgbasemodeler.so.0.5.0 exit@GLIBC_2.2.5 (for fedora packaging)
  *Correction bug 207232: skrooge must use kfilterproxysearchline 
  *Correction bug 207274: "Fast edit" behavior must be modifiable by settings 
  *Correction bug 191966: Treeviews collapsed when updated 
  *Correction bug 207672: Align amount values on the right for cleaner views 
  *Correction bug 207713: Display some information after applying a process 
  *Correction bug 200790: Search creation doesn't take not validate predicate 
  *New function to create template of operations
  *New function to schedule templates
  *New function to create template from existing operations
  *Double click on template creates the operation
  *New shortcut for import
  *Attribute to define the maximum number of occurrence for scheduled operations
  *Attribute to define the last occurrence date
  *A setting allows to create automatically a template when an operation is scheduled
  *Selection is done on duplicated object after a "Duplicate"
  *Selection is done on created template after a "Create template"
  *Correction message in history when an object is deleted
  *Download button always visible on unit plugin
  *Infinite symbol when number of occurrences is not checked
  *Addition of "Custom..." on graph dates
  *New spash screen
  *New function to overwrite bookmarks after a modification
  *Filter capability on "search & process" table
  *Editors are no more clean when the selection is empty. A second click is needed
  
 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sun, 20 Sep 2009 00:00:00 +0200
 
skrooge (0.5.0)
  *Correction bug 201316: import qif extra tag support
  *Correction bug 201157: Graphs no longer displayed
  *Correction bug 201289: Compiler error on GCC 4.1.2 (enum with KDE_EXPORT or similar macro)
  *Correction bug 201451: qif import other liability account type
  *Correction bug 201697: Pointed operation can be deleted
  *Correction bug 201800: Filter issue with number formatting 
  *Correction bug 202167: Payee list should be ordered in a case insensitive way
  *Correction bug 202341: Combobox lists are not sorted in a locale-aware way 
  *Correction bug 202384: Skrooge always wants to update report bookmarks on exit 
  *Correction bug 202636: Hidden columns are sometimes displayed   
  *Correction bug 203894: Skrooge crashes when launched with --nofork 
  *Correction activation of "Values" button in "Units" page
  *New password is no more displayed when changed
  *New function to merge an imported operation with an operation manually entered
  *New refund icon
  *New widget for dashboard "Shares and indexes"
  *Modification titles on "operation" pages to differentiate "operations" and "sub operations"
  *"sub operations" can be identified by a specific font and color (see settings)
  *Correction bug: Created search is not selected after creation
  *Correction performance issue on zoom when antialiasing is enable
  *Addition of 5 main categories of expenditure in monthly reports
  *Rename "Bookmark" for operation by "Highlight"
  *Rename "Trait" by "Process"
  *Set minimum size for amounts fields
  *Only one "Import..." command for all supported format.
  *Support of QFX import
  *New settings for import CSV
  *Dashboard is now clickable
  *Dashboard is modifiable (see contextual menu on each widget) and state can be saved
  *Addition of "Fast edition" without amount modification. It's useful to modify imported operations
  *Only one instance of skrooge can be launched.
  *Imports can be done in command line. Example "skrooge myfile.ofx" with skrooge running
  *If an invalid expression is entered for the amount, the field is written in red, and the expression is kept to allow correction from the user (previously, 0 was displayed).
  *"New tab" is now managed by Ctrl+Shift+T
  *Popup to ask if you want to save current state of pages.
  *Bookmark storage is no more dependant of language translation

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Fri, 28 Aug 2009 21:00:00 +0200

skrooge (0.3.0)
  *Correction bug 191970: Attach receipts (images) to transactions
  *Addition of "Trackers" for lines in report
  *Correction bug 195254: Don't allow to link operations to a closed tracker
  *Correction bug 195026: A setting must allow to clean history when the application is [saved]
  *Correction bug 194826: End user must be to validate an import
  *Correction bug 196444: Can not validate reconciliation (delta = -0.00)
  *Correction bug 196745: Categories are not added to a split operation
  *Correction bug 197287: Add backup file management
  *Correction bug 197288: Manage working document copy
  *Correction bug 197835: Reconciliation mode : currency problem
  *Correction bug 198077: Comments do not appear in every Operations windows
  *Correction bug 198583: foreign currency accounts should display in their native currency in dashboard.
  *Correction bug 198786: Categories are not easily read
  *Correction bug 199196: build error in skgbankgui
  *Correction bug 199543: Splash screen display must be defined by settings
  *After an import, skrooge is able to execute some rules to clean imported operations
  *Correction in dashboard
  *Addition of "Reset state" on tabs to reset default state of plugins
  *Most important category and refund are displayed for split operations
  *Display detail of selected operations in information area of "operation" page
  *Main tab position can be selected in settings

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sat, 11 Jul 2009 16:00:00 +0200

skrooge (0.2.9)
  *Correction bug 2787146: Single click on bookmarks
  *Correction bug 191972: Selection is not well kept
  *Correction bug 191975: Add Labels for X values in histograms and stack reports
  *Correction bug 191968: Information string on top of page is too long (no word wrap)
  *Correction bug 192687: fonts too large on report
  *Correction bug 192832: Do not take amount sign into account for transfers
  *Correction bug 191967: Skrooge must be able to display an history global and for each account.
  *Correction bug 193423: context list scrolls down only after 8 mouse molette rotation
  *Correction bug 193431: "recurrent operation" trigger can not be set on D day
  *Correction bug 193421: bugs to be registered via bug database (not email)
  *Correction bug 194650: Fast edit must work on Tracker attribute
  *Correction bug 194765: Number of operations by account must be displayed in bank plugin
  *Addition of bank icon on account combo boxes
  *Addition of Canadian dollar
  *Addition of one more view (based on selection) in operation plugin
  *Better managment of dependency between units
  *New settings on unit download
  *Skrooge tries to find the most adapted account during import file without account information inside
  *Update of nls part of data model when language is changed
  *"Open report" on an element of a report open a new report with exactly same settings than first one
  *Addition of "scheduled operations" in dashboard plugin
  *New operation editor
  *Better management of messages in status bar
  *New editor in unit plugin
  *Middle click is able to open new page from context or bookmarks

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sun, 31 May 2009 23:00:00 +0200

skrooge (0.2.8)
  *Correction bug 2782399 :Skrooge must create a backup file
  *Correction bug 2783111 :Typo
  *Correction bug 2515571 :New plugin to follow refunds
  *Correction bug 2785938 :Single click
  *Correction bug 2786183 :Load standard categories?
  *Correction bug 2682777 :Label are not well placed
  *Correction bug 2579926 :Improve category plugin performances
  *Correction bug 2665265 :Edit names directly in treeview
  *Correction for amount comparison in validation mode
  *Correction import ofx when bankid is empty in ofx file
  *Correction mime type for KDE4
  *Better performances on open document with password required

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 04 May 2009 15:00:00 +0200

skrooge (0.2.7)
  *Correction bug 2513827 :global print function
  *Correction bug 2692667 :Automatic icon resize is driven by bookmarks only
  *Correction bug 2714592 :Skrooge must be able to manage properties on all objects
  *Correction bug 2733958 :Auto hide
  *Correction bug 2747379 :Only allow to "pre-check" operations
  *Correction bug 2750464 :Impossible to update the date of a split operation
  *Correction bug 2778333 :Enhance hidden panels discoverability
  *Correction bug 2777697 :bookmark modifications are not kept when closing skrooge
  *Old method to split an operation is no more available
  *"Undo document" is no more in toolbar by default
  *Remove useless icons from tool bar
  *When "Save" is clicked in a new document, automatically interpret it as "Save as"
  *New menu with shortcuts to open pages
  *Better automatic linear scale in reports

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 27 Apr 2009 15:00:00 +0200

skrooge (0.2.6)
  *Correction bug 2692651 :antialias on graphs
  *Correction bug 2692665 :Wrong currency label in stock tab
  *Correction bug 2692605 :Title of a report for a selection contains only ",,,,"
  *Correction bug 2692648 :New dialog box on exit
  *Correction bug 2692664 :add support for split & grouped operations in fast edition
  *Correction bug 2692656 :More details on recurrent operations view
  *Correction bug 2645610 :Bad performance on "find transfers"
  *Correction bug 2692681 :Reconciliate mode in operations view
  *Correction bug 2706987 :no report generated
  *Correction bug 2716734 :Better category & unit creation during operation creation
  *Correction bug 2720760 :Popup messages are displayed twice

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sun, 29 Mar 2009 20:00:00 +0200

skrooge (0.2.5)
  *Correction bug 2664613 :Not possible to show a column without reseting all
  *Correction bug 2633375 :2 columns for quantity
  *Correction bug 2674862 :Bad performances on undo/redo for categories
  *Correction bug 2675606 :Bookmark reorder doesn't work
  *Correction bug 2685241 :Add postive sign in amount field for positive operations
  *Correction bug 2685236 :Option to ask again if modified bookmark should be saved
  *Correction bug 2685270 :Impossible to modify comment on operation and sub operations
  *Correction bug 2687115 :filter value is not save whan bookmark a report
  *Correction bug 2685335 :Pie like in firelight
  *Debug plugin is able to do a "EXPLAIN QUERY PLAN"
  *Path for bash is not more hardcoded in script for BSD compatibily

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 16 Mar 2009 14:00:00 +0100

skrooge (0.2.4)
  *Correction bug 2608762 :Cannot create a bookmark folder if no bookmark exist yet
  *Correction bug 2633444 :Add "import std categories" in import menu
  *Correction bug 2638120 :Unable to import cvs or qif from "la banque postale (fr)
  *Correction bug 2564982 :Creation of default bookmark
  *Correction bug 2640959 :Impossible to import OFX file

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 02 Mar 2009 20:00:00 +0100

skrooge (0.2.3)
  *Correction bug 2608762 :Creation of category branch in one shoot
  *Correction bug 2608768 :Crash in category creation
  *Correction bug 2586878 :skrooge crashes if category too deep
  *Correction bug 2446175 :better split operations
  *Correction bug :sum column always displays 0 in category page
  *Addition of comment on suboperations
  *Better performances to compute next values for operation numbers
  *Icon in system tray
  *"export SKGTRACESQL=xxx" is able to trace all sql order taking more than xxx ms

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 23 Feb 2009 21:51:12 +0100

skrooge (0.2.2)
  *Correction bug 2556346 :README should list kdesdk-scripts as buildtime dependency
  *Correction bug 2556406 :Pound sterling missing in currency list, difficult to add
  *Correction bug 2556340 :CMakeLists should use correct libraries and check for Sqlite (Thank you lindevel for the patch)
  *Correction bug 2555861 :"make package_source" contains too many files
  *Correction bug 2557366 :Wrong password
  *Correction bug 2556381 :Impossible to change negative quantities into positive ones?
  *Correction bug 2530932 :Better autostart bookmarks management

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Wed, 11 Feb 2009 21:51:12 +0100

skrooge (0.2.1)
  *Correction bug 2517386 :Move of category is not done
  *Correction bug 2519334 :Smooth scolling in category view
  *Correction bug 2517388 :Selection must be set on created operation
  *Correction bug 2519847 :Duplicate operation
  *Correction bug 2520516 :Security of skg file
  *Correction bug 2545021 :compilation fails because po/listFiles.sh is not executable
  *Correction bug 2549911 :Import standard categories
  *Correction bug 2526148 :Double click on graph in report
  *Correction bug 2520530 :KToolBarPopupAction for undo/redo
  *Addition of icon for stocks
  *Bookmark can be deleted from contextual menu
  *Icons are resized relative to list width

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sun, 01 Feb 2009 20:00:00 +0100

skrooge (0.2.0)
  *Correction bug 2489823 :automatically remember changes on columns for bookmarks
  *Correction bug 2487934 :Specific Column for "scheduled" icon
  *Correction bug 2487866 :deselect lines in table views
  *Correction bug 2487981 :add a column for total of operations including subcategories
  *Monthly report is now base on QWebView and contain google graph
  *Addition of exports in report tables (TXT, CSV)
  *Report can be opened from bank, operation or unit page
  *Report can be opened from report
  *Better graph
  *Addition of print
  *Long transaction can be interrupted
  *Better warning message with history

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 19 Jan 2009 20:00:00 +0100

skrooge (0.1.9)
  *Better contextual menu on tables
  *New feature in monthly report
  *Better performances for monthy report generation
  *Better graphics in report plugin
  *Addition of exports in all tables
  *Addition of exports in report graphs (PDF, SVG, picture)

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sat, 03 Jan 2009 20:00:00 +0100

skrooge (0.1.8)
  *Correction bug 2299303 :Calcul de balance erroné
  *Correction bug 2446162 :Distinction for future operations
  *Correction bug 2446184 :Reduce spacing between rows
  *Correction bug 2256687 :No more icon in application menu
  *Correction crach in qtdesigner due to SKGTableView
  *Addition "open bookmarks" to display all bookmarked operations
  *Addition of sale of stocks
  *Addition of "split of stock"

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Tue, 22 Dec 2009 20:00:00 +0100

skrooge (0.1.7)
  *Correction bug 2385144 :Unexpected display of unit in operations list
  *Correction bug 2390926 :Problem with Action/$/€
  *Correction bug 2390747 :Operations transferred not found
  *Correction bug 2384834 :Multi-Selection and Ctrl-P does not work
  *Correction bug 2311993 :Difference between operation and valuation not done
  *Correction bug 2385059 :Possibility to remove (modify) buggy unit value
  *Correction bug: Inversion year(s) and day(s) in recurrent operations
  *Correction wrong mapping on all table when column are reordered
  *Correction request 2379612: categories edition & creation
  *Selection is now kept after modifications
  *New "Monthly report" plugin
  *Computation of RIB key
  *Addition contextual menu on all table
  *Addition contextual menu on tabs
  *Addition of short date in tooltip on fancy date
  *Addition of smooth scrolling in table views
  *Addition of indexes (CAC 40, NASDAQ, ...) in data model

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Tue, 15 Dec 2009 20:00:00 +0100

skrooge (0.1.6)
  *Support of import unit values in CSV format like:
		date;value
		01/01/2008;50
		03/03/2008;60
  *Correction bug 2340201 :crash on QIF export
  *Correction bug in import if 2 operations with same attributes (date, amount, ...)
  *Correction concerning performance issue in all tables
  *Correction bug 2299354 :Ability to change and memorize column width
  *Columns can be switched in "auto resize" mode
  *Correction bug 2298982 :An account shall have a currency
  *Preferred table's organisation can be save as default
  *Better organisation of pies in report plugin

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Tue, 01 Dec 2009 20:00:00 +0100

skrooge (0.1.5)
  *Correction bug 2307068: Incorrect import of QIF file
  *Columns order is now saved in bookmark for operation, account, recurrent operations and unit plugins
  *Sort is now saved in bookmark for operation, account, recurrent operations and unit plugins
  *Correction bug 2327676: Many import QIF correction
  *Columns can be show or hidden (see contextual menu) and this state is saved in bookmarks
  *Better performances (x100) in report.
  *Correction bug 2316459: skrooge does not support out-of-source build
  *Correction bug 2298621: Unable to delete a "principal currency".
   ==> It's now possible to delete a unit except if this unit is already used by at least one operation
  *Correction bug 2326576: Field empty by default
  *Correction bug 2306914: "Tip of the day" dialog can not be removed

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Tue, 24 Nov 2009 20:00:00 +0100

skrooge (0.1.4)
  *New icons
  *Bookmarks folders are opened sorted and focus is set on the first one
  *Correction (inversion sign of operations) in transfer creation
  *Buy stock is now possible
  *Correction bug 2298773: Unit and amount are not aligned
  *Correction bug 2298674: Montant en EUR même si unité EUR n'existe pas
  *Correction bug 2298471: Unable to change type of a unit
  *Correction bug 2299384: File/Close closes the current page
  *Correction bug 2299524
  *Correction bug 2299519: "Mode" should not be mandatory
  *Optimisation in open "operation" pages
  *Correction bug 2299600: Values of a unit are not sorted out
  *Correction bug 2299947: Unit can not be used if no symbol is defined
   ==> Symbol is now mandatory
  *Correction bug 2301337
  *Correction bug 2300013:Une ventilation est une catégorie
  *Correction bug 2278703:Zoom fit when opening report tab
  *Comment on account
  *Tab name is now set with the name of the bookmark

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Tue, 17 Nov 2009 20:00:00 +0100

skrooge (0.1.3)
  *Vertical alignment in all views
  *Detection of the sign of an operation (during creation) based on category
  *Average in report
  *Sum column is now displayed only if more than one column is displayed in report plugin
  *Correction bug in report when sort is set on last column and the report is refreshed with less columns
  *Correction abend on delete
  *Modeler is now able to store messages on transaction.
  *Display messages by notification
  *Addition of recurrent operations (creation, update, delete, automatic insertion, warn, ...)
  *Correction in duplication of recurrent operations: Now, status, bookmark, importation id are not duplicated
  *Correction on optimisation of undo/redo transaction: optimisation removed :-)
  *Multi selection is supported by recurrent operations creation icon
  *Massive update on recurrent operation
  *Implementation enhancement 2272115 concerning calculator behavior
  *Correction update of split operations
  *Set default order in all tables
  *Sort bookmark by drag and drop

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Sat, 14 Nov 2009 20:00:00 +0100

skrooge (0.1.2)
  *Support of categories in QIF import
  *Support of csv file with empty lines
  *Support of categories in QIF export
      *Correction bug 2229770: automatic erase of duplicated operations
  *New design for operation and account plugin
  *Addition of first draft of recurrent operations

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Tue, 10 Nov 2009 20:00:00 +0100

skrooge (0.1.1)
  *Optimisation widget refresh after a huge QIF import
  *Optimisation performance of QIF export
  *Optimisation performance of CSV export
  *Optimisation performance of "find and Group transfers"
  *Addition of "Close", "Close All" and "Close All Other" to manage pages
  *Correction on download unit
  *Addition of the name of the file in the title of the man window
  *Addition of sort in report plugin

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Tue, 03 Nov 2009 20:00:00 +0100

skrooge (0.1.0)
  * QIF import/export
  * CSV import/export
  * Basic graphs
  * Several tabs to help you organize your work
  * Infinite undo/redo (even after the file was closed !)
  * Instant filtering on operations
  * Infinite levels of categories

 -- maintainer Stephane MANKOWSKI <stephane@mankowski.fr>  Mon, 02 Nov 2009 20:08:00 +0100