-
Notifications
You must be signed in to change notification settings - Fork 4
/
NEWS
2193 lines (2092 loc) · 106 KB
/
NEWS
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
Version history:
------- -------
2.3.0 - 14 May 2009
o Welcome to GnuCash 2.3.0 the first of several unstable releases of
the GnuCash Open Source Accounting Software which will eventually lead
to the stable version 2.4.0. This release is the very first to use an
SQLite3 database as the default data store. It is intended for
developers and adventurous testers who want to help tracking down bugs.
o WARNING WARNING WARNING - Make sure you make backups of any files
used in testing versions of GnuCash in the 2.3.x series. Although the
developers go to great lengths to ensure that no data will be lost we
cannot guarentee that your data will not be affected if for some
reason GnuCash crashes in testing these releases.
o PLEASE TEST TEST AND TEST SOME MORE any and all features important
to you. Then post any bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o If you have the urge to help beyond testing please get involved in
the discussions on the GnuCash mailing lists which you will find at
http://www.gnucash.org. Please see http://wiki.gnucash.org/wiki/Development
on how to get involved.
o Major new features:
* All features, including business features, are supported by a new
SQL datastore, which can use SQLite3 (default), MySQL or PostgreSQL.
The legacy XML data format is still supported
* Replacement of the aging GtkHTML engine used for reports/charts
with the WebKit engine used by Apple's Safari and Google's Chrome
web browsers.
o PS I'm not going to list the many minor features changed or updated in
this release because obviously there is so much that has changed.
2.2.9 - 23 February 2009
Welcome to the GnuCash 2.2.9 Release.
Fixed Bugs:
o #339027: Reconcile window should display the date
o #435642: Crash editing results of a find
o #438132: Warning about commodity being NULL for root account on save
o #462148: Report output is vertically inverted and bottom up
printed (mirror, reverse, &c.)
o #514455: Dutch (Netherlands) translation of account templates
o #526775: Win32: Crashes when importing brokerage account data
o #542382: Assign GnuCash to file name extension .gnucash
o #564209: Improved debuggability for module loading
o #564450: HUF currency handling incorrect as 1HUF divided into
100FILLERs
o #564928: Segfault when closing a invoice tab
o #565421: gnc-date-edit.c did not compile with Gtk < 2.10
o #565721: Multicolumn report options: Report names are not translated
o #566198: Slovakia joined the Euro
o #566352: Crash during OFX import under Win 2000 / SP4
o #566567: Scheme modifications are not built on windows
o #567174: Files with NIS stocks fail to open
o #568327: Using most "budget" reports, without a budget
defined crashes gnucash
o #568653: Add SKR49 template
o #568945: The gnc_pricedb_convert_balance_... methods should
look for the reciprocal of the exchange rate
o #569734: Give the template root account a name
o #570166: Weird text entry box when typing on Account Tree page
o #570894: Use of symbol t, which is not defined in all guile versions
o #571220: Program won't start if SCHEME_LIBRARY_PATH is set
Other Changes:
o Added German account template for a Wohnungswirtschaft business
o Fixed french business account templates
o Updated translations: Catalan, Chinese, German, Italian
2.2.8 - 14 December 2008
Welcome to the GnuCash 2.2.8 Release.
Fixed Bugs:
o #115066: "Search For" dialog shows all when criteria is left as
default
o #128774: "Edit exchange rate" context menu item disfunctional often
o #137017: date of transaction change with time zone change
o #339433: TiaaCref price quote dates off by one day
o #340041: 0 as an amount should be allowed in Exchange Editor
o #345980: changing Stylesheet doesn't commit
o #347274: to track the difference between budgeted and actual amounts
in the budget report
o #348860: Error with saved multicolumn reports
o #405472: Unable to save changes on files opened over FUSE and sshfs
o #432457: Security/stock import should follow tutorial regarding
Account Name
o #435427: "Generic import transaction matcher" dialog does not sort by
date
o #436342: Currency exchange druid does not show on changed
o #436920: crash on loading OFX data for a commodity that exists
without cusip field
o #492417: currency mapping of New Israeli Shekel
o #529494: Wrong fractional precision in register with multi-currency
transactions
o #532889: Monthly scheduled payments preview shows wrong dates
o #536299: Fix two underlinking issues
o #539947: OpenSolaris:__FUNCTION__ not defined in sun cc
o #543332: Severe performance regression in Average Balance report
o #548218: OpenSolaris: $(expression) cause configure error on solaris
o #554042: OpenSolaris: configure fail on checking 'unsigned long is at
least as big as guint32'
o #557604: date-utilities.scm typos
o #557374: MT940 import does not work
o #563160: Multicolumn report: Confusing order of "Column span" and
"Row span"
o #563273: crash in GnuCash Finance Management: Starting GnuCash
o #564033: aqbanking plugin: g_module_open failed: WEXITSTATUS undefined
Other Changes:
o Fix account defaulting for posting vendor bill
o Fix tax-related inconsistency in UI
o Fix the average cost price source computation for a certain case
o Add account templates: Dutch, Finnish
o Update account templates: Italian, Slovak
o Update translations: Finnish, German, Hebrew, Italian, Japanese,
Russian, Slovak, Simplified Chinese
2.2.7 - 26 September 2008
Welcome to the GnuCash 2.2.7 Release.
Fixed Bugs:
o #139651: Register: Split transaction with multiple currencies fails
o #309863: Balance Sheet: Rounding errors with prices from pricedb
o #341362: Price Editor: Price is displayed as fraction instead
of decimal
o #376298: Price Editor: Window Contents Corrupted After
Manually Adding a Price
o #378734: Drop down calendar only works once
o #430121: Incorrect Sign Symbol for Fractional Commodity/Security Sale
o #454340: Security Editor: duplicate rows after editing a security
o #454827: Reports: Incorrect share value of stocks in foreign currency
o #464771: Investment Portfolio: Report crashes without price data
o #483393: Reports: Allow mixed denominators in numeric collectors
o #504935: Add currencies XDR and XXX
o #506873: Win32: Cannot install online price retrieval with
ActivePerl 5.10
o #520570: Drop-down calendar for "reconcile information" non-responsive
o #522095: Updating stock prices does not update totals shown in windows
o #526313: GnuCash does not support the new currency in Venezuela
o #529816: Supplement "CUSIP" by "ISIN", to give people outside
USA a hint
o #539640: Price Editor: Security disappears from price list
o #539962: Void function cannot return value with sun cc
o #540148: GnuCash cannot be built with libgoffice-0.8
o #541970: Balance Sheet: "Nearest in time" exchange rate not correct
o #543061: Fractional not working in IDR (rupiah) currency
o #543780: Transfer Dialog: CRIT messages in gnucash.trace from
exchange rate dialog
o #545316: Drop-down calendar is not clickable when posting invoice
o #545722: Can't change date in dialog boxes
o #546064: gnucash.desktop file does not comply with
desktop-file-validate
o #548601: AqBanking Import: Obscuring zero balance windows
after getting transactions
o #548891: QIF Import: GnuCash crashes when
.gnucash/qif-accounts-map is readonly
o #549115: Popup calendar unresponsive in modal dialogs
o #549595: Silently removes main files while trying to save without lock
o #549738: Reports: Default date on aging and customer reports
is too far in the future
o #551038: Reports: Alt-O shortcut in report options dialog crashes app
o #552306: Fails to save file when using a network filesystem on Mac
Other Changes:
o New Finnish translation
o Complete Romanian translation
o Usability improvements in the price and the security editor
o Lower number of false positives when checking aqbanking
results for failures
o Correct import of remote names, zero balances from aqbanking3
o Update translations: Catalan, Dutch, German, Italian, Polish
2.2.6 - 27 July 2008
Welcome to the GnuCash 2.2.6 Release.
Fixed Bugs:
o #129099: Register: Optionally show leaf names instead of full names
o #144669: Register: Shortcut to filter accounts by account number
o #313660: QIF Import: Can't stop progress on long importing process
o #336192: QIF Import: Allow new namespaces when defining new securities
o #353880: Reports: Options dialog violates HIG, add borders.
o #309359: QIF Import: "unknown Action '..'" shown many times
o #452354: Average Balance Report: Translate account type option names
o #454305: Trial Balance Report: Wrong after negative Stock Split
o #460721: Balance Sheet: Should have a "value at cost" option
o #463320: Trial Balance Report: Does not add up correctly
o #470656: Preferences, Win32: Crash when setting accounting period
o #475980: QIF Import: Forward and Back don't follow same path
o #489502: Register: Account autocompletion ignores new
separator until restart
o #501490: Balance Sheet: Incorrect in presence of stock sale
o #502646: Win32: Crash entering dates before 1/1/1970 in dialogs
o #506499: Win32: Crash after online banking transfer
o #512991: Invoices: Do not allow posting to placeholder accounts
o #514210: QIF Import: Allow multiple selections for account mapping
o #515163: QIF Import: Eliminate pointless mappings
o #521403: Reports: One more option in "Price Source" in Stock
Value Reports
o #526883: Transaction Report: Question marks instead of month
in cyrillic locale
o #528835: Crash when creating SKR04 accounts with German locale
o #530924: Customer Report: Honor the used column list
o #531662: Budget report: Crash on #f in budget->guid
o #532405: Win32: Guile crashes on strftime formats containing %e
o #535407: QIF Import: Crash on invalid or unsupported date format
o #538800: Balance Sheet: Gives wrong results
o #539654: Reports: html-table-append-column! in html-table.scm crashes
o #539829: Build Process: qofsession.c compile warning
o #540207: Reports: Show a table of data beneath barcharts
o #542472: Reports: Period does not default to Accounting Period
o #542967: Reports: Options dialog title shows GUID
Other Changes:
o New Hebrew translation
o Add support for aqbanking3
o Correct quickfill directions in transfer dialogs
o Add QIF importer support for importing to A/R and A/P account types
o QIF importer loading speedup and visual feedback, further improvements
o Avoid crashing if a report's option generating procedure
causes a Scheme exception
o Make the new option Average Cost the default for several
reports
o Make weighted average price source computations ignore zero
amount splits
o Support calculation of unrealized gains/losses on liabilities
in balance sheet
o Allow creating new accounts from the general ledger
o Fix some compiler warnings, minor build system improvements
o Update translations: Catalan, German, Russian, Traditional Chinese
2.2.5 - 27 April 2008
Welcome to the GnuCash 2.2.5 Release.
Fixed Bugs:
o #166101: Register: Topmost splits' accounts are rewritten confusingly
o #341414: QIF Import: Changing account separator breaks saved account
mappings
o #341608: Transaction Report: Filtering void/non-void doesn't work
o #347474: Register: Tab goes to wrong split
o #396665: QIF Import: Detect and convert non-ascii character encoding
of QIF files
o #450354: QIF Import, Win32: Can only load files from ascii paths
o #475960: Reconciliation: Postponed balances of liability accounts are
not reversed correctly
o #467529: Check Printing: Align_n not working in custom check
definitions
o #509089: QIF Import: Duplicates windows shown after Scheme error
o #511182: QIF Import: Saved commodity mappings lost after import to
new GnuCash file
o #511231: QIF Import: Use QIF security type to provide better default
namespace
o #512208: QIF Import: New commodities remain if import canceled
o #512841: Register: Crash in expression parser on nullary functions,
like pmt()
o #514027: QIF Import: Commodities page is skipped if you go back to
currency page
o #519988: QIF Import: Error reporting doesn't follow GnuCash guidelines
o #520606: QIF import: Memo mappings for non-split, non-investment
transactions are ignored
o #521957: Auto-save not canceled on opening other files
o #522795: QIF Import: Does not support "ShtSell" or "CvrShrt"
transactions
o #523194: QIF Import: Existing commodities can cause import failure
o #523922: GnuCash ships the wrong scalable icon and no small (22²,
24²) sizes
o #527459: QIF Import: Support voided transactions
o #527886: QIF Import: Support QIF numeric formats of 12'345.67 as
produced by Quicken 4
o #529232: Average Balance Report: Reversing the starting balance
distorts the numbers
Other Changes:
o Add a new Liberty(tm) check format
o Show QIF import documentation by default
o Improve cancel behavior in reconciliation window
o Fix a few memory leaks
o Update translations: Brazilian Portuguese, German, Romanian, Russian,
Swiss German
2.2.4 - 02 March 2008
Welcome to the GnuCash 2.2.4 Release.
Fixed Bugs:
o #106242: qif Importer should warn users about dates before 1970
o #106383: feature request: close year end
o #123312: QIF Import: Autoselection of Stock Exchange during import
o #336211: QIF Import generates spurious duplicate transactions
o #360058: GnuCash crashes on QIF-import after changing
account's separator to * (asterisk)
o #373584: Rounding error in QIF import of commodity transactions
o #454834: Memo Incorrect or missing in Transaction Report
o #457591: QIF import does not handle tabs at top of file
o #481528: QIF importer should show imported transaction as
possible duplicate if original transaction is split
o #503166: QIF Import Druid Flow incorrect
o #506798: Custom Reports don't allow sorting by Account Code
o #506873: 'Install Online Price Retrieval' fails with ActivePerl 5.10
o #506810: QIF Import can mismatch account transfers
o #510221: Include Mexican Accounts
o #510630: typo in description of BUYMF transaction (OFX import)
o #510725: crash importing a .OFX file
o #510940: Unrecognized date format causes crash
o #510962: QIF transactions without dates are silently ignored
o #511006: Commodity creation skipped due to saved mappings
o #512166: doesn't build with glib-2.15.3
o #512173: Empty "match payees/memos" druid step shown
o #512497: Investment transactions ignore payee/memo mappings
o #513088: "Find" immediately unmaps window
o #513829: Investment account may be created with Stock account type
o #516178: Scheme error during progress dialog causes freeze
Other Changes:
o Recognize 401k/403b in QIF import
o Remove superfluous trailing colons of de_DE SKR04 account names
o Add russian account templates
o Add Swiss German translation
o Update translations: Brazilian Portugese, German, Greek, Russian,
Simplified Chinese, Slovak, Spanish
2.2.3 - 06 January 2008
Welcome to the GnuCash 2.2.3 Release.
Fixed Bugs:
o #114724: QIF importer drops split details for transfers with
identical amount
o #463678: xfer dialog from CC auto-payment from reconcile doesn't
display accounts
o #495219: QIF-Importer handles memo from transactions wrong
o #497517: Transactions set to 'c' in the R(econciled) field of the
register are incorrectly set to 'n' when postponing a
reconciliation
o #503889: Should install icons into expected locations
o #504007: QIF Import Druid does not allow selecting currency
o #504257: Need to replace old Afghanistan Afghani (AFA) with new
Afghanistan Afghani (AFN)
o #504261: Start on W2K fails with Entry Point Not Found (KERNEL32.dll)
o #505386: Gnucash looses transactions if the file contains special
characters
o #505972: SX-related segfaults in 2.2.2
o #506074: Fractional timezone offsets not always handled correctly
o #506429: "Last Day of Month" SXes saved on wrong day of week
o #506671: Add cyprus, maltese and slovenian currencies to EURO support
o #506714: progress bar during launching
Other Changes:
o New Vietnamese translation
o Improve several minor strings
o Update translations: Dutch, German
o Some business report improvements regarding date parameters
o Fix gcc 4.2.x compiler warnings
o Use aqbanking pkg-config file and require < v2.9, allow goffice v0.6
2.2.2 - 16 December 2007
Welcome to the GnuCash 2.2.2 Release.
Fixed Bugs:
o #336240: advanced portfolio - the basis calculation is not
working properly in funds
o #343245: Advanced Portfolio gets basis wrong with stock split
o #343448: Hide unused horizontal scrollbar
o #344566: Advance Portfolio has wrong Realized Gain
o #347739: Advanced Portfolio calculates values incorrectly
when it involves a capital loss
o #438360: Case-insensitive search for non-ascii characters broken
o #460232: advanced portfolio report fails
o #467521: Persistent splash screen blocks "could not obtain
lock" warning
o #467532: Clipping check fields in gtkprint is not consistent
with clipping in gnomeprint
o #468681: RFE: Customizable summary bar position
o #470750: src/design/*.texinfo refers to non-existent GncBooks API
o #470801: Tip Of The Day says 2.2.1 is development version
o #473827: chinese translate for gnucash account
o #475666: Missing national currency CUC
o #476189: Configure script should fail when gettext is not installed
o #481110: Win32: Crash when opening SX Editor
o #482177: Customer report shows no invoices or detail with 2nd
A/Receivable
o #483796: Fancy Invoice - Report Error
o #484576: Configuration error with goffice 0.5
o #487317: QIF import druid crash when stepping back and forth
from the "loaded files page" without selection
o #487326: Preferences dialog does not remove all its gconf callbacks
o #487572: advanced portfolio breaks on "Most Recent to Report"
o #488001: speed up several reports that rely on html-acct-table.scm
o #488004: provide a two-column income-statement
o #490679: GnuCash doesn't honor the GNOME toolbar settings
o #491581: Import 'Cash' Action (in Investment Accounts)
o #492137: Lot scrubber doesn't add splits to existing lots correctly
o #496023: Pressing ESC Cancels modifications whether you
choose yes or no.
o #496178: gnucash segfaults with troublesome automatic transactions
o #499360: Crash when editing a commodity whose quote source
timezone is set to local time
o #499788: gnucash-make-guids does not work, fails with
"Unbound variable: gnc:guid-new"
o #500026: [PATCH] Report correct package for qt3-wizard
o #500427: SX creation doesn't include template transaction "Notes"
o #501059: GnuCash leaks since last run dialogs
o #502755: GnuCash hangs after modifying SX
o #503579: win32 packaging fails installing mingw
Other Changes:
o Many changes to the german SKR03 and SKR04 account templates
o Include updated GNOME libraries and a patched ORBit2 in Win32 build
o Improve resizing of search and invoice posting dialogs
o Add MimeType directive for GnuCash data files
o Fix some new compiler warnings
o Add AZN [Azerbaijani Manat]
o Add COU [Colombian Unidad de Valor Real]
o Add MZN [Mozambique Metical]
o Some occurrences of "Open Source" were changed to "Free"
o Update translations: Brazilian Portugese, Czech, German,
Japanese, Traditional Chinese
2.2.1 - 19 August 2007
Welcome to the GnuCash 2.2.1 Release.
Fixed Bugs:
o #170729: locale-specific delimiters in scheduled transactions
templates and mortgage druid
o #339260: Right-click doesn't select txn but works on the previously
selected in the register
o #361604: Balance sheet report shows incorrect prices for commodities
when using "nearest in time" option
o #445917: Dialog says, Click "Next"..., Button says "Forward"
o #452496: Dirtying a split does not dirty the parent txn or book
o #457027: About dialog shows wrong year in Copyright string
o #457213: Resizing SLR window causes it to show up as blank next time
o #457228: AqBanking Wizard QtCore4.dll error on WinXP, procedure entry
point not found
o #457944: startup delay, keep splash screen during file loading
o #458080: RPM .spec file still depends on g-wrap
o #458567: Ship with windows gtkrc
o #458783: Doesn't start if installed into a directory with an "umlaut"
o #459259: Unshortened column-title in Scheduled Transactions editor
for some locales
o #460432: Crash when running Account Report or Account Transaction
Report against A/R account
o #460924: Fox for warning: the address of '*' will always evaluate as
'true'
o #462567: win32: GnuCash improperly interprets filenames as URLs and
fails
o #465338: hbci module init fails on FreeBSD due to change 15799
o #468115: Save Account Tree Sort Preference
Other Changes:
o Fix XPF [CFP Franc Pacifique] to not use cents, add YER [Yemeni Riyal]
o Update gnome libraries in Win32 build
o Avoid a few critical warnings and improve logging
o Completely remove FreqSpec
o Disable Close books and QSF Import again
o Update translations: British English, Catalan, French, German,
Hungarian, Japanese, Ukrainian
2.2.0 - 14 July 2007
o Welcome to the GnuCash 2.2.0 Release.
o With this new release series, GnuCash is available on Microsoft
Windows for the first time, and it also runs on GNU/Linux, *BSD,
Solaris and Mac OSX.
o This release has only a few user-visible new features, except for
the completed port to the Microsoft Windows operating system. In
summary, the following features are new, compared to the older 2.0.x
series:
o Port to Microsoft Windows completed. Note that Windows 2000, XP, or
Vista is required; GnuCash does not run on Windows 98 or 95.
o Data file notice: In version 2.1.2 the format for scheduled
transactions in the data file was changed. Files using the old format
will be read without problems by this new version, but the new
version of GnuCash only writes the new format. The new file format
cannot be loaded by older versions of GnuCash. (If you try, the file
will fail to be loaded with an error message.) As a result, if you
begin using the new Gnucash, and you have data files with scheduled
transactions, then these files will not be readable by older
versions. If you have to make a new data file readable by older
versions of GnuCash, this can be achived by deleting all records of
scheduled transactions in the scheduled transaction editor.
o SWIG is now used instead of g-wrap for providing language bindings.
o The Scheduled Transaction list view is now improved and summarized
more compactly. The Since-Last-Run dialog has been simplified.
o Check printing has been improved, with new formats and simpler
format descriptions.
o Automatic saving of the data file was added.
o Bugfixes and improvements since the last version 2.1.5 include:
o Updated translations.
o Improved handling of Online Banking wizard on Windows.
2.1.5 - 02 July 2007
o Welcome to GnuCash 2.1.5 aka "Release Candidate 2", the fifth of
several unstable 2.1.x releases of the GnuCash Open Source Accounting
Software which will eventually lead to the stable version 2.2.0.
With this new release series, GnuCash is available on Microsoft
Windows for the first time, and it also runs on GNU/Linux, *BSD,
Solaris and Mac OSX.
This release is intended for developers and testers who want to help
tracking down bugs.
o WARNING: Make sure you make backups of any files used in testing
versions of GnuCash in the 2.1.x series. Although the developers go
to great lengths to ensure that no data will be lost we cannot
guarantee that your data will not be affected if for some reason
GnuCash crashes in testing these releases.
o Please test any and all features important to you. Then post any
bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o Compared to the 2.0.x series, there are only very few user-visible
new features, except for the completed port to the Microsoft Windows
operating system. Minor new features compared to the 2.0.x series
are;
o Port to Microsoft Windows completed. Note that Windows 2000 or newer
is required; GnuCash does not run on Windows 98 or 95.
o The Scheduled Transaction list view is now improved and summarized
more compactly. The Since-Last-Run dialog has been simplified.
o SWIG is now used instead of g-wrap for providing language bindings.
o Check printing has been improved, with new formats and simpler
format descriptions.
o Automatic saving of the data file was added.
o DATA FILE NOTICE: In version 2.1.2 the format for scheduled
transactions in the data file was changed. Files using the old format
will be read without problems by this new version, but the new
version of GnuCash only writes the new format. The new file format
cannot be loaded by older versions of GnuCash. (If you try, the file
will fail to be loaded with an error message.) As a result, if you
begin using the new Gnucash, and you have data files with scheduled
transactions, then these files will not be readable by older
versions. If you have to make a new data file readable by older
versions of GnuCash, this can be achived by deleting all records of
scheduled transactions in the scheduled transaction editor.
o Bugfixes and improvements since the last version 2.1.4 include:
o Updated translations.
o German translation of Online Banking wizard is activated on
Windows.
o Improvements to Windows packaging.
o When adding custom reports to the menu, appropriate user feedback
will be given.
o Automatic saving of the data file was added.
2.1.4 - 16 June 2007
o Welcome to GnuCash 2.1.4 aka "Release Candidate 1", the fourth of
several unstable 2.1.x releases of the GnuCash Open Source Accounting
Software which will eventually lead to the stable version 2.2.0.
With this new release series, GnuCash is available on Microsoft
Windows for the first time, and it also runs on GNU/Linux, *BSD,
Solaris and Mac OSX.
This release is intended for developers and testers who want to help
tracking down bugs.
o WARNING: Make sure you make backups of any files used in testing
versions of GnuCash in the 2.1.x series. Although the developers go
to great lengths to ensure that no data will be lost we cannot
guarantee that your data will not be affected if for some reason
GnuCash crashes in testing these releases.
o Please test any and all features important to you. Then post any
bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o Compared to the 2.0.x series, there are only very few user-visible
new features, except for the completed port to the Microsoft Windows
operating system. Minor new features compared to the 2.0.x series
are;
o Port to Microsoft Windows completed. Note that Windows 2000 or newer
is required; GnuCash does not run on Windows 98 or 95.
o The Scheduled Transaction code has been refactored. The Scheduled
Transaction list view is now integrated into the main window, the
Editor has been re-designed for compactness, and the Since-Last-Run
dialog has been simplified.
o SWIG is now used instead of g-wrap for providing language bindings.
o Check printing has been improved, with new formats and simpler
format descriptions.
o DATA FILE NOTICE If you are using Scheduled Transactions, the data
file saved by GnuCash 2.1.2 and higher is NOT backward-compatible
with GnuCash 2.0 anymore because of extensions in the file format.
Please make a safe backup of your 2.0 data before upgrading to 2.1.4.
o Bugfixes and improvements since the last version 2.1.3 include:
o Bugfixes with the graphical reports
o Fixing the Online Banking wizard
o Updated translations
o Improvements to Windows packaging
2.1.3 - 02 June 2007
o Welcome to GnuCash 2.1.3 aka "at last!", the fourth of several
unstable 2.1.x releases of the GnuCash Open Source Accounting
Software which will eventually lead to the stable version 2.2.0.
With this new release series, GnuCash is available on Microsoft
Windows for the first time, and it also runs on GNU/Linux, *BSD,
Solaris and Mac OSX.
This release is intended for developers and testers who want to help
tracking down bugs.
o WARNING: Make sure you make backups of any files used in testing
versions of GnuCash in the 2.1.x series. Although the developers go
to great lengths to ensure that no data will be lost we cannot
guarantee that your data will not be affected if for some reason
GnuCash crashes in testing these releases.
o Please test any and all features important to you. Then post any
bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o Compared to the 2.0.x series, there are only very few user-visible
new features, except for the completed port to the Microsoft Windows
operating system. Minor new features compared to the 2.0.x series
are;
o The Scheduled Transaction code has been refactored. The Scheduled
Transaction list view is now integrated into the main window, the
Editor has been re-designed for compactness, and the Since-Last-Run
dialog has been simplified.
o SWIG is now used instead of g-wrap for providing language bindings.
o Check printing has been improved, with new formats and simpler
format descriptions.
o DATA FILE NOTICE If you are using Scheduled Transactions, the data
file saved by GnuCash 2.1.2 and higher is NOT backward-compatible
with GnuCash 2.0 anymore because of extensions in the file format.
Please make a safe backup of your 2.0 data before upgrading to 2.1.3.
o Bugfixes and improvements since the last version 2.1.2 include:
o Fixes to crashes and slowness in Scheduled Transaction Editor.
o Fix to crash when editing style sheets and selecting images using
Windows version.
o Fix crash on QIF import with german umlaut.
o Updated translations.
o Improvements to Windows packaging.
2.1.2 - 19 May 2007
o Welcome to GnuCash 2.1.2 aka "Financially secure yet?"the third of
several unstable releases of the GnuCash Open Source Accounting
Software which will eventually lead to the stable version 2.2.0.
With this new release series, GnuCash is available on Microsoft
Windows for the first time, and it also runs on GNU/Linux, *BSD,
Solaris and Mac OSX.
This release is intended for developers and testers who want to help
tracking down bugs.
o WARNING: Make sure you make backups of any files used in testing
versions of GnuCash in the 2.1.x series. Although the developers go
to great lengths to ensure that no data will be lost we cannot
guarantee that your data will not be affected if for some reason
GnuCash crashes in testing these releases.
o Please test any and all features important to you. Then post any
bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o Compared to the 2.0.x series, there are only very few user-visible
new features, except for the completed port to the Microsoft Windows
operating system. Minor new features compared to the 2.0.x series
are;
o The Scheduled Transaction Editor and Management dialogs have been
integrated into the overall GnuCash User Interface to give the user a
more consistent experience in creating scheduled transactions.
o Internally, the programming language wrappers are no longer being
generated by the not-so-well-maintained package "g-wrap" but instead
by the well-established wrapper generator "SWIG". In effect, gnucash
does no longer depend on g-wrap anymore but uses SWIG now.
o New printing formats for check printing
o Bugfixes and improvements since the last version 2.1.0 include:
o Internal GObject integration is much more advanced by now
o Crash on OFX import crashing has been fixed
o Windows timezone problems fixed
o Some memory leaks have been fixed
2.1.1 - 28 Apr 2007
o Welcome to GnuCash 2.1.1 aka "Bug-begone" the second of several
unstable releasese releases of the GnuCash Open Source Accounting
Software which will eventually lead to the stable version 2.2.0. With
this new release series, GnuCash is available on Microsoft Windows
for the first time, and it also runs on GNU/Linux, *BSD, Solaris and
Mac OSX. This release is intended for developers and testers who want
to help tracking down bugs.
o WARNING: Make sure you make backups of any files used in testing
versions of GnuCash in the 2.1.x series. Although the developers go
to great lengths to ensure that no data will be lost we cannot
guarantee that your data will not be affected if for some reason
GnuCash crashes in testing these releases.
o Please test any and all features important to you. Then post any
bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o Compared to the 2.0.x series, there are only very few user-visible
new features, except for the completed port to the Microsoft Windows
operating system. Minor new features compared to the 2.0.x series
are;
o The Scheduled Transaction Editor and Management dialogs have been
integrated into the overall GnuCash User Interface to give the user a
more consistent experience in creating scheduled transactions.
o Internally, the programming language wrappers are no longer being
generated by the not-so-well-maintained package "g-wrap" but instead
by the well-established wrapper generator "SWIG". In effect, gnucash
does no longer depend on g-wrap anymore but uses SWIG now.
o New printing formats for check printing
o Bugfixes and improvements since the last version 2.1.0 include:
o Start-up behaviour has been improved: Windows size is better,
splash screen can be clicked away
o OFX DirectConnect import uses correct ID fields for transaction
matching
o More Scheduled Transactions bugs have been fixed
o Windows: Reading/writing to compressed data files has been tested
more thoroughly and fixed in various places
o Windows: Crash on changing default currencies fixed
2.1.0 - 14 Apr 2007
o Welcome to GnuCash 2.1.0 aka "Opening Windows" the first of
several unstable releases of the GnuCash Open Source Accounting
Software which will eventually lead to the stable version 2.2.0. This
release is the very first of to support Windows as a platform and is
intended for developers and adventurous testers who want to help
tracking down bugs.
o WARNING WARNING WARNING - Make sure you make backups of any files
used in testing versions of GnuCash in the 2.1.x series. Although the
developers go to great lengths to ensure that no data will be lost we
cannot guarentee that your data will not be affected if for some
reason GnuCash crashes in testing these releases.
o PLEASE TEST TEST AND TEST SOME MORE any and all features important
to you. Then post any bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o If you have the urge to help beyond testing please get involved in
the discussions on the GnuCash mailing lists which you will find at
http://www.gnucash.org. We especially need people to help with
updating the documentation as all texts refer currently to the 1.8.x
series. Please see http://wiki.gnucash.org/wiki/Development on how to
get involved.
o PS I'm not going to list the many features changed or updated in
this release because obviously there is so much that has changed.
2.0.5 - 18 February 2007
o Release of new stable version 2.0.5.
o Fix some strings not being translated.
o Use guiles native sort and record.
o Adjust how payment dialog resizes.
o Don't abort when F::Q fails to return a quote.
o Change Russian Ruble from RUR to RUB.
o Fix security problem with tmp filesystem and symlink attack.
o Add French and Canadian French translation updates.
o Do not crash on delete_event in new user dialog.
o Add sanity checks when accessing GncPluginPage.
o Make new windows the same size as the active one.
o The New Turkish Lira changed from TRL to TRY in 2005.
2.0.4 - 1 January 2007
o Release of new stable version 2.0.4.
o Correct account compatibility check with top level account.
o Check for potentially failed utf8 conversion of locale strings.
o Fix crash when accessing the File Properties Menu.
o Avoid crash when renaming page in a page-less window.
o Save and restore the visibility of the toolbar, statusbar, and
summarybar.
2.0.3 - 10 December 2006
o Release of new stable version 2.0.3.
o Core changes;
- Fix for crashes on Solaris and Windows.
- Fix for crash on quit during save.
- Fix a bug so that blank transactions are marked as pending.
- When progress bar is showing, do not make menus and toolbars
insensitive, but rather the underlying action groups.
- Save window size and position of the transfer dialog.
o Scheduled Transactions changes;
- Fix for UTF-8 bug in month name.
o Import changes;
- Fix missing date when reconciling from HBCI.
o Reports changes;
- Fix some scheme inexact errors.
o Help changes;
- Inform the user about 'gnucash-docs' package when Help is selected
with no content.
o Translations;
- Updated British English, French, German translation.
2.0.2 - 08 October 2006
o Release of new stable version 2.0.2
o Configure changes;
- Find absolute path of gconftool-2 during configure. Make gconftool
rules to fail if gconftool-2 could not be found.
- Fix Makefiles for .schemas file installation.
o Core changes;
- various: String fixes that have been delayed due to the string
freeze.
- Update so that bug-buddy 2.16 will still allow you to file bugs
against gnucash.
- Add a tip for raising the accounts menu in a register page.
- Maintain the accounthierarchy when reparenting the descendants of a
deleted account.
- If the file type wasn't recognized, check whether this failed
because of no read permission and give appropriate user feedback.
- Avoid crash from opening transaction in more than one register.
- Add the ability to override the default sort.
o Import Changes;
- Improve wording for XML data file import druid.
- Replace exact comparison of doubles by checking for a small enough
difference.
- Double-check really every string from aqbanking for valid utf-8
characters.
o Translations;
- Updated Hungarian translation
- Updated complete Nepali translation
- Updated French translation
2.0.1 - 30 July 2006
o Release of new stable version 2.0.1
o Configure changes;
- Check for (g-wrap) module, apparently some distributions ship
g-wrap-config separately from the g-wrap.scm guile module.
- Check for SLIB.
o Core changes;
- Correctly set column sort orders from gconf.
- Allow proper compile/install from tarball using separate builddir.
o Import Changes;
- Fixed bug where OFX/HBCI imports loose spaces in descriptions
- Ignore any unknown !Option in QIF files that are being imported.
- Allow comma-radix numbers without a radix. I.e., allow "17.500" to
be parsed either as "seventeen and a half" or as "seventeen thousand
five hundred". Note that numbers STILL default to decimal-radix
instead of asking the user to choose.
- Replace the hbox separating debits from credits in the
reconciliation window by a homogeneous table.
- Remove obsolete buttons for aqbanking/hbci setup that are unneeded.
o Business changes;
- Fixed problem when booking an invoice with account name using
account separator character.
- Set the summary bar values when the invoice window is first opened.
- Properly round invoice entries and totals.
o Scheduled Transactions changes;
- Changed Since-Last-Run default to automatically run at GnuCash
start.
o Reports changes;
- Change cmdline warning into an actual user's error dialog when user
attempts to save a report with the same name as an existing report.
2.0.0 - 9 July 2006
o Release of new stable version 2.0.0.
o GnuCash 2.0 is based on state-of-the-art gtk2 GUI technology.
o GnuCash 2.0 follows the Gnome Human Interface Guidelines (HIG) for
a consistent behaviour and look-and-feel for the whole Desktop.
o New tabbed window.
o New importing feature: OFX DirectConnect can directly retrieve and
import account statements over the Internet.
o Implemented a "Hide account" feature to keep a better overview of
your current accounts.
o Implemented the ability to create budgets within GnuCash using
your account data.
o New importing feature: MT940 files can be imported (in addition to
QIF files and OFX files).
o The data file format has been improved with respect to
international characters. Data files with international characters
can be transferred to other countries flawlessly.
o Support for Accounting Periods.
o GnuCash Help and Guide are now fully integrated with the GNOME Help
system (Yelp).
o New releases of Finance::Quote and LibOFX will be coming soon to
update support for GnuCash 2.0.0.
1.9.8 - 18 June 2006
o Welcome to GnuCash 1.9.8 aka "Grab that cash with both hands and
make a stash" the first release candidate of the GnuCash Open Source
Accounting Software which will eventually lead to the stable version
2.0.0. This release contains many bugfixes since the second beta
release.
o PLEASE TEST any and all features important to you. Then post any
bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o We would like to encourage people to test this and any further
releases as much as possible and submit bug reports in order that we
can polish GnuCash to be as stable as possible for the 2.0.0 release
in a few weeks.
o Major bugfixes include -
o More Register fixes.
o Restore the business reports menu.
o QIF import and HBCI fixes.
o Fixes for currencies.
o Fixes to business invoices.
o General UI fixes.
1.9.7 - 04 June 2006
o Welcome to GnuCash 1.9.7 aka "Banking on Gnu Cash!" the second
beta release of the GnuCash Open Source Accounting Software which will
eventually lead to the stable version 2.0.0. This release contains
many bugfixes since the first beta release.
o PLEASE TEST any and all features important to you. Then post any
bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o We would like to encourage people to test this and any further
releases as much as possible and submit bug reports in order that we
can polish GnuCash to be as stable as possible for the 2.0.0 release
in a few weeks.
o Major bugfixes include -
o Hide not finished funtionality for the 2.0 release
o Fixes to lots functionality
o Fixes to XML import
o Patches to work with guile 1.8
o HBCI fixes
o Many updated translations.
o New splash screen from Joshua Facemyer / Impressus Art
o Fix the help file names now the docs are xml instead of html.
o Fixes for MacOS and Windows builds
o Fixes to progress bar.
o UTF8 fixes
o Fixes for glib 2.6
1.9.6 - 14 May 2006
o Welcome to GnuCash 1.9.6 aka "Time to make a difference" the first
beta release of the GnuCash Open Source Accounting Software which will
eventually lead to the stable version 2.0.0. This release contains
many bugfixes since the sixth unstable release.
o PLEASE TEST any and all features important to you. Then post any
bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o We would like to encourage people to test this and any further
releases as much as possible and submit bug reports in order that we
can polish GnuCash to be as stable as possible for the 2.0.0 release
in a few weeks.
o Major bugfixes include -
o More Register fixes.
o Fixes to Scheduled Transactions.
o Many Report fixes.
o Many updated translations.
o New icons
o Fixes to lots functionality
o Fixes to logging
o Many Qof fixes
o Fixes to budgeting
o HBCI fixes
1.9.5 - 16 Apr 2006
o Welcome to GnuCash 1.9.5 aka "The final countdown begins" the sixth
of several unstable releases of the GnuCash Open Source Accounting
Software which will eventually lead to the stable version 2.0.0. This
release contains many bugfixes since the fifth release but is still
only intended for developers and adventurous testers who want to help
tracking down bugs.
o WARNING WARNING WARNING - Make sure you make backups of any files
used in testing versions of GnuCash in the 1.9.x series. Although the
developers go to great lengths to ensure that no data will be lost we
cannot guarentee that your data will not be affected if for some
reason GnuCash crashes in testing these releases.
o PLEASE TEST TEST AND TEST SOME MORE any and all features important
to you. Then post any bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o Major bugfixes include -
o More Register fixes.
o Fixes to Scheduled Transactions.
o Report fixes.
o Make the entire UI insensitive when the progress bar is showing.
o Fixes for currencies and currency quote retrievals.
o Lots of Qof fixes.
o Profiling fixes to improve speed and response.
o Memory leak fixes.
o Fixes for 64-bit compiles.
o Add a per-account "hidden" flag.
o Fixes to compile with gcc4.
o Fixes to xml file format.
1.9.4 - 05 Apr 2006
o Welcome to GnuCash 1.9.4 aka "Better late than never" the fifth of
several unstable releases of the GnuCash Open Source Accounting
Software which will eventually lead to the stable version 2.0.0. This
release contains many bugfixes since the fourth release but is still
only intended for developers and adventurous testers who want to help
tracking down bugs.
o WARNING WARNING WARNING - Make sure you make backups of any files
used in testing versions of GnuCash in the 1.9.x series. Although the
developers go to great lengths to ensure that no data will be lost we
cannot guarentee that your data will not be affected if for some
reason GnuCash crashes in testing these releases.
o PLEASE TEST TEST AND TEST SOME MORE any and all features important
to you. Then post any bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o Major bugfixes include -
o More Register fixes.
o Fixes to Scheduled Transactions.
o Report fixes.
o Add support for renumbering the account codes for all the children
of a given account.
o Fixes to the hierarchy druid.
o Regularize capitalization of the word 'GnuCash' where its user
visible.
o Fixes for Scheduled Transactions.
o Added new toolbar icons and buttons.
o Fix the lack of action strings in the popup menu.
o Add a context menu to the reconcile window.
o Fix the dialog so that the 'Cancel' button cancels all changes made
since the dialog was opened.
o Fixes for currencies and currency quote retrievals.
1.9.3 - 19 Mar 2006
o Welcome to GnuCash 1.9.3 aka "Mo money, mo problems" the fourth of
several unstable releases of the GnuCash Open Source Accounting
Software which will eventually lead to the stable version 2.0.0. This
release contains many bugfixes since the third release but is still
only intended for developers and adventurous testers who want to help
tracking down bugs.
o WARNING WARNING WARNING - Make sure you make backups of any files
used in testing versions of GnuCash in the 1.9.x series. Although the
developers go to great lengths to ensure that no data will be lost we
cannot guarentee that your data will not be affected if for some
reason GnuCash crashes in testing these releases.
o PLEASE TEST TEST AND TEST SOME MORE any and all features important
to you. Then post any bugs you find to bugzilla
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
o Major bugfixes include -
o More Register fixes.
o Fixes for OFX importer.
o Add printing support for the graphs.
o Add multi-commodity SX support.
o Fixes for windows/mingw32 porting.
o Fixes for currency settings.
o Add support for XSL.
o Recode all po files into UTF-8 character encoding.
o Lots of Qof fixes.
o Fix the build-order (and install order) of the engine libs.
o Fix a problem where account cell contents disappear when focusing
in/out of an account cell.
o Report fixes
o More Qof fixes
o More fixes for UTF-8 support
o Fixes to Scheduled Transactions
1.9.2 - 05 Mar 2006
o Welcome to GnuCash 1.9.2 aka "With extra flavor enhancements" the
third of several unstable releases of the GnuCash Open Source
Accounting Software which will eventually lead to the stable version
2.0.0. This release contains many bugfixes since the second release
but is still only intended for developers and adventurous testers who
want to help tracking down bugs.
o WARNING WARNING WARNING - Make sure you make backups of any files
used in testing versions of GnuCash in the 1.9.x series. Although the
developers go to great lengths to ensure that no data will be lost we
cannot guarentee that your data will not be affected if for some
reason GnuCash crashes in testing these releases.