forked from KDE/kmymoney
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
8990 lines (7294 loc) · 394 KB
/
ChangeLog
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
2009-05-11 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed cmake tests - Patch provided by Holger
2009-05-11 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added splitup-kde-chunk-online script to contrib directory
* Changed documentation build to use this script instead of a local copy
2009-05-10 Tony Bloomfield <gandalf1189@users.sourceforge.net>
* Don't delete all customized reports from database!
2009-05-09 Fernando Vilas <fvilas@iname.com>
* Updated schedule test cases to pass after Tony's patch
* Fixed a few warnings about const on primitive return types
* Made MMStorageSql inherit from KShared
* Changed the include order on reports test and pivottable test to make
tests compile on Slackware
2009-05-09 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Galician translation from Marce Villarino
* Show scheduled transactions during reconciliation and don't show the
initial dialog for overdue scheduled transactions anymore
2009-05-09 Tony Bloomfield <gandalf1189@users.sourceforge.net>
* Fixed #2779291
- Correct precision in formatted fields
- Fix potential upgrade problem
2009-05-08 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Romanian translation from Cristian Onet
* Fixed precision problem in transaction editor
2009-05-07 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed #1910270 (GNUCash Import Options large in PDF docs)
2009-05-07 Alvaro Soliverez <asoliverez@gmail.com>
* Updated user documentation - submitted by John Hudson
2009-05-06 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added date display for certain ledger entries
2009-05-03 Alvaro Soliverez <asoliverez@gmail.com>
* Updated Argentinian translation
* Updated Spanish translation
2009-05-03 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated German translation
2009-05-02 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Regenerated message files
2009-04-30 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added option to turn on expert mode in settings dialog
2009-04-29 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Finnish translation from Mikael Kujanpaa
2009-04-27 Thomas Baumgart <ipwizard@users.sourceforge.net>
* More fixes to the online documentation generation
* Preserve access rights when saving a local file which was owned
by another user but we had group write access
2009-04-26 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed generation and upload of PHB and online manual
* Added more output to configuration of sqlite support
* Fixed some tips
* Minor changes to the project handbook
* Added patch by Matt Blythe (payeeCategoryPatch.diff)
2009-04-18 Thomas Baumgart <ipwizard@users.sourceforge.net>
* For scheduled transactions with the estimate option turned on, an imported
transaction with an amount in the range of +/- 10% of the scheduled amount
will match
2009-04-16 Tony Bloomfield <gandalf1189@users.sourceforge.net>
* Add missing error check on saveAsDatabase
2009-04-15 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed balance display in ledger when all transactions of an
investment account are filtered. Patch provided by Thomas Baumgart
2009-04-15 Thomas Baumgart <ipwizard@users.sourceforge.net
* Fixed #2732207 (Unable to unmatch transaction matched by OFX import)
for plain file based version. DB code still needs to be fixed.
2009-04-14 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added documentation of new file wizard (screen shots still missing)
2009-04-13 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed overdue scheduled transactions in pivot to display
as happening tomorrow instead of the original date
2009-04-12 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Removed return in void setMatchData() introduced two days ago
2009-04-11 Alvaro Soliverez <asoliverez@gmail.com>
* Changed MyMoneyReport to use EDetailLevel instead of bool
* Cleaned up code in MyMoneyReport and related classes
2009-04-11 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Changed 'Schedule' --> 'Scheduled transaction' (patch provided by
Peter Hargreaves)
2009-04-11 Tony Bloomfield <gandalf1189@users.sourceforge.net>
* Update database structures to Version 5
- add missing fields in Payee, Split
- fix crash on duplicate report name
2009-04-10 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed permission problems during 'make distcheck'
2009-04-09 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Changed the generation of PDF versions of the documentation
2009-04-08 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed bko #188328 (Delete ransaction option is not disabled in closed
accounts) with patch provided by Ian Neal
2009-04-07 Alvaro Soliverez <asoliverez@gmail.com>
* Added line width option to charts
2009-04-07 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Improved 'Update all accounts' functionality to require less user activity
2009-04-05 Alvaro Soliverez <asoliverez@gmail.com>
* Initialize report type value when loading a custom report
2009-04-05 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated French translation from Patrick Petit
2009-04-04 Alvaro Soliverez <asoliverez@gmail.com>
* Handle invalid chart types of reports in a graceful manner
* Show only investments accounts in the account selector
of Investment View, including when the investment account is
a subaccount
* In the account selector, disable a parent account if it does not
match the required type
2009-04-04 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Speedup loading of large files when filename is passed on command line
2009-04-03 Alvaro Soliverez <asoliverez@gmail.com>
* Reverted previous commit because some accounts are not showing
2009-04-02 Alvaro Soliverez <asoliverez@gmail.com>
* Show only investments accounts in the account selector
of Investment View
2009-04-02 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Preset payee name with the previous one used for a new transaction
2009-04-01 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Enable OFX plugin by default
2009-03-31 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed the text filter when it does not contain a text and
the main split matches that but a split does not
* Updated user documentation - submitted by John Hudson
2009-03-28 Alvaro Soliverez <asoliverez@gmail.com>
* Updated user documentation - submitted by John Hudson
* Further improvements of text filter
* Updated Spanish translation
* Updated Argentinian translation
2009-03-30 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Further improvements of text filter
2009-03-28 Alvaro Soliverez <asoliverez@gmail.com>
* Updated user documentation - submitted by John Hudson
2009-03-28 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added MyMoneyFile::referencesClosedAccount() methods
2009-03-26 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed Net Worth Today report to show current date's balance
instead of end of the month -- bug #2714063
* Updated Argentinian translation - Provided by Sergio Minini
2009-03-25 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch from Cristian Onet (payees_view.patch)
* Fixed resize problem of splitter in payees view
* Added persistency to the splitter settings
* Added patch from Cristian Onet (plugins_settings.patch)
* Added missing desktop items to OFX plugin
2009-03-23 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed balance problem with DB backend
* Updated .desktop files with Romanian entries from Cristian Onet
2009-03-22 Fernando Vilas <fvilas@iname.com>
* Fixed bug in transaction date filter for db
2009-03-21 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Resolved some compiler warnings
2009-03-18 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Also reload OFX bank information files during setup if their
size is less than 1024 bytes
2009-03-17 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed month-by-month budget report when fiscal year starts in a month other than January
2009-03-16 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed text matching bug in transaction reports when splits are displayed
on its own, eg Transactions by Category reports
* Updated Spanish translation
* Updated Argentinian translation
2009-03-14 Alvaro Soliverez <asoliverez@gmail.com>
* Added Investment Moving Average Price Graph
2009-03-11 Fernando Vilas <fvilas@iname.com>
* Removed redundant QString ctor calls in db code
* Fixed several warnings in db code
* db now remembers online banking KVPs
2009-03-11 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed overflow error in Total Rows of CashFlow Summary
* Fixed overflow error in Total Rows of Assets and Liabilities Summary
* Fixed currency conversion error in Budget reports
2009-03-11 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch by Holger
0001-Added-build-types-Debug-Debugfull-Profile.patch
2009-03-09 Alvaro Soliverez <asoliverez@gmail.com>
* Added Investment Price Graph
* Added patch by Holger:
0002-turned-bullets-off-and-simplified-the-chart-class-a.patch
* Updated Spanish translation
2009-03-09 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added option to skip stripping of online price info data
2009-03-08 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Dim update button if plugin status changed
* Added selection combo to negate text filter (not persistant yet)
* Use standard buttons for filter dialog
* Added patches by Holger:
0001-moved-calculateAutoLoan-to-MyMoneyForecast.patch
0002-Bugfixes-and-Preparation-for-cleaner-library-builds.patch
0003-Fixed-last-patch.patch
0004-OnMouseOver-in-Charts_NEW.patch
typo-in-0001-0003.patch
0001-added-fPIC.patch
* Show online balance for liability accounts in register as positive amount
2009-03-08 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed Forecast reports when start date is after current date
* Fixed Budget reports for monthly budget of foreign currency categories
2009-03-03 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Holger (0001-USE_QT_DESIGNER-Version-number-and-minor-fixes.patch)
2009-03-02 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Colin Wright (briefscheduleskipiconanddisable.diff)
2009-03-01 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Return valid value from PivotGrid::rowSet(QString id)
* Added patch provided by Colin Wright (schedulecalendarskipbutton.diff)
* Fixed a few button icons
2009-02-27 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added option 'Match names from start'
* Fixed spelling of principal in account templates
* Added splitter to payees view
2009-02-25 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Colin Wright (editcompoundoccurence.diff)
* Fixed connection for edit widget signal in schedule editor
2009-02-24 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated README.ofx
* Released 0.9.3
2009-02-23 Robert Wadley <robntina@users.sourceforge.net>
* Updated Summary view style.
* Updated "What's new" page for upcoming release
2009-02-23 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed register column resizing algorithm
* Show database options in File menu
2009-02-22 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Load addressbook for new user wizard in background
* Fixed bko#185212 (Default year prefix)
2009-02-21 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Load data for account template widget in the background
* Added patch provided by Colin Wright (fix3months_removefq_occurencePeriodToString.diff)
2009-02-20 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Holger
(0001-cmake-QtSqlite-and-small-tweaks.patch)
(0002-Installation-Versioning-and-Documentation-improvem.patch)
2009-02-19 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated regular expression for Financial Express price source
2009-02-18 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed problem in case additional fees for loans referenced another
asset or liability account
* Fixed bko#118285 (kmymoney online quotes are cached by KDE)
* Assigned icons to dialog buttons
2009-02-17 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed creation of unique bankID in MyMoneyStatementReader per statement
* Fixed unnecessary popup of dialog box in payees view
* Fixed calculator widget to use same decimal symbol as edit widget
* Fixed #1962055 (Crash in case AqBanking failed) Fix also requires
an updated KBanking package
2009-02-16 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed some issues around modification of addtional loan fees
* Removed Makefile.in
* Added patch provided by Colin Wright (stringToOccurence.diff)
* Added patches provided by Holger
(0001--non-fancy-sqlite3-support.patch,
0002-make-install-and-make-kmymoney-unstable_rpm.patch,
0003-added-fancy-qsqlite3-support.patch)
* Removed Makefile
* Added updated Russian default account template from Andrey Cherepanov
* Renamed ru_SU into ru_RU for templates
* Change tab between deposit/withdrawal if sign of amount changes
2009-02-15 Alvaro Soliverez <asoliverez@gmail.com>
* Updated Spanish translation
2009-02-14 Alvaro Soliverez <asoliverez@gmail.com>
* Added Argentinian account templates
* Fixed typos in Spanish templates
2009-02-14 Thomas Baumgart <ipwizard@users.sourceforge.net>
- Happy Valentine's Day
* Added patch provided by Colin Wright (oops.diff)
* Added testcase for the above correction
* Pass on plugin name to createInstanceFromLibrary()
* Use const reference for getters in plugin info object
2009-02-13 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Cristian Onet (patch_plugins.patch)
!!!!FILE FORMAT CHANGE!!!! The previous change causes the file format
to change slightly. Be prepared, that schedules may show wrong
payment periods when loaded in earlier versions of the program.
2009-02-13 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Colin Wright (use_compoundOccurence.diff)
2009-02-11 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Reverted parts of yesterdays patch
* Added patch provided by Colin Wright (addHalfMonths.diff)
* Added contrib subdirectory
* Fixed typos also in .pot and in .po files
2009-02-11 Alvaro Soliverez <asoliverez@gmail.com>
* Updated Argentinian translation
* Fixed typos in kmymoneygpgconfigdecl.ui and ksettingsgpgdecl.ui
2009-02-10 Alvaro Soliverez <asoliverez@gmail.com>
* Updated Argentinian translation
* Do not show investments accounts in detailAll charts
2009-02-10 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Colin Wright (use_occurencePeriod.diff)
* Added "don't ask again" feature to balance warning dialog
2009-02-09 Fernando Vilas <fvilas@iname.com>
* Fixed date calculation in SQL that was missed in my last patch
* Speed improvement in readSplit()
2009-02-09 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Colin Wright (schedules_multiplier_prep.diff)
* Remove link to payee from second split if name is removed from transaction
2009-02-08 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Italian translation from Vincenzo Reale
* Updated Brazilian translation from Marcus Gama
* Fixed French translation
* Updated Galician translation from Marce Villarino
2009-02-07 Alvaro Soliverez <asoliverez@gmail.com>
* Updated translation documentation to merge outdated po files
* Updated Spanish translation
* Updated Argentinian translation
2009-02-07 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed a sign issue with investment sell/buy imports from OFX
* Allow higher precision for price and share information from OFX
* Updated translations for de, pt and fr
2009-02-06 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed Balance After calculation in Home Page Payments
* Fixed one-time schedules duplicating in Home Page Payments
2009-02-06 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed CMake based build system (still not 100% compatible w/ autotools)
* Fixed auto detection of variable sizes for CMake based build system
* Fixed some more CMake related things (mostly cleanup)
* Added missing files
* Fixed typos in two messsages
2009-02-05 Alvaro Soliverez <asoliverez@gmail.com>
* Updated Spanish translation
2009-02-05 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added update for CMake build environment (a bit broken for me atm)
2009-02-04 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added trace functionality to HTTPS connections for OFX
2009-02-04 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed loan amortization calculation on reports when there
are multiple amortization splits
2009-02-03 Alvaro Soliverez <asoliverez@gmail.com>
* Updated Spanish translation
2009-02-03 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Show correct amount for multi-currency schedules
* Updated Portuguese translation from José Jorge
* Added home_pt.html from José Jorge
* Fixed #2558627 (Account entry widget mess about splits)
* Updated Romanian translation by Cristian Onet
* Fixed an OFX issue when the bank_id field was not filled
2009-02-02 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Removed dependancy to libxml2-devel
2009-02-02 Alvaro Soliverez <asoliverez@gmail.com>
* Updated Spanish translation
2009-02-01 Alvaro Soliverez <asoliverez@gmail.com>
* Code cleanup of calculateAutoLoan in kmymoneyutils
* Added interestSplit method to MyMoneyTransaction
* Added isInterestSplit method to MyMoneySplit
2009-02-01 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Colin Wright (occurenceToString.diff)
* Regenerated POT file and merged all PO files
* Updated German translation
2009-01-31 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed loan interest calculation in pivot reports when the loan
account is not included in the report - #2541605
2009-01-31 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added #2551345 (Maintain geometry of split transaction editor
* Added #2551417 (Deletion of the zero-value split records)
* Added #2551242 (ENTER focus to next split if is is already defined)
* Added patch provided by Colin Wright (halfmonth_200901241601.diff)
2009-01-30 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed loan calculation when the loan account itself is not
part of the report. More work needed on that area
2009-01-30 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Allow overriding header version for OFX requests
2009-01-29 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added icon to close button of balance chart dialog
2009-01-28 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added merge button to split transaction dialog (#2538561)
* Improved path detection for QT in sqlite.m4
2009-01-27 Alvaro Soliverez <asoliverez@gmail.com>
* Patch provided by Thomas Baumgart to show currency conversion
dialog when entering schedules involving foreign currencies
* Fixed schedule forecast calculation - bug #2507699
2009-01-26 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Anonymize budget values while saving as anonymized file
2009-01-25 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Removed dependency to libcurl and libxml++ from OFX plugin
2009-01-24 Fernando Vilas <fvilas@iname.com>
* Reworked balance calculations
* Standardized date and MyMoneyMoney formatted storage
* Fixed date calculations to work with SQLite
* Added (commented) code to support future MMSchedule KVP.
2009-01-24 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed #2530475 (Calculator (Value entry widget) bug!)
* Updated French translation from Patrick Petit
2009-01-23 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added 'Force SSLv3' switch to OFX banking setup wizard
* Removed some unused files
2009-01-22 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Applied patch provided by Colin Wright to clean up schedule frequencies
2009-01-19 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed sqlite detection problems with older autoconf versions
2009-01-18 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed problems reported by Doxygen
2009-01-17 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added Quicken 2004 and Quicken 2003 to the OFX plugin
2009-01-16 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Use KDE locale setting for date format in report subtitles
* Collect all statement reports and show them together in a single window
* Automatically detect mapped acount during OFX statement download
* Show the transaction selection dialog for autofill even if there
is only a single matching transaction
* Show warning if user wants to map a brokerage account to an online account
* Added icons to buttons on plugin selection dialog
2009-01-12 Alvaro Soliverez <asoliverez@gmail.com>
* Added missing include in kguiutils.cpp
* Added date to pivot reports subtitle
* Added date to transaction reports subtitle
2009-01-14 Tony Bloomfield <gandalf1189@users.sourceforge.net>
* Fix #2248020 - Allow passworded databases
* Remove redundant code
* Update database documentation
2009-01-14 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Improved OFX logging during setup
* Fixed layout for select database dialog
* Fixed slot for OK button in select database dialog
* Fixed translation issue
* Fixed MyMoneyMoney formatting problem with precision -1 that caused
14.04 to be shown as 14.4
* Added testcase for this problem
* Removed const qualifier from formatMoney() returnvalue
2009-01-13 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixes to the build system (make distcheck did not work due
to the changes for SQLITE3 support)
2009-01-12 Alvaro Soliverez <asoliverez@gmail.com>
* Added CashFlow Report
2009-01-11 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Romanian translation by Cristian Onet
* Added QT SQLITE3 support from
http://www.kde-apps.org/content/show.php/qt-sqlite3?content=23011
to the build system
* Building OFX support is now automatic if required libs are installed
* Allow arbitrary precision interest rates for loan accounts
* Fixed a bunch of warnings
2009-01-09 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Refactored the usage of the 'Private * d' construct
2009-01-08 Alvaro Soliverez <asoliverez@gmail.com>
* Added chart detail setting to forecast view
* Fixed sign of expected liabilities on cash flow summary
* Cleaned old code in querytable.cpp
2009-01-08 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated German translation
2009-01-07 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added Finnish translation from Raimo Ikonen
* Regenerated POT file and merged all PO files
2009-01-06 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Allow to load details for new investments if same security is used
2009-01-05 Alvaro Soliverez <asoliverez@gmail.com>
* Added chart to forecast view
2009-01-04 Tony Bloomfield <gandalf1189@users.sourceforge.net>
* Fix # 2217233 - Add option to import GnuCash notes as memos
2009-01-04 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added display of number of splits in file info dialog
2009-01-01 Thomas Baumgart <ipwizard@users.sourceforge.net>
* We welcome Slovakia as a new member of the Eurozone
(http://en.wikipedia.org/wiki/Eurozone)
2008-12-29 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Make menu item 'File information' available if build w/o debug support
* Added differentiation between QIF bank statement and QIF application import
2008-12-29 Tony Bloomfield <tonybloom@users.sourceforge.net>
* Import GnuCash notes as transaction memo
2008-12-27 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Don't include invalid account types in split editor account selection
2008-12-25 Alvaro Soliverez <asoliverez@gmail.com>
* Added moving average to report charts
* Cleanup of the charts code
* Added configuration of moving average days
* Added Moving Average vs Actual report
2008-12-23 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added testcases for the loader functions in MyMoneySeqAccessMgr
* Fixed last id detection in loader functions
2008-12-21 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed an uninitialized variable bug in the QIF importer
* Improved const-ness passing of parameters in Gnc importer
* Use QString for ids rather than QCString
2008-12-20 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Assign base currency to account if none is present during creation
2008-12-19 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Show different intro when editing an investment with the wizard
2008-12-18 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Reworked matching logic so that in case of multiple payees match,
the one with the largest match is taken. This returns the name
matching to the 'old' functionality of partial matching.
2008-12-17 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed MyMoneyQifProfile::possibleDateFormats so that it
always delivers at least one possible format
2008-12-15 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed display of total rows in charts
2008-12-15 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added OFX trace functionality
2008-12-14 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Czech translation from Marek Stopka
* Removed blank in front of synopsis
* Added mandatory price entry for new foreign account
* Added online quote button to new account wizard
2008-12-14 Alvaro Soliverez <asoliverez@gmail.com>
* Added moving average reports for investments
* Fixed crash in forecast view when displaying stock in foreign currency
2008-12-12 Thomas Baumgart <ipwizard@users.sourceforge.net>
* More changes to the QIF importer
2008-12-09 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Don't discard final line during QIF import if it does not contain a LF
* Categories don't override account information during QIF import
* Don't create duplicate opening balance transaction if same file
is imported more than once. Present a warning if amount differs and let
the user manually correct it.
* Mark imported opening balance transactions as imported (diff. background)
* Fixed QIF Buy/Sell action if given an account but not BuyX/SellX action
* Enhanced price recording such that security can also be referenced
by name by the importer
2008-12-08 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed some print issues in the CSS file
* Fixed some more QIF importer and statement reader problems
* Fixed payee matching for name matching mode
2008-12-07 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added more debug output to statement reader
* Added patch provided from Greg Darke to add more settings to OFX plugin
2008-12-04 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added support for manual OFX configuration
* Fixed a sign problem when importing investment sales transations via QIF
* The transaction matcher now uses transaction matching on the same date
in favor over those that match on different dates.
* More fixes to the QIF importer
2008-12-03 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed some more QIF importer problems
2008-12-02 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Remove transfers to/from investment accounts in split transactions
during QIF import
2008-12-01 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed createBudget forecast unit tests to check dates correctly
2008-12-01 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Revisited fix for bko #175949. Using the tab directly to create
a new transaction did not honor the pressed tab
* Updated Czech translation from Marek Stopka
2008-11-30 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Use QT_LDFLAGS and X_LDFLAGS when building the widget library
* Keep position of schedule view if item was deleted
2008-11-29 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Improved QIF date format detection
* Detect dividend transactions as investment transactions even if they
don't have a reference to a stock account
2008-11-28 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Don't create multiple payees if the name contains meta characters
of regular expression (e.g. parans)
* Fixed bko #176316 (kmymoney2 crashes when right clicking in a
categories tax-editing area)
2008-11-27 Thomas Baumgart <ipwizard@users.sourceforge.net>
* A merged transaction has precedence over an imported transaction
in the ledger
* Fixed more QIF importer issues
* If an imported transaction is also matched, then accepting the
transaction will remove both flags at once
* Allow asset/liability accounts to receive VAT splits
2008-11-26 Alvaro Soliverez <asoliverez@gmail.com>
* Sort accounts by name in home page forecast
2008-11-25 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed starting balance price in investment performance report
2008-11-24 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Store multiple XML statement files for QIF import (debug feature)
* Fixed bko #175949 ('New' transaction does not honor the selected tab)
* Improved detection of existing accounts in QIF importer
2008-11-22 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Reworked QIF import with lots of improvements (incl. patches from
Allan Anderson)
Needs thorough testing and a lot of code cleanup
* Adapted statement reader to work with new QIF importer
* Allow dividend payments w/o reference to security
* Renamed a bunch of i18n-ed html files
* Display correct number of prices in file info dialog
2008-11-22 Fernando Vilas <fvilas@iname.com>
* Added db index from user manual to schema
* Fixed db not logging out when KMM closes (fixes open warning annoyance)
* Fixed transactions query to properly ignore schedule splits (fixes
calculations on homepage)
2008-11-09 Alvaro Soliverez <asoliverez@gmail.com>
* Prevent user from selecting an inconsistent column type for budgets
2008-11-15 Fernando Vilas <fvilas@iname.com>
* Updated SQLite driver detection to work with Qt3 and Qt4. Patch from Tony
Bloomfield
2008-11-12 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated simplified Chinese translation by Roy Qu
2008-11-09 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed budget reports when using non-monthly columns
2008-11-08 Alvaro Soliverez <asoliverez@gmail.com>
* Added summary to budget in Home Page
* Added gaps to tables in Home Page
2008-11-08 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added new homepage html file from mvillarino
2008-11-05 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed price calculation in investment performance report
2008-11-05 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Dutch translation from Bert Keuter
* Added support for imperial prices to MyMoneyMoney ctor
* Added testcase for the above
2008-11-04 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed budget reports when month-by-month are displayed
for non-monthly columns
* Fixed Cashflow summary schedules when multiple occurences
happen during the month
* Added properties initialization to MyMoneyForecast constructor
2008-11-02 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added patch provided by Cristian Onet which fixes a
crash in the the accounts icon view
* Ensure unique IDs within the same statement downloaded
* Removed unnecessary code
2008-10-31 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed http://bugs.kde.org/show_bug.cgi?id=173908
2008-10-30 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Changed "Ok" --> "OK"
* Use KStdGuiItem where appropriate
* Fixed placement of search bar in payees view
* Fixed http://bugs.kde.org/show_bug.cgi?id=173907
2008-10-29 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added signal transactionsSelected() to plugins' viewinterface
* Added signal accountReconciled to plugins' viewinterface
* Updated Romanian translation from Cristian Onet
2008-10-28 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed Forecast unit test
2008-10-28 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Romanian translation from Cristian Onet
* Added patch by Cristian Onet to solve a ledger sorting problem
2008-10-27 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed sign problem in display of loan information when
sum of additional fees was negative
* Added information when turning on GPG encryption mode
* Added option to turn off title bar of the views
2008-10-26 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed Budget reports when columns longer than a month
* Added Linear Regression method to Forecast History Methods
2008-10-26 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Italian translation from Vincenzo Reale
* Added patch by Cristian Onet to fix statement marker problem
2008-10-24 Robert Wadley <robntina@users.sourceforge.net>
* Fixed some issues with the html when kmm is used on wide screens
and other small fixes.
2008-10-22 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Make sure to show the correct balance in the ledger view if no
transactions are displayed
2008-10-20 Alvaro Soliverez <asoliverez@gmail.com>
* Added default report Income and Expenses By Year
2008-10-19 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated French translation from Patrick Petit
2008-10-19 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed multi currency calculation of transaction reports
* Fixed spelling mistake in Home View
* Changed current Summary to Assets and Liabilities Summary
2008-10-18 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed a problem during online price update when neither the security
nor the currency is the base currency
* Show all categories in both selectors during reconciliation start
2008-10-18 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed calculation of assets and liabilities in CashFlow summary
2008-10-17 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Update total field when changing a budget
* Fixed sign problem when postponing reconciliation of liability accounts
2008-10-15 Alvaro Soliverez <asoliverez@gmail.com>
* Updated Brazilian Portuguese translation by Marcus Gama
* Updated Galician translation by Marcelino Villarino
2008-10-13 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed some Krazy warnings in forecast
* Added CashFlow Summary to Home Page
* Fixed Schedule calculation in CashFlow Summary
2008-10-09 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed balance of general information reports when converting to
base currency
2008-10-07 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed calculation of forecast for stocks which caused an overflow
of MyMoneyMoney members
2008-10-07 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Dutch translation from Bert Keuter
* Added feature to update all online accounts at once
* Dump some more values
* Fix problem with duplicate dividend transactions
2008-10-06 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Portuguese translation from José Jorge
2008-10-05 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed multi currency calculation for incomes and expenses in the summary
* Updated Spanish translation
2008-10-04 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Dutch translation from Bert Keuter
* Tranport price in imported transaction
* Detect previously used fee and dividend categories while importing
investment statements
* Added Romanian HTML files from Cristian Onet
* Fixed failing translation of strings containing an ampersand
character to identify the keyboard shortcut
* Regenerated POT file and merged PO files
2008-10-03 Fernando Vilas <fvilas@iname.com>
* Allow SQLite databases to upgrade
2008-10-03 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added 'Ignore' and 'Skip' buttons to EnterSchedule dialog and show
them during reconciliation start and auto entry during appl startup
* Move icon draw logic from StdTransaction to Transaction to have it
for investment transactions as well
* Display imported investment transaction with the correct background
* Updated French translation from Patrick Petit
2008-10-02 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Show correct message if statement balance is not included in statement
2008-09-30 Wolfgang Rohdewald <wolfgang@rohdewald.de>
* fix valgrind warning about conditional jump depending on
uninitialized variable
2008-09-30 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Brazilian translation from Marcus Gama
* Make sure to update local variables from engine after chanages
* Removed unused variables
2008-09-29 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Assign id to budget accountgroup if missing or different
* Updated french what's new page from Patrick Petit
2008-09-28 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added Romanian account templates from Onet Cristian
2008-09-27 Fernando Vilas <fvilas@iname.com>
* Implemented patch for occurrenceMultiplier in schedules
provided by Colin Wright
* Added db upgrade path to support the above patch
2008-09-26 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Updated Italian what's new file provided by Vincenzo Reale
2008-09-25 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed a problem with schedule preview in ledger if end of schedule
falls into preview period. This could cause a lockup of the application.
* Show cleared transactions during reconciliation in a dimmed fashion
* Updated Romanian translation by Chrstian Onet
2008-09-22 Alvaro Soliverez <asoliverez@gmail.com>
* Added blank column to Summary
* Added missing file for Home Settings
2008-09-22 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed some typos in German translation, shortened a few strings
2008-09-21 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added option to select most often used transaction for autofill
2008-09-21 Alvaro Soliverez <asoliverez@gmail.com>
* Added setting to hide limit column on Home page
2008-09-20 Alvaro Soliverez <asoliverez@gmail.com>
* Show closed accounts in reports and find transactions dialog
if the user has chosen to do so
* Changed the order and rearranged the tables of Summary
* Fix the style divs provided by Robert Wadley
2008-09-16 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed a transaction matcher issue with similar transactions
2008-09-15 Alvaro Soliverez <asoliverez@gmail.com>
* Convert fractions in KMyMoneyAccountTreeForecastItem to make
sure it does not overflow when handling multiple currencies
* Reinitialize m_forecast in Home Page on change
2008-09-14 Alvaro Soliverez <asoliverez@gmail.com>
* Added generic code in PivotTable to support multiple
columns while preventing duplication of code
2008-09-12 Fernando Vilas <fvilas@iname.com>
* Updated MMStorageSql to throw MyMoneyExceptions
2008-09-12 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed sign problem with paid dividends
* Updated German Whats New page
* Updated Portuguese translation as provided by Jose Jorge
* Updated French Whats New page
* Released 0.9.2
2008-09-11 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed calculation of paid dividends for return of investment
* Updated Spanish Whats New page
2008-09-10 Robert Wadley <robntina@users.sourceforge.net>
* Updated the "whats new in this release" page.
2008-09-09 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Added skip icon for schedules to home view
* Moved icons in front of schedule names
* Added tooltips to the icons and schedule links
* Fixed bug in transaction matcher when two or more identical transactions
are carried out on the same day and are manually entered already.
2008-09-08 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Fixed edit loan wizard to keep changes made to interest rate
2008-09-07 Alvaro Soliverez <asoliverez@gmail.com>
* Added Budget, Budget Difference and Forecast to exported
report CSV
2008-09-07 Fernando Vilas <fvilas@iname.com>
* Fixed primary key error when adding first items to database
* More database documentation updates
* Added simple test cases for budgets
* Fixed budget test cases for the case when a database is not installed
2008-09-07 Thomas Baumgart <ipwizard@users.sourceforge.net>
* Display information why Financial Summary link is not working
2008-09-06 Alvaro Soliverez <asoliverez@gmail.com>
* Changed internal structure of PivotGrid to work as a QValueList
* Modified PivotTable and unit tests to accomodate to the new PivotGrid
design
* Implemented new methods for drawing charts by level and avoid duplicating
code
2008-09-06 Thomas Baumgart <ipwizard@users.sourceforge.net>