forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
6456 lines (3228 loc) · 128 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
2017-10-15 John Ralls
* Re-release 2.7.0 (HEAD -> unstable)
2017-10-15 John Ralls
* Disable inclusion of transaction text for OFX transactions in the description.
2017-10-16 John Ralls
* Use file:/// when constructing a tempdir uri on Windows. (origin/unstable)
2017-10-16 John Ralls
* Merge branch 'unstable-fix-spelling' of https://github.com/christopherlam/gnucash into unstable
2017-10-16 John Ralls
* Install libgwengui-gtk3.dll on Windows.
2017-10-16 Christopher Lam
* Fix spelling insensative->insensitive
2017-10-15 John Ralls
* [MacOS] Change CMake installed names to absolute paths from @rpath/...
2017-10-14 John Ralls
* Build Macs with WebKit1.
2017-10-14 John Ralls
* HTML: Connect to load-failed and resource-load signals.
2017-10-13 John Ralls
* Fix html temp-file URI.
2017-10-11 fell
* reapply commit 3cdac65 on the new dialog-ab-pref and remove obsolete section from dialog-ab.gade
2017-10-06 fell
* Merge branch 'maint' into unstable
2017-10-06 fell
* Use descriptions from gschema as tooltips in Preferences Aqbanking
2017-10-05 Geert Janssens
* Replace ambiguous 'scm' with 'vcs' in macro name (origin/master, origin/HEAD)
2017-10-05 Geert Janssens
* Use different format specifier to make older git versions happy
2017-10-05 Geert Janssens
* Merge branch maint into unstable
2017-10-04 Geert Janssens
* Additional changes to use commit date rather than build date
2017-10-03 Geert Janssens
* Fix gnucash.pot generation from cmake build.
2017-10-03 Geert Janssens
* Stop testing GObject's handling of invalid parameters
2017-10-03 fell
* Fix a typo in gir error message
2017-10-02 fell
* Readd the missing glade msgctx strings to ru.po (maint)
2017-10-02 fell
* ru.po: Minor improvements of the header after PR #209
2017-10-01 ashed
* Update Russian Translation with the 2.6.18 gnucash.pot.
2017-09-07 Bernhard M. Wiedemann
* Allow to export the last commit's date
2017-09-29 Ashed
* Updated and polished Russian Translation.
2017-09-29 Robert Fewell
* Change the item_edit blanking rectangle position and size
2017-09-29 Robert Fewell
* Change the position of the double row on the cursor
2017-09-29 Robert Fewell
* Instead of removing a css class, wrap the change in save/restore
2017-09-29 Robert Fewell
* Rename internal CSS class prefix for the register to 'register-'
2017-09-29 Robert Fewell
* Remove the CSS for a dark theme Register
2017-09-29 Robert Fewell
* Fix typo in comment
2017-09-23 Robert Fewell
* Make sure the sheet has focus at start
2017-09-23 Robert Fewell
* Fix problem with scrollbar sliders not tracking value
2017-09-13 Robert Fewell
* Fix missing hatchings when transaction unbalanced
2017-09-13 Robert Fewell
* When tabbing to the field, text should be highlighted only
2017-09-13 Robert Fewell
* Remove spaces from blank lines
2017-09-13 Robert Fewell
* Adjust text position to be the same as the item_edit entry
2017-09-09 Robert Fewell
* Make sure the cursor background is filled to start to hide whats below it
2017-09-09 Robert Fewell
* Add ability to draw a text cursor for the entry
2017-09-09 Robert Fewell
* Do not copy the colour and so prevent form having to free it
2017-09-09 Robert Fewell
* Allow the sheet to be scrolled with the mouse wheel
2017-09-09 Robert Fewell
* Rename a couple of functions to align with the format of the rest
2017-09-09 Robert Fewell
* Use a higher priority for the idle add when item edit updating
2017-09-09 Robert Fewell
* Fix problem when sheet first loaded in the register
2017-09-09 Robert Fewell
* Change the line position to make double thickness line on cursor
2017-09-04 Robert Fewell
* Use the background class for the dense-calendar
2017-09-04 Robert Fewell
* Change the way negative-numbers class was defined in CSS
2017-09-04 Robert Fewell
* Remove white space and tabs from split-register-model
2017-09-04 Robert Fewell
* Add a heading for the Rate column.
2017-09-04 Robert Fewell
* Register in journal mode with rate column, split columns loose alignment
2017-09-04 Robert Fewell
* Redraw the header after size allocation of the sheet.
2017-09-04 Robert Fewell
* Add redraw of the header when preference changes
2017-09-04 Robert Fewell
* Remove the no longer widgets for setting register colours
2017-09-04 Robert Fewell
* Change the register to be based on CSS
2017-09-04 Robert Fewell
* Change tabs to spaces in gnucash-style.c
2017-09-04 Robert Fewell
* Remove trailing white space from gnucash-sheet.c
2017-09-04 Robert Fewell
* Remove trailing white space from gnucash-item-edit.c
2017-09-04 Robert Fewell
* This dialog-invoice.glade file had missing changes, corrected.
2017-09-01 Robert Fewell
* This change is needed after all, used when header is resized
2017-08-31 Robert Fewell
* Remove white space and change tabs to spaces in gnucash-register.c
2017-08-31 Robert Fewell
* Rework the item-edit pop up to use sheet width and not move about
2017-08-31 Robert Fewell
* Change gnc_item_edit_update to be used in an idle add function
2017-08-31 Robert Fewell
* Move inline css for padding to gnucash.css
2017-08-31 Robert Fewell
* Remove an obsolete source comment in gnucash-item-list.c
2017-08-31 Robert Fewell
* Remove white space and change tabs to spaces in datecell-gnome.c
2017-08-31 Robert Fewell
* Rename various forms of Get Popup Height to Popup Get Height
2017-09-21 christopherlam
* Add missing export (gnc:date-get-week)
2017-09-27 Geert Janssens
* Merge branch 'maint' into unstable
2017-09-27 Geert Janssens
* Use the same bugzilla url in AC_INIT as on maint
2017-09-27 Geert Janssens
* Add Catalan README file to autotools based build
2017-09-26 Geert Janssens
* Fix build failures if userdata_home exists but gnc_userdata_home doesn't (master)
2017-09-26 Josep-Maria Prat
* Readme translated into catalan
2017-09-22 John Ralls
* Release 2.6.18 (tag: 2.6.18)
2017-09-22 John Ralls
* Remove automake version check for make dist.
2017-09-22 John Ralls
* Fix typo in CA_DIST name.
2017-09-21 John Ralls
* Import latest Farsi and Srpska translations from the translation project.
2017-09-21 Geert Janssens
* Ignore softlink for new report
2017-09-21 Geert Janssens
* Revert "Ignore softlink for new report"
2017-09-21 Geert Janssens
* Ignore softlink for new report
2017-09-21 Geert Janssens
* Merge 'maint' into unstable
2017-09-21 Geert Janssens
* Add income-gst-statement.scm to POTFILES.in
2017-09-21 christopherlam
* Fix some (gnc:make-gnc-monetary) errors
2017-09-17 christopherlam
* Restore "sign reverses" option This was removed during development.
2017-09-17 christopherlam
* Initial commit income-gst-statement.scm
2017-09-17 christopherlam
* Reindent from transaction.scm
2017-09-17 christopherlam
* cp transaction.scm income-gst-statement.scm
2017-09-21 Geert Janssens
* Fixup for Catalan account charts
2017-09-21 Geert Janssens
* Add boilerplate to get Catalan account charts installed and added to the distribution
2017-09-21 Josep-Maria Prat
* Catalan accounts missing
2017-09-20 Geert Janssens
* Properly ignore internal report options that are not on invisible option pages when opening the report options dialog
2017-09-16 John Ralls
* Release 2.7.0 (tag: 2.7.0)
2017-09-16 John Ralls
* Fix the fix from mac for test-userdata-dir.c
2017-09-16 John Ralls
* Fix test-userdata-dir on Mac.
2017-09-16 Geert Janssens
* Travis fixes
2017-09-16 Geert Janssens
* Minor tweaks to the userdata_dir logic
2017-09-16 John Ralls
* Fix python init errors.
2017-09-16 Geert Janssens
* Improve a few comments.
2017-09-16 Geert Janssens
* Disable creating a user_data_dir in the test environment
2017-09-16 Geert Janssens
* Also undo the changes to POTFILES.in
2017-09-06 John Ralls
* Install the current, 2015, and 2016 ChangeLogs.
2017-09-16 Geert Janssens
* Revert "Merge branch 'new-gst-report' of https://github.com/christopherlam/gnucash"
2017-09-16 Geert Janssens
* Update python bindings to use PyGI and Gtk3
2017-09-16 Geert Janssens
* Merge branch 'new-gst-report' of https://github.com/christopherlam/gnucash
2017-09-11 christopherlam
* "Sorting" tab overhaul to improve UI
2017-09-16 christopherlam
* Disallow Closing Transactions. These txns must not be counted in this report.
2017-09-15 christopherlam
* Initial commit income-gst-report.scm
2017-09-15 christopherlam
* Reindent income-gst-report.scm
2017-09-15 christopherlam
* cp transction.scm income-gst-statement.scm
2017-09-15 Geert Janssens
* Merge branch 'maint'
2017-09-15 Geert Janssens
* Bug 647805 - Interdependent report options fail to change state after using apply for a limited number of times
2017-09-15 fell
* Bug 787479 - Persian currency symbol is doubled
2017-09-14 John Ralls
* Fix the actual cmake dist problem, missing macros.
2017-09-13 Geert Janssens
* Apply python binding changes to correct file
2017-09-12 John Ralls
* Fix some odd automake errors that show up only during a CMake ninja dist.
2017-09-12 John Ralls
* Fix distribution pieces for gwenhywfar-gtk3.
2017-09-12 John Ralls
* Re-enable generation of POTFILES.in
2017-09-10 lmat
* Adding python tests to cmake
2017-09-12 Geert Janssens
* Merge branch 'maint'
2017-09-11 Rob Gowin
* Fix issues with loading and running init.py
2017-09-11 John Ralls
* Disable regeneration of POTFILES.in
2017-09-11 John Ralls
* Fix tiny omission that didn't build standard-reports.go.
2017-09-11 fell
* Update changed string in de.po
2017-09-11 fell
* Fix error in recent commit
2017-09-10 John Ralls
* Link libgncmod-app-utils-python to libgncmod-app-utils.
2017-09-11 fell
* Remove build_year from translatable copyright string
2017-09-10 fell
* Review of PR #183
2017-09-10 Geert Janssens
* Merge branch 'maint'
2017-09-10 Geert Janssens
* Merge branch 'fix_cmake_ofx_dep' of https://github.com/bhardwajs/gnucash
2017-09-09 christopherlam
* Fix swig wrapper for gncTaxTableGetTaxTables
2017-09-10 Geert Janssens
* Merge branch 'trav' of https://github.com/limitedAtonement/gnucash
2017-09-10 Geert Janssens
* Re-enable python-bindings test this time with a fully corrected python path
2017-09-09 John Ralls
* Add w_image.c to EXTRA_DIST.
2017-09-04 Daniel
* L10N: DE, some small corrections.
2017-09-09 Sumit Bhardwaj
* Made ofx-gschema dependent on WITH_OFX flag
2017-09-06 lmat
* Configure travis to use docker for CI
2017-09-09 Geert Janssens
* Temporarily disable python-bindings as it's currently failing
2017-09-09 Geert Janssens
* Merge branch 'maint'
2017-09-08 Rob Gowin
* Fix problems that occur when running out of CMake build dir
2017-09-08 Rob Gowin
* Run the python bindings test when using CMake
2017-09-06 lmat
* Adding .gitignore entries for ctags and vim swaps
2017-09-08 fell
* Revert PR #182 mostly.
2017-09-08 Geert Janssens
* Merge branch 'maint.translation.de.02' of https://github.com/quazgar/gnucash into maint
2017-09-06 John Ralls
* Add include of Foundation framework for NSString and NSBundle.
2017-09-06 John Ralls
* Set -xobjective-c or -xobjective-c++ for Mac code depending compiler.
2017-09-06 John Ralls
* Append to string the pre-cmake-3.4 way.
2017-09-06 John Ralls
* Install the current, 2015, and 2016 ChangeLogs.
2017-09-06 Geert Janssens
* Ajust the GUILE_COMPILE_PATH such that it also works on Windows
2017-09-05 Geert Janssens
* Fix gtest-gnc-timezone test on Windows
2017-09-05 Geert Janssens
* Fix gnc-rational test on Windows
2017-09-04 Geert Janssens
* Windows: check permissions actually used on the platform
2017-09-04 Geert Janssens
* Amend previous commit
2017-08-31 Geert Janssens
* Convert boost::filesystem path strings to utf8.
2017-09-04 Daniel
* L10N: DE, automatic "make pot" changes.
2017-09-04 Daniel
* L10N: DE, fix bug #787226: Bill ID / Billing ID swapped.
2017-09-03 Geert Janssens
* Merge branch 'maint'
2017-09-03 Geert Janssens
* Only build aqbanking when requested
2017-09-02 Sumit Bhardwaj
* Added WITH_OFX fix to CMakeLists in gnucash/import-export/ofx
2017-09-02 Geert Janssens
* Merge branch 'maint'
2017-09-02 Geert Janssens
* Fix deliberate test failure on previous commit
2017-09-02 Geert Janssens
* Have Travis print out build logs in case of test failures
2017-09-02 Geert Janssens
* Merge branch 'maint'
2017-09-02 Geert Janssens
* Set up a build matrix on Travis CI
2017-09-01 Rob Gowin
* Enable CMake build in Travis CI
2017-08-31 Geert Janssens
* Use boost::filesystem's built-in conversion between character encodings.
2017-08-27 John Ralls
* Remove set target property on no-longer-extant gncmod-utility-reports target.
2017-08-27 John Ralls
* Fix poor error message on missing guile and make it fatal.
2017-08-27 John Ralls
* Remove references to special HTMLHELP directory.
2017-08-27 John Ralls
* Fix type mismatch (ptr & int) in comparison.
2017-08-27 John Ralls
* Move Win32 additions to engine_SOURCES to before first use.
2017-08-31 Geert Janssens
* Fix FIND_PROGRAM invocation for guile
2017-08-31 Geert Janssens
* Set the same minimum required gtk version for cmake and autotools
2017-08-31 Geert Janssens
* Merge branch 'kvpvaltostring' of https://github.com/limitedAtonement/gnucash
2017-08-31 Geert Janssens
* Detail what is meant with a dark theme
2017-08-31 Geert Janssens
* Merge branch 'gtk3-update5' of https://github.com/Bob-IT/gnucash
2017-08-30 Robert Fewell
* Move another couple of functions used more than once to gnc-gtk-utils
2017-08-30 Robert Fewell
* Move function is_color_light to gnc-gtk-utils and rename
2017-08-29 Geert Janssens
* Merge branch 'prices-out2' of https://github.com/Bob-IT/gnucash
2017-08-18 lmat
* Should return std::string
2017-08-08 lmat
* Clear up guile2 vs. guile cmake confusion
2017-08-28 Robert Fewell
* Change the background colours of the import-main-matcher
2017-08-28 Robert Fewell
* Change colour function to is_color_light in gnc-dense-cal
2017-08-26 Geert Janssens
* Extend environment file parsing to also parse environment.local
2017-08-26 Geert Janssens
* Mention GNC_DATA_HOME and AQBANKING_HOME in the environment file.
2017-08-26 Geert Janssens
* Check GNC_DATA_HOME environment to override default userdata location.
2017-08-23 Geert Janssens
* Use platform dependent locations for gnucash user's data (gnc_userdata_home)
2017-08-22 Geert Janssens
* Rewrite several file path routines to use boost::filesystem
2017-08-25 John Ralls
* Build gwengui-gkt3 only if AQBanking is enabled.
2017-08-25 John Ralls
* Temporarily include building libgwengui-gtk3 in GnuCash.
2017-08-24 John Ralls
* Conditionally modify getpassword_cb to match new signature in gwenhywfar 4.7.99.
2017-08-24 John Ralls
* Convert to libgwengui-gtk3
2017-08-25 Geert Janssens
* Fully enable the new Account Substring option on the transaction report
2017-08-25 Geert Janssens
* Hide Account Substring option
2017-08-25 christopherlam
* Reduce to compatibility shim
2017-08-16 christopherlam
* added case sensitive filter
2017-08-16 christopherlam
* Account fullname filter for transaction.scm
2017-08-25 Geert Janssens
* Hide Account Substring option
2017-08-25 Geert Janssens
* Merge branch 'patch-3' of https://github.com/christopherlam/gnucash into maint
2017-08-25 christopherlam
* Reduce to compatibility shim
2017-08-24 Robert Fewell
* Change comment in fallback css file for emphasize-label
2017-08-23 Robert Fewell
* Rename the colour defines to closely match the text in import matcher
2017-08-23 Robert Fewell
* Rename direction boolean to arrow_down
2017-08-23 Robert Fewell
* Change the way dense calendar background colours are sourced
2017-08-23 Robert Fewell
* Improve marker alignment depending on row height being odd or even
2017-08-23 Robert Fewell
* Fix some lines with spaces on them
2017-08-23 Robert Fewell
* Change glade comment in css file
2017-08-23 Geert Janssens
* Build test-import-pending-matches as c++
2017-08-22 Robert Fewell
* Use GTK_STYLE_PROVIDER_PRIORITY_FALLBACK for fallback css file
2017-08-14 Robert Fewell
* Use the css class defines in the import matcher help dialog
2017-08-13 Robert Fewell
* Minor fix to gnc-tree-model-account, removal of double ;
2017-08-13 Robert Fewell
* These variables are not required any more in gnc-dense-cal
2017-08-13 Robert Fewell
* Change the css for the primary label in dialog account
2017-08-13 Robert Fewell
* Change the Register2 css to be from the fallback file
2017-08-13 Robert Fewell
* Do not set the foreground colour in Import Matcher
2017-08-13 Robert Fewell
* Rework the Import Matcher colours to be from the fallback css file
2017-08-13 Robert Fewell
* Rename css class negative-color to negative-numbers
2017-08-12 Robert Fewell
* The summary bar never respected the use of a negative colour
2017-08-12 Robert Fewell
* Change the account treeview to use the css negative color
2017-08-12 Robert Fewell
* Rework the negative label colour
2017-08-09 Robert Fewell
* Replace toggle arrow with a theme drawn one
2017-08-09 Robert Fewell
* Add draw arrow call back to various widgets
2017-08-09 Robert Fewell
* Add a draw callback to draw a theme based up/down arrow
2017-08-08 Robert Fewell
* Change the dense calender to use css so that it can be themed
2017-08-08 Robert Fewell
* Add CSS provider of a lesser priority than themes
2017-08-22 Mike Alexander
* Fix sigfigs(n) rounding to work when the input is bigger tnan 10**n.
2017-08-22 Mike Alexander
* Fix numerator overflow constructing GncNumeric from 96.16
2017-04-15 Mike Alexander
* Add tests for converting doubles 96.16 and 9616000000.0 to GncNumeric.
2017-08-21 Mike Alexander
* Add a couple of directories containing dependencies of libtest-core-guile.
2017-08-21 Geert Janssens
* Merge branch 'maint'
2017-07-01 Yasuaki Taniguchi
* Bug 784284 - unifying "Clear the entry." tooltip on Loan Repayment Calculator
2017-08-21 Geert Janssens
* Merge branch 'maint'
2017-08-19 Kristjan Onu
* Correct Price Overview documentation typos
2017-08-21 fell
* PR #172: Accelerator fixes for Latvian language
2017-08-08 Robert Fewell
* Remove the rules hint from gnc-tree-view to align with current setting
2017-08-21 Geert Janssens
* Fix cmake run on Ubuntu 16.04 (and possibly other distros)
2017-08-21 Geert Janssens
* Fix missing Find... functionality
2017-08-20 John Ralls
* Remove test for transaction set-date diagnostic message.
2017-08-20 John Ralls
* Use time64 GncDateTime constructor instead of struct tm constructor.
2017-08-20 John Ralls
* Disable creating a date string to maybe use in a PINFO message.
2017-08-20 John Ralls
* Parse date strings into a struct tm and construct GDateTime with that.
2017-08-20 John Ralls
* Test features to see if they're already set before setting them.
2017-08-20 Robert Fewell
* Move gnc-gdate-utils functions to gnc-date and remove files.
2017-08-20 Robert Fewell
* Change tabs to spaces and remove some blank lines
2017-08-20 Robert Fewell
* Rename gnc_pricedb_remove_old_prices_keep_last
2017-08-20 Robert Fewell
* Rename save_cloned_price to clone_price
2017-08-20 Robert Fewell
* Added second if clause for completeness.
2017-08-20 Robert Fewell
* Remove the 'if else' blocks by using boolean variable.
2017-08-20 Robert Fewell
* Rename function to be plural as more than one commodity returned in list
2017-08-20 Robert Fewell
* Move gnc-gdate-utils.c/h from app-utils to engine
2017-08-10 Robert Fewell
* Fix some missing id's in the glade file
2017-08-10 Robert Fewell
* Modify the unit tests to reflect changes.