forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3504 lines (1752 loc) · 83.4 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
2014-03-29 John Ralls
* Work around some test issues. (HEAD, master)
2014-03-29 John Ralls
* Better error message for split value conversion
2014-03-28 John Ralls
* Win32: Roll back Gwenhywfar to 4.9.0 to resolve broken build. (origin/trunk, origin/master, origin/HEAD)
2014-03-28 John Ralls
* Ensure that the autoconf and automake checked are the ones we install
2014-03-28 John Ralls
* Update Active Perl version to the one current "community edition".
2014-03-28 John Ralls
* Bug 724995 - Gnucash crashes due to assertion failed when opening sqlite file
2014-03-28 John Ralls
* Set Gnucash version and GNUCASH_RESAVE_VERSION in init_version_info
2014-03-26 Geert Janssens
* Improve preference name
2014-03-25 Geert Janssens
* Fix guile 2 stack overflow errors for large reports
2014-03-24 Mike Alexander
* Fix basis calculation for FIFO or LIFO when less than one lot is sold.
2014-03-24 John Ralls
* Bug 726891 - segmentation fault on session.end()
2014-03-24 John Ralls
* Fix dumb typo detected by a new Clang warning.
2014-03-19 Geert Janssens
* Bug 726430 - Python: account.getName() raises TypeError
2014-03-16 Mike Evans
* Bug 721196 - Cannot import lines with empty fields for deposit or withdrawal in bank transaction download.
2014-03-14 Cristian Marchi
* Update Italian translation.
2014-03-14 Cristian Marchi
* Updated Danish translation from the translation project.
2014-03-14 Cristian Marchi
* Updated Catalan translation from the translation project.
2014-03-12 Derek Atkins
* Don't hardcode 'swig' in the Makefile (based on suggested patch by "Erik Johansson" <[email protected]>
2014-03-10 Geert Janssens
* Bug 723975 - Dialog box displayed during QIF import has placeholder text
2014-03-09 Erik Johansson
* Fix resizing of columns in budget view
2014-03-10 Geert Janssens
* Saved report configuration ui tuning
2014-02-28 Carsten Rinke
* Update Window and Menu item from "Preconfigured-" to "Saved-" Report and add lables to the dialog with help texts
2014-03-10 Geert Janssens
* Fix crash as reported in bug 711567
2014-03-09 Geert Janssens
* Bug 721654 - Style sheet preference is not saved for a Preconfigured Report
2014-03-08 Geert Janssens
* Bug 725534 - Scheduled transactions columns widths not retrieved
2014-03-08 Geert Janssens
* Refactor state saving function out of widget destruction
2014-03-06 Christian Stimming
* Aqbanking: SEPA transfer improvements - fix origin labels and add possibility to edit sender's name. (trunk, master)
2014-03-06 Christian Stimming
* Win32 build: Update aqbanking version numbers
2014-03-01 John Ralls
* Release GnuCash 2.6.2 (2.6.2)
2014-03-01 John Ralls
* Bug 723216 - Cannot change the accounting period using the pop-up calendar
2014-02-28 John Ralls
* Fix SX Editor not being able to change the Repeat type from "Until".
2014-02-27 Geert Janssens
* Some code refactoring to avoid duplication
2014-02-27 Geert Janssens
* Improve function names and comments to reduce ambibuity
2014-02-27 Geert Janssens
* Whitespace cleanup
2014-02-27 Geert Janssens
* Bug 724753 - Saved Multicolumn Report Error
2014-02-26 Jeremy King
* Bug 725131 - Adding Payments to Fancy Invoice
2014-02-23 Robert Fewell
* Bug 721472 - Fix Reconcile description column.
2014-02-23 John Ralls
* Revert "Bug 721822 - GnuCash 2.6.0 loads data file much slower than 2.4.x"
2014-02-23 Mike Alexander
* Fix compilation errors.
2014-02-22 John Ralls
* Bug 721822 - GnuCash 2.6.0 loads data file much slower than 2.4.x
2014-02-22 John Ralls
* Bug 722123 - Zero price entry added to price database on stock purchase
2014-02-22 Mike Alexander
* Fix still more overflow problems.
2014-02-22 Geert Janssens
* Bug 497831 - Can't change the date of a transaction with certain locales
2014-02-22 John Ralls
* Bug 724211 - Can't select march 6 date on register
2014-02-21 Geert Janssens
* Fix GLib assert on windows when entering a date in dst
2014-02-20 Mike Alexander
* Minor optimization.
2014-02-20 Mike Alexander
* Add XCode project for debugging.
2014-02-19 Mike Alexander
* Count money used in a spin-off as money out of the stock account.
2014-02-19 Mike Alexander
* Exclude income transfered to an asset account and back again from money in.
2014-02-18 Mike Alexander
* Remove the "ignore parent or sibling" option entirely. It is unlikely to come back and interferes with other changes I want to make.
2014-02-19 Geert Janssens
* Restructure dbd driver search path determination
2014-02-19 Mike Alexander
* Fix an uninitialized variable error.
2014-02-18 Geert Janssens
* Fix compilation error on Windows
2014-02-18 Geert Janssens
* Bug 724578 - Problems clearing incompletely paid invoices
2014-02-17 Geert Janssens
* Rework payment dialog to better guide the user
2014-02-17 Geert Janssens
* Fix 'Assign As Payment' feature
2014-02-09 Sébastien Villemot
* Fix detection of DBD modules for multiarch setups.
2014-02-17 Geert Janssens
* Remove obsolete, unused gsettings schema
2014-02-17 John Ralls
* Bug 722903 - Poor performance of account hierarchy, budgets, reconcile window,...
2014-02-16 Geert Janssens
* Add note for the new Swedish account file
2014-02-16 Geert Janssens
* Bug 724426 - Errors in account plan
2014-02-16 Geert Janssens
* Bug 724427 - New account plan for Sweden
2014-02-16 John Ralls
* Rename README.svn to README.git and revise
2014-02-16 Mike Alexander
* Got some parens in the wrong place.
2014-02-15 Mike Alexander
* Improve calculations of income and money in to the share account. Remove the "ignore siblings and parent" option since it isn't needed now.
2014-02-15 Geert Janssens
* Bug 721677 - Customer Summary does not include inactive customers
2014-02-15 Geert Janssens
* Harmonize whitespace
2014-02-13 Mike Alexander
* Fix reported problems in the Advanced Portfolio report.
2014-02-11 Mike Alexander
* Fix some comments.
2014-02-09 Mike Evans
* Bug 723644.
2014-02-08 Cristian Marchi
* Update Italian translation.
2014-02-05 Derek Atkins
* remove DOT_FONTNAME setting; FreeSans isn't included anymore, and we don't even use "dot"
2014-02-04 Christian Stimming
* Online transfer with SEPA: Verification with charset needs more work later.
2014-02-04 Derek Atkins
* Remove the 'SYMBOL_CACHE_SIZE' parameter (required for version 1.8.6)
2014-02-04 Derek Atkins
* Upgrade doxygen config to 1.8.3.1
2014-02-03 Cristian Marchi
* Update Catalan translation from the Translation Project.
2014-02-03 Cristian Marchi
* Test git.
2014-02-03 Christian Stimming
* Win32: Reduce threshold to display the "few random bits" warning.
2014-02-02 Christian Stimming
* Online transfer with SEPA: Add verification against allowed charset
2014-02-01 Cristian Marchi
* Link to help button in New Employee window the new employees section in GnuCash help.
2014-01-31 Christian Stimming
* Bug #723373: Don't create any sx in the since-last-run dialog if this is a read-only file.
2014-01-30 John Ralls
* One more type="guid" fix.
2014-01-30 John Ralls
* Replace type="guid" with type="new" in gnucash-xea files
2014-01-29 Mike Alexander
* Remove src/engine/GNCId.h, it isn't needed anymore.
2014-01-27 Mike Evans
* Fix comment and trailing whitespace.
2014-01-27 Mike Evans
* Bug 723051 Implement gncCustomerNextID in Python bindings.
2014-01-27 Geert Janssens
* Document the need for a gsettings backend
2014-01-26 Geert Janssens
* Win32: update daily_build.bat rules
2014-01-26 Geert Janssens
* Win32 tag builds: use existing download directory instead of copying it
2014-01-26 Geert Janssens
* Python bindings: open init file in read mode, not read-write
2014-01-26 John Ralls
* Release 2.6.1
2014-01-26 John Ralls
* Fix handling of gnucash.appdata.xml
2014-01-25 John Ralls
* Revert "Prevent gnc-commodity from marking the book dirty at file-load."
2014-01-25 Geert Janssens
* Add some debug output to help in debugging locale problems
2014-01-25 Geert Janssens
* Bug 677489 - Critical error reported when initializing an Invoice
2014-01-25 Mike Alexander
* Handle stocks that become worthless in the Advanced Portfolio report
2014-01-25 John Ralls
* Bug 721954 - Multiple Scheduled Transaction Editors
2014-01-25 John Ralls
* Ship src/report/jqplot/jquery.js in the tarball.
2014-01-24 John Ralls
* Bug 721770 - "Choose accounts to create" has no effect
2014-01-24 John Ralls
* Ensure that cell is pointed to the right cell when retrieving the price
2014-01-24 Cristian Marchi
* Make Gnome appdata file translatable (or try to...).
2014-01-24 Geert Janssens
* Drop some unused variables
2014-01-24 Geert Janssens
* Drop old ampersand subsitution in a couple of reports
2014-01-24 Geert Janssens
* Escape labels for jqplot charts
2014-01-24 Geert Janssens
* Fix make distcheck on systems that do have swig >= 2.0.10
2014-01-24 Geert Janssens
* Change double-click behaviour on account hierarchy
2014-01-24 Mike Evans
* Posting an invoice doesn't un-hide some widgets.
2014-01-23 John Ralls
* Prevent crashing due to unsupported locale settings
2014-01-23 Christian Stimming
* Cutecash: Fix aqbanking directory name change.
2014-01-23 Derek Atkins
* Update r23747 -- require 2.0.10 for guile2 builds, but allow older versions for guile 1.8 builds. However if we don't have guile 2.0.10 then don't allow "make dist" to run. This also means we wont patch the guile files unless we find swig 2.0.10.
2014-01-23 Geert Janssens
* Require swig 2.0.10 when building from svn/git
2014-01-22 Mike Alexander
* Fix unitialized variable error in r23740. Thanks to Herbert Thoma for the patch.
2014-01-22 Cristian Marchi
* Fix a typo.
2014-01-22 Cristian Marchi
* Update French translation. Patch provided by Sébastien Villemot.
2014-01-22 Geert Janssens
* Win32: don't apply swig patch on this platform
2014-01-22 Geert Janssens
* Bug 721211 - Reconciliation checkboxes fail to sync for split transactions across sub-accounts
2014-01-22 Geert Janssens
* Bug 721306 - Account hierarchy column widths are reset when restarting a second time without changing the widths
2014-01-22 John Ralls
* Bug 722123 - Zero price entry added to price database on stock purchase
2014-01-22 John Ralls
* Bug 721464 - Program won’t open the website link
2014-01-21 Christian Stimming
* Updated German translation, by Mechtilde Stehmann.
2014-01-21 Cristian Marchi
* Small update for the Italian translation.
2014-01-21 Cristian Marchi
* Update Danish translation from the translation project.
2014-01-21 Cristian Marchi
* Update Catalan translation from the translation project.
2014-01-21 Mike Alexander
* Fix r23732. By the time we get to inner_main it's too late to call gnc_prefs_init. By then the main window has been created so it doesn't get hooked into the prefs system. One symptom of this is that the "tab position" pref doesn't affect that window.
2014-01-20 John Ralls
* Prevent gnc-commodity from marking the book dirty at file-load.
2014-01-20 John Ralls
* Bug 721966 - --add-price-quotes ignoring compress files preference
2014-01-20 John Ralls
* Bug 721913 - Fetch Rate crashes application
2014-01-20 John Ralls
* Fix typo from r23726
2014-01-20 Mike Alexander
* Advanced Portfolio: Tweak the rounding a bit more for bug #553020. Also fixed some debugging messages.
2014-01-20 Mike Alexander
* Fix rounding problems in conversions. Fixes bug #454827.
2014-01-20 John Ralls
* Extract function check_readonly_threshold
2014-01-20 John Ralls
* Protect GDateTime from getting an out-of-range year at creation.
2014-01-19 Mike Alexander
* Advanced Portfolio: Use the correct function to get today's date.
2014-01-19 Mike Alexander
* Advanced Portfolio: Don't leak prices.
2014-01-19 Mike Alexander
* Advanced Portfolio: Don't print footnotes if the account that needs them isn't included.
2014-01-19 John Ralls
* Fix configure's use of gnc-scm-info for out-of-tree builds.
2014-01-19 John Ralls
* Replace pow(10, foo) with array dereference
2014-01-19 Geert Janssens
* Win32: update swig to 2.0.11 to fix the build after commit 23702
2014-01-19 Mike Alexander
* Advanced Portfolio: Remove the "latest before" price source. It's not implemented and could easily be added back if it ever is implemented. This will break any saved report using this price source, but they are broken already.
2014-01-19 Mike Alexander
* Advanced Portfolio: Try harder to find a price and use the one it claims to be using.
2014-01-19 Mike Alexander
* Advanced Portfolio: Fix realized gain calculation and handling of brockerage fees.
2014-01-19 Mike Alexander
* Advanced Portfolio: Fix the basis calculations.
2014-01-19 Mike Alexander
* Advanced Portfolio: Use the more common LIFO name for the basis method.
2014-01-19 Mike Alexander
* Advanced Portfolio: Fix a bug in the code that detects a spin-off.
2014-01-19 Mike Alexander
* Advanced Portfolio: Eliminate all overflow problems.
2014-01-19 Mike Alexander
* Advanced Portfolio: Add some more debugging output.
2014-01-19 Mike Alexander
* Make various reports work with the "average cost" price source. THe Portfolio report crashed and several othsrs used "nearest" instead.
2014-01-19 Mike Alexander
* Don't leak prices in the (non-advanced) portfolio report.
2014-01-19 Mike Alexander
* Remove the max_count test in gnc_plugin_page_report_name_changed. This limits the total number of times it can be called per invocation of GnuCash for no obvious reason.
2014-01-18 John Ralls
* Ensure struct tm is zeroed before passing it to gnc_tm_get_today_start
2014-01-18 John Ralls
* Bug 721791 - Segmentation fault when correcting invalid date
2014-01-18 Cristian Marchi
* Bug 605991 Help button on New and Edit Job dialogs brings up wrong help page. With this patch I linked almost all business features to corresponding help pages. For features not yet documented, the button will open the initial chapter of the business section.
2014-01-18 Cristian Marchi
* Update Catalan translation, copied from the Translation Project.
2014-01-18 Cristian Marchi
* Update Italian translation.
2014-01-18 Geert Janssens
* Bug 721600 - Segmentation fault on startup if report Income/Expense Chart was opened since last running
2014-01-17 John Ralls
* Bug 722035 - Missing space in the Spanish translation of msgid "Total For "
2014-01-17 John Ralls
* Bug 721576 - Gnucash can not work with files, that have russian symbols in path.
2014-01-16 John Ralls
* Bug 555182 - Security Type template hidden
2014-01-15 Christian Stimming
* Update cmake/cutecash build, adding the recently newly introduced file
2014-01-13 John Ralls
* Bug 721290 - SX Editor: Pressing "Enter" too soon hides transaction
2014-01-13 John Ralls
* Extract function update_info.
2014-01-13 John Ralls
* Extract function change_account_separator.
2014-01-13 John Ralls
* Extract function create_blank_split.
2014-01-13 John Ralls
* Bug 555182 - Security Type template hidden
2014-01-12 Christian Stimming
* Fix build for aqbanking with version number > 5.2.0
2014-01-12 Christian Stimming
* Win32 build: Update aqbanking to most recent version 5.3.0
2014-01-12 Christian Stimming
* Win32 build: Remove support for aqbanking < 5.x because 5.x has been released since 2010 by now.
2014-01-11 J. Alex Aycinena
* Update txf.scm for 2013 US Income Tax for,/schedule changes
2014-01-10 John Ralls
* Bug 721667 - Accelerator key map loaded from one file and saved
2014-01-10 Mike Evans
* Bug 721929 - Importing a customer list causes a crash.
2014-01-10 Mike Evans
* Split long line.
2014-01-09 John Ralls
* Bug 721608 - Supported Platforms list in 2.6.0 README.txt
2014-01-08 Cristian Marchi
* Bug #721607 and #721608: fix GnuCash version numbers and remove/update links.
2014-01-07 Christian Stimming
* Win32 build: Update libofx version to use latest bugfixes there
2014-01-05 John Ralls
* Bug 721251 - Incorrect Transaction Dates
2014-01-02 Christian Stimming
* Win32: Update gwenhywfar/aqbanking/gnutls with recent versions.
2014-01-02 Christian Stimming
* Update aqbanking code for latest aqbanking development.
2014-01-02 Christian Stimming
* For aqbanking, take into account the actual purpose line length that is given from aqbanking.
2014-01-02 Mike Evans
* Fix issue with Python bindings.
2013-12-31 John Ralls
* Bug 721260 - Crash on startup: gnucash cannot handle default locale
2013-12-31 John Ralls
* Fix another broken build
2013-12-28 John Ralls
* Release 2.6.0
2013-12-28 John Ralls
* Add new files to POTFILES.in
2013-12-28 Mike Evans
* A couple more edits.
2013-12-28 Mike Evans
* Update Last Translator and removed cruft.
2013-12-28 Mike Evans
* Update Amercan -> British translations.
2013-12-27 Geert Janssens
* Update gnome appdata file to pass validity check
2013-12-27 Cristian Marchi
* Update French translations thanks to Sébastien Villemot.
2013-12-27 Cristian Marchi
* Update Lithuanian translation. Thanks to Aurimas Fišeras.
2013-12-26 Geert Janssens
* Prevent gnc-numeric overflow in advanced portfolio report
2013-12-26 Cristian Marchi
* Update Italian translation.
2013-12-26 Geert Janssens
* Fix compile warning introduced in r23602
2013-12-26 Geert Janssens
* Bug 720646 - New Book Tabs on Windows
2013-12-26 Geert Janssens
* Don't create a second account hierarchy page when cancelling the Hierarchy Assistant
2013-12-26 Geert Janssens
* Make "New Book Options" dialog transient for its caller where possible
2013-12-25 John Ralls
* Add plugin example to plugins
2013-12-24 Geert Janssens
* Use same name for dialog and menu related to preconfigured reports
2013-12-24 Geert Janssens
* Revert "Bug 720646 - New Book Tabs on Windows"
2013-12-24 Geert Janssens
* Bug 720646 - New Book Tabs on Windows
2013-12-24 John Ralls
* Make the date help string translatable
2013-12-23 Geert Janssens
* Fix some warnings while creating a new book
2013-12-23 Geert Janssens
* Prevent account hierarchy assistant from opening a second account hierarchy upon completion
2013-12-23 John Ralls
* Bug 710823 - libofx can supply broken UTF-8 for account id
2013-12-22 John Ralls
* Bug 710824 - GnuCash should sanitise UTF-8 before serialising files
2013-12-22 Mike Alexander
* Update .gitignore to include recently added config macros.
2013-12-22 Mike Alexander
* Load old version 1 XML files without crashing.
2013-12-22 Geert Janssens
* Bug 720556 - The Tip of the Day preference isn't getting saved
2013-12-21 Cristian Marchi
* More update to Italian translation.
2013-12-21 Geert Janssens
* Drop double blanks from gschema strings.
2013-12-21 Geert Janssens
* Reset Warnings dialog: show translated warnings
2013-12-20 John Ralls
* Fix up and update strawberry perl URIs
2013-12-20 Cristian Marchi
* Another update to Italian Translation.
2013-12-20 John Ralls
* Suppress other register's blank transactions from General Ledger
2013-12-20 John Ralls
* Bug 720555 - General Ledger - Can't Enter Transaction Amounts
2013-12-20 John Ralls
* Bug 157247 - Asset account's "total" value should use most recent transaction prices
2013-12-20 John Ralls
* Extract-method on gnc_split_register_auto_calc
2013-12-20 John Ralls
* Rewrite apparently confusing comment.
2013-12-18 Cristian Marchi
* Update Dutch translation, copied from the Translation Project.
2013-12-18 Cristian Marchi
* Updated Lithuanian translation provided by Aurimas Fišeras.
2013-12-16 Geert Janssens
* Add missing macros to distribution and silence libtool warning
2013-12-15 Frank H. Ellenberger
* [23570] there was still one "_JP" although currently commented out
2013-12-15 John Ralls
* Change guide and help translation directories
2013-12-15 John Ralls
* Release 2.5.10
2013-12-15 John Ralls
* Rename some directories in src/import-export
2013-12-15 John Ralls
* Move gnc-warnings.c from POTFILES.skip to POTFILES.ignore
2013-12-15 John Ralls
* Fix ax_pkg_swig.m4 filename.
2013-12-15 John Ralls
* Revert a stray, unrelated change from r23556
2013-12-15 John Ralls
* BUG 336843 (Attach images/files/urls to transactions):
2013-12-15 John Ralls
* Fix missing xaccTransCommitEdit() from r23466
2013-12-14 John Ralls
* Bug 619478 - Build warning in html/gnc-html-webkit.c
2013-12-14 Geert Janssens
* SWIG version updates
2013-12-14 Geert Janssens
* Guile 1.8 fixes for r23556 and r23557
2013-12-13 Cristian Marchi
* Update Italian translation.
2013-12-13 Geert Janssens
* Bug 719481 - GnuCash report crashes with Guile2
2013-12-13 Geert Janssens
* Use scm_[to/from]_utf8_string instead of scm_[to/from]_locale_string as per guile recommendation
2013-12-13 Mike Evans
* Move customer, bill, and invoice importers form the business menu to the file menu.
2013-12-13 Mike Evans
* Remove empty file.
2013-12-13 Frank H. Ellenberger
* Fix of [23550]: Translator comments don't like empty comment lines.
2013-12-13 Frank H. Ellenberger
* Update translation into Arabic language to 44% completion on trunk by عبدالسلام عبدالعزيز <[email protected]>
2013-12-12 Frank H. Ellenberger
* Tell translators where to adjust their credits.
2013-12-12 Mike Alexander
* Ignore missing accounts in gnc:filter-accountlist-type to avoid an assert.
2013-12-12 Mike Alexander
* Ignore XCode projects
2013-12-12 Mike Alexander
* Check for null account pointers in gnc_tree_view_account_set_selected_accounts.
2013-12-11 Frank H. Ellenberger
* Port of "Completion of translation into Arabic language by 55%" by abdulsalam alshilash
2013-12-11 Frank H. Ellenberger
* Appendix to [23539] update POTFILES.in
2013-12-11 Geert Janssens
* Build svn releases with documentation from a matching branch
2013-12-11 Geert Janssens
* Bug 720235 - Python bindings should load environment file just like gnucash does
2013-12-10 Mike Alexander
* Fix r23536: got the 'closing keyword wrong in a couple of places
2013-12-10 Mike Alexander
* Change various reports to find book closing transactions without pattern matching
2013-12-10 Mike Alexander
* Add the ability to search for transactions that are, or are not, book closing entries.