forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2007
9184 lines (7257 loc) · 358 KB
/
ChangeLog.2007
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
2007-12-31 13:52 andi5
* [r16776] lib/libqof/qof/gnc-date.c: #506074: Handle fractional
timezone offsets correctly in gnc_timespec_to_iso8601_buff().
Patch from Daniel Harding BP
2007-12-31 11:05 andi5
* [r16775] accounts/de_DE/acctchrt_skr04.gnucash-xea: Revive root
account in german skr04 account template.
2007-12-31 06:21 andrewsw
* [r16774] src/report/standard-reports/advanced-portfolio.scm:
Advanced Portfolio, improve dividends and brokerage fee
handling: * allow proportional application of dividends/fees in
a multi-stock txn, * collect reinvested dividend amounts from
the buy split not income split, * track reinvested dividends
separately from dividend income, * report income when dividends
are *not* reinvested if there is a zero value/amount split tied
back to the stock account. Thanks to Richard Laager for ideas
and guidance.
2007-12-30 19:59 andi5
* [r16773] src/gnome-utils/gnc-account-sel.c: Do not set active
element of GncAccountSel to the first sometimes. In
gas_populate_list, the currently selected account is searched in
the new data, falling back to the first element in the list and
selecting it afterwards. So, often "Assets" is activated,
whereas the filtering happening later does not deselect it in
any way (the user may have typed it in). This patch simply
removes the fallback to element 1. To make the gas look better,
it may help to set it initially, like to an entry that was used
recently.
2007-12-30 19:50 andi5
* [r16772] src/business/business-core/file/gnc-employee-xml-v2.c,
src/business/business-core/file/gnc-vendor-xml-v2.c: Save and
load kvp frames of vendors and employees.
2007-12-30 18:42 andi5
* [r16771] src/engine/engine-helpers.c: Make gnucash compile on an
optimizing gcc-4.2. Patch from Jerry Quinn BP
2007-12-30 18:34 andi5
* [r16770] configure.in, lib/stf/Makefile.am,
src/import-export/csv/Makefile.am: Fix a few automake warnings.
2007-12-30 15:58 jsled
* [r16769] src/gnome-utils/gnc-frequency.c: Bug#506429: Correct
widget index offset computation for last-day-of-month SXes. BP
2007-12-30 10:57 cstim
* [r16767] src/gnome-utils/gnc-dense-cal.c: Remove translation
string from gnucash.pot that is looked up in gtk20 domain. As
pointed out by Bruno Haible, if there is only one dgettext call
the easiest way to exclude this from xgettext extraction is to
rename this particular dgettext call by a wrapper macro. BP
2007-12-29 22:36 jsled
* [r16766] src/app-utils/gnc-sx-instance-model.c: Bug#505972:
Correctly size the GUID string buffer; should resolve 2.2.2 SX
crashes. BP
2007-12-29 19:40 plongstaff
* [r16764] lib/libqof/qof/gnc-date.c, lib/libqof/qof/gnc-date.h,
lib/libqof/qof/kvp_frame.c, lib/libqof/qof/kvp_frame.h,
lib/libqof/qof/qofbackend.c, lib/libqof/qof/qofbackend.h,
lib/libqof/qof/qofbook.c, lib/libqof/qof/qofbook.h,
lib/libqof/qof/qofbookmerge.c, lib/libqof/qof/qofid.c,
lib/libqof/qof/qofid.h, lib/libqof/qof/qofinstance.c,
lib/libqof/qof/qoflog.c, lib/libqof/qof/qoflog.h,
lib/libqof/qof/qofquery-p.h, lib/libqof/qof/qofquery.c,
lib/libqof/qof/qofquery.h, lib/libqof/qof/qofquerycore-p.h,
lib/libqof/qof/qofquerycore.c, lib/libqof/qof/qofquerycore.h,
lib/libqof/qof/qofsession-p.h, lib/libqof/qof/qofsession.c,
lib/libqof/qof/qofsession.h, src/engine/engine-helpers.c,
src/engine/engine-helpers.h: Make some parameters const
2007-12-29 17:44 plongstaff
* [r16763] src/valgrind-gnucash.supp: Update valgrind suppressions
2007-12-29 17:43 plongstaff
* [r16762] src/engine/cap-gains.c, src/engine/cap-gains.h: Make
some parameters const
2007-12-29 03:26 plongstaff
* [r16760] src/gnome-utils/gnc-tree-model-account.c: Fix valgrind
error - conditional based on uninitialized variable
2007-12-29 00:25 andrewsw
* [r16759] src/report/standard-reports/advanced-portfolio.scm:
another stab at improving rounding. prevent more overflows as
pointed out by Kendall Green. lots of GNC-AUTO-DENOM seems to
clean up the overflowing and prevent phantom gains/losses from
rounding errors. BP
2007-12-28 23:16 andrewsw
* [r16758] src/import-export/qif-import/qif-to-gnc.scm: Charles
Day's improvements to qif memo/notes handling. bug #495219. BP
2007-12-28 21:44 andi5
* [r16756] lib/libqof/qof/qofbackend.c,
lib/libqof/qof/qofquerycore.c: Fix two memory leaks.
2007-12-28 14:45 andi5
* [r16755] src/import-export/ofx/gnc-ofx-import.c: #505386: Strip
non-utf8 characters from ofx check and reference number strings.
BP
2007-12-28 02:27 plongstaff
* [r16754] packaging/win32, src/engine/gnc-commodity.c,
src/engine/gnc-commodity.h: 1) Make some function parameters
const 2) Add '.deps' to svn:ignore
2007-12-27 15:12 andi5
* [r16747] configure.in: Bump version number to 2.2.99 on trunk.
2007-12-27 14:15 warlord
* [r16746] src/engine/test/test-book-merge.c: Don't need to sleep
in the test. (#505894) If we do need to sleep, next time the
comment should explain why.
2007-12-27 14:02 warlord
* [r16745] src/engine/gnc-commodity.c: Fix the logic of the #if
for the warning.
2007-12-27 12:22 andi5
* [r16742] accounts/de_AT/acctchrt_brokerage.gnucash-xea,
accounts/de_CH/acctchrt_brokerage.gnucash-xea,
accounts/de_CH/acctchrt_common.gnucash-xea,
accounts/de_DE/acctchrt_brokerage.gnucash-xea,
accounts/de_DE/acctchrt_common.gnucash-xea: Correct Ertraege in
latin1-encoded german account templates. This stems from r16550
and r16551 and is due to a weird mixture of utf-8 and iso-8859-1
in the de_* files. BP
2007-12-27 10:44 cstim
* [r16740] src/report/standard-reports/cash-flow.scm: Fix i18n
string to translate only the meaningful part. Remove the
unnecessary "for" in the report title. This doesn't introduce
any new string. It can be back-ported right away. BP
2007-12-26 22:07 cstim
* [r16733] po/POTFILES.skip: Remove unused import-export/qif files
from translation input. BP
2007-12-26 05:17 warlord
* [r16730] src/engine/Account.c, src/engine/Period.c,
src/engine/gnc-commodity.c, src/engine/gnc-commodity.h,
src/gnome-utils/dialog-commodity.c: Allow the user to
permanently disable currency quotes (#499496) Patch by Daniel
Harding
2007-12-26 03:28 warlord
* [r16729] src/business/business-reports/owner-report.scm: Show
the balance row for all transactions before the "from" date.
Patch by Jeff Green BP
2007-12-26 03:14 warlord
* [r16728] src/business/business-reports/aging.scm: Including all
bills/invoices since the beginning of time. Patch by Jeff Green.
BP
2007-12-26 02:39 warlord
* [r16727] src/gnome-utils/gnc-tree-view-account.c: Wait for
pending events before displaying the tree view (#463678) BP
2007-12-26 02:26 warlord
* [r16726] src/gnome/reconcile-list.c, src/gnome/reconcile-list.h:
Don't un-clear transactions improperly when postponing
reconciliation (#497517) Patch by Jeff Green and Mark Jenkins BP
2007-12-26 02:14 warlord
* [r16725] src/engine/Account.c, src/engine/cap-gains.c,
src/engine/gnc-lot.c, src/engine/gnc-lot.h,
src/gnome/glade/lots.glade, src/gnome/lot-viewer.c: Allow
creation of new lots from lot viewer. (#420543) Patch by Klee
Dienes <[email protected]> * src/engine/Account.c
(xaccAccountRemoveLot): Generate a QOF_EVENT_REMOVE for the lot
and QOF_EVENT_MODIFY for the account. (xaccAccountInsertLot):
Ditto, but QOF_EVENT_ADD. * src/engine/gnc-lot.c
(gnc_lot_make_default): Move from cap-gains.c. *
src/engine/gnc-lot.h (gnc_lot_make_default): Add prototype. *
src/engine/cap-gains.c (MakeDefaultLot): Move to gnc-lot.c as
gnc_lot_make_default(). * src/gnome/lot-viewer.c: Add code to
support lot creation: (RESPONSE_NEW_LOT): Add enumerated value.
(lv_save_current_row): New function. (lv_select_row): Add call
to lv_save_current_row. (lv_unselect_row): Use
lv_save_current_row. (lv_close_handler): Use
lv_save_current_row. (lv_response_cb): Handle RESPONSE_NEW_LOT.
(gnc_lot_viewer_dialog): Watch for QOF_EVENT_ADD and
QOF_EVENT_REMOVE for lots. * src/gnome/glade/lots.glade: Add
"new lot" button.
2007-12-26 01:38 warlord
* [r16724] src/business/business-reports/aging.scm: Fix a crash in
the receivable aging report (#384879) Dont access the owner
object after it's freed.
2007-12-26 01:07 warlord
* [r16723] src/report/report-system/html-acct-table.scm: reduce
the width of reports (#366934) Use instead of extra
columns. Patch by Paul Andreassen
2007-12-26 00:10 warlord
* [r16722] packaging/gnucash.spec.in: Make sure we require slib in
our RPM packaging (#471321)
2007-12-26 00:03 warlord
* [r16721] src/engine/iso-4217-currencies.scm: Add currencies XDR
and XXX for IMF and "no-currency" (#504935)
2007-12-25 16:56 warlord
* [r16720] src/business/business-core/gncInvoice.c,
src/business/business-core/gncInvoiceP.h,
src/business/business-gnome/dialog-invoice.c: Maintain separate
invoice number sequences for AR and AP (#327218) Actually,
maintain separate number sequences for Customer Invoices, Vendor
Bills, and Employee Expense Vouchers. Support Jobs, too. Based
on a patch by Alex Prinsier.
2007-12-25 16:23 warlord
* [r16718] src/register/ledger-core/split-register-load.c: Choose
a reasonable currency in stock registers (#116353) Based on the
patch from Mike Alexander, walk up the account tree until we
find a "currency" account and use that instead of always using
the locale currency. Pop up a dialog if this fails search fails.
BP
2007-12-24 21:18 warlord
* [r16716] src/engine/cap-gains.c,
src/engine/test-core/test-engine-stuff.c: (#492137) Re-apply
r16619 and make a change to the test harness to actually get the
checks to pass with r16690. This was an overflow in the test
harness.
2007-12-24 20:28 warlord
* [r16715] src/gnome-utils/dialog-book-close.c: Make sure to
properly parent auto-created accounts. Make sure to properly set
account commodity. Make sure a currency sub-account doesn't
already exist before creating one.
2007-12-23 21:45 cstim
* [r16706] src/business/business-reports/aging.scm,
src/gnome-utils/gnc-main-window.c,
src/gnome/dialog-print-check.c, src/gnome/glade/print.glade,
src/import-export/generic-import.glade: Fix spelling errors in
UI messages. Pointed out by Clytie Siddall. Those will break
several translated strings, but the fixed typos are an actual
improvement. BP
* [r16705] src/import-export/hbci/glade/hbci.glade,
src/import-export/qif-import/qif.glade: Remove extra spaces in
glade messages. Pointed out by Clytie Siddal. Those will break 2
translated strings. BP
* [r16704] src/gnome/druid-merge.c,
src/gnome/schemas/apps_gnucash_dialog_commodities.schemas.in,
src/gnome/schemas/apps_gnucash_dialog_prices.schemas.in,
src/gnome/schemas/apps_gnucash_warnings.schemas.in,
src/import-export/schemas/apps_gnucash_import_generic_matcher.schemas.in,
src/report/report-gnome/window-report.c: String improvements in
gconf labels and error messages as pointed out by Clytie
Siddall. Those strings are invisible for almost any user anyway
and can therefore be back-ported soon, too. BP
* [r16703] src/gnome/glade/budget.glade,
src/gnome/schemas/apps_gnucash_dialog_common.schemas.in,
src/report/locale-specific/us/taxtxf-de_DE.scm,
src/report/locale-specific/us/taxtxf.scm,
src/report/report-system/report.scm: String improvements, as
pointed out by Clytie Siddall. This changeset does not add any
untranslated strings and does not change any existing translated
strings. It can directly be back-ported. BP
2007-12-22 05:28 andrewsw
* [r16693] src/report/standard-reports/advanced-portfolio.scm:
Richard Laager's patch to Advanced Portfolio. Adds an Income
column, and an option to ignore brokerage fees in return calcs.
2007-12-21 18:53 andrewsw
* [r16690] src/engine/iso-4217-currencies.scm: Daniel Harding's
update to Afghani currency. closes #504257 BP
2007-12-19 21:59 andrewsw
* [r16684] src/report/standard-reports/advanced-portfolio.scm:
make some improvements to handling of moneyin/out. Clean up some
cruft. Fixes #355660. May at least partially fix #346062 BP
2007-12-19 18:07 andi5
* [r16683] packaging/win32/dist.sh, src/pixmaps/Makefile.am:
#503889: Improve r16678 when install icons according to spec.
Make it work for builddir != srcdir. Do not distribute
share\icons or share\pixmaps on win32. BP
2007-12-19 17:38 andi5
* [r16682] src/bin/gnucash-bin.c: Update last stable version on
trunk to 2.2.2.
2007-12-18 20:55 andrewsw
* [r16680] src/app-utils/app-utils.scm,
src/app-utils/date-utilities.scm,
src/report/standard-reports/transaction.scm: forward-port
(swigify) weekly subtotals for transaction report. see #138989.
2007-12-18 14:57 jsled
* [r16678] src/pixmaps, src/pixmaps/Makefile.am: Bug#503889:
Install icons according to spec. On Win32, however, don't run
the non-existant (?) gtk-update-icon-cache. BP
2007-12-16 18:47 andi5
* [r16674] packaging/win32/Makefile.am,
src/import-export/csv/Makefile.am: Fix make distcheck on trunk.
2007-12-16 17:17 jsled
* [r16670] src/app-utils/gnc-sx-instance-model.c: Bug#496178:
freeing the result of guid_to_string(…) causes memory
corruption; use guid_to_string_buff(…) for clarity. BP
2007-12-16 16:41 jsled
* [r16669] src/bin/gnucash-bin.c: Change some g_error's to
g_warnings, which won't abend the app.
2007-12-16 16:40 jsled
* [r16668] src/app-utils/gnc-sx-instance-model.c: Misc cleanups:
always check creation_errors list, always print errors we
create, some other API usage cleanup.
2007-12-16 13:05 andi5
* [r16664] packaging/win32/install.sh: Win32: Explicitly disable
python support of ktoblzcheck. BP
2007-12-15 22:30 andi5
* [r16655] packaging/win32/defaults.sh, packaging/win32/dist.sh,
packaging/win32/install.sh: Win32: Add libtiff, because newer
gtk+ versions depend on it. BP
2007-12-15 22:24 jsled
* [r16654] src/engine/Scrub.c: more specific log domain.
2007-12-15 20:57 jsled
* [r16653] src/engine/Transaction.c: "trans" and "t" aren't good
variable names… try "from" and "to".
2007-12-15 20:55 jsled
* [r16652] src/app-utils/gnc-sx-instance-model.c: Bug#500427: copy
any notes associated with SXes upon creation. BP
2007-12-15 20:06 jsled
* [r16650] src/bin/gnucash-bin.c: Don't make unknown command-line
arguments abort the program, just warn and exit non-zero. BP
2007-12-15 18:00 andi5
* [r16647] packaging/win32/gnucash.iss.in: Win32: Add Brazilian
Portuguese translation of inno strings, patch from Leonardo
Fontenelle. BP
2007-12-15 17:34 andi5
* [r16646] packaging/win32/defaults.sh, packaging/win32/dist.sh,
packaging/win32/gnucash.iss.in,
packaging/win32/goffice-0.4.1-patch.diff,
packaging/win32/goffice-0.4.3-patch.diff,
packaging/win32/install.sh: Win32: Update package versions.
Update to gettext 0.17, glib 2.14.4, cairo 1.4.10, fontconfig
2.4.2-tml-20071015, atk 1.20.0, pango 1.18.3, gtk+ 2.12.3,
orbit2 2.14.10, gail 1.20.1, libbonobo 2.20.1, gnome-vfs
2.18.0.1, libgnome 2.20.1, libgnomecanvas 2.20.1, libbonoboui
2.20.0, libglade 2.6.2 and goffice 0.4.3. Gettext installs
translations to $prefix\lib\locale now, but not all gnome
packages have been rebuilt yet. BP
2007-12-14 20:38 andi5
* [r16641] po/glossary/pt_BR.po: Update Brazilian Portuguese
glossary, patch by Leonardo Fontenelle.
2007-12-14 20:00 andi5
* [r16638] packaging/win32/install.sh: #503579: Improve pi.sh to
allow reinstalling MSYS/MinGW, patch from Charles Day. BP
2007-12-11 20:49 cstim
* [r16636] po/ca.po, po/cs.po, po/de.po, po/en_GB.po, po/hu.po,
po/pt_BR.po: Adapt translations to last string change introduced
by r16633. BP
2007-12-11 20:48 cstim
* [r16635] configure.in,
src/import-export/hbci/druid-hbci-initial.c: #500026: Add
configure argument for packagers to have correct package name
reported on missing qt3-wizard. Because gnucash is a GTK+
application and HBCI setup wizard for aqbanking is a Qt stuff,
most distribution split aqbanking packages to more sub-packages.
This patch adds possibility to change string of package name
displayed in the reported error without need of distro-specific
patches breaking I18N. It could be done in compile time using
--with-qt3-wizard-package=name. Patch by Stanislav Brabec
<[email protected]>. Signed-off-by: Christian Stimming
<[email protected]> BP
2007-12-09 23:29 jsled
* [r16629] src/app-utils/gnc-sx-instance-model.c: Bug#502755:
Duplicate a key which is "owned" by the table we're inserting it
into. BP
2007-12-09 01:26 andi5
* [r16624] Makefile.am, m4: Remove the spurious m4/ directory. Use
macros/ instead.
2007-12-08 17:26 andi5
* [r16623] src/import-export/csv: Ignore other generated files.
2007-12-08 17:20 andi5
* [r16622] src/backend/file/io-gncxml-v2.c: Glib 2.14 removed the
pipe macro in gwin32.h, use _pipe instead.
2007-12-08 17:16 andi5
* [r16621] accounts/ja, accounts/zh_CN, lib/stf: Ignore some
generated files.
2007-12-08 14:11 andi5
* [r16619] src/engine/cap-gains.c: #492137: Patch from Mike
Alexander to fix regression in lot scrubber introduced in
r16370. Timespec uses a signed integer for the seconds instead
of an unsigned. BP
2007-12-05 22:15 jsled
* [r16615] art/icon.svgz: update as well
2007-12-05 14:57 jsled
* [r16613] art/banner.svgz, art/logo.svgz, art/splash.svgz,
src/pixmaps/gnucash_splash.png: s#Open Source#Free#,
s#Finance#Accounting#, s#Gnucash#GnuCash# BP
2007-12-02 17:15 andi5
* [r16610] src/gnome/dialog-sx-since-last-run.c: #501059: Clean up
SLR dialog sx model and close with session. Avoid ref'ing the
model underlying the dialog so that it will be freed correctly.
Register the dialog as gui component to close it when the
session closed. BP
2007-12-02 15:13 andi5
* [r16607] src/app-utils/gnc-component-manager.c: Fix compile
error in debugging part of gnc-component-manager.c.
* [r16606] src/gnome-utils/gnc-plugin-page.c: Use
g_type_name(type) instead of formatting with %ld.
* [r16605] src/app-utils/Makefile.am,
src/app-utils/gnc-sx-instance-model.c: Rename log domains
gnc.app-util* to gnc.app-utils*.
* [r16604] src/bin/gnucash-bin.c: When setting log levels, prefer
command line options to log.conf.
2007-12-02 11:47 andi5
* [r16603] src/bin/overrides/gnucash-make-guids,
src/engine/engine.i: #499788: Swig-wrap guid_new_return and use
it for gnucash-make-guids.
2007-12-02 10:35 andi5
* [r16602] src/gnome-utils/gnc-tree-view.c: In
gtv_set_sort_column, avoid a critical warning and block a
signal. The critical warning happens when opening the security
editor and the model underlying the tree view has not been
created yet. Also, do not send the sort column (back) to the
gconf storage.
* [r16601] src/import-export/qif-import/qif-parse.scm,
src/import-export/qif/qif-parse.c: #491581: Patch from Charles
Day to import qif Cash, ContribX and WithdrwX actions. BP
2007-11-24 15:38 andi5
* [r16598] src/engine/gnc-commodity.c: #499360: Patch by Daniel
Harding to fix a crash when editing certain commodities. Replace
some DEBUGs by LEAVEs as well. BP
2007-11-19 00:16 andi5
* [r16597] src/gnome/dialog-sx-editor.c: #496023: Handle correct
signal for closing the sx editor. BP
2007-11-14 00:08 andi5
* [r16595] macros/svn2cl.xsl: Improve svn2cl.xsl: Make branch
selection more flexible, strip unmerged branches. All included
branches can be configured in one xsl:variable now, with
optional child parameters 'before' and 'after', e.g. to support
branching points and intermediary merges. Fix the bug that the
date of a hidden previous log entry can undermine the printing
of a new date-author header for a log entry. The branch
selection based on the actual merge state: + csv-import -
gda-dev - module-cleanup
2007-11-07 21:47 cstim
* [r16583] packaging/win32/defaults.sh: Update ktoblzcheck package
version. BP
2007-11-07 08:27 cstim
* [r16581] src/business/business-reports/payables.scm,
src/business/business-reports/receivables.scm: Fix erroneous
option ordering. Patch by Andrew Sackville-West. BP
2007-11-03 01:56 andi5
* [r16579] configure.in, lib/libqof/qof/Makefile.am,
lib/libqof/qof/deprecated.c, lib/libqof/qof/deprecated.h,
lib/libqof/qof/gnc-numeric.c, lib/libqof/qof/qof.h,
lib/libqof/qof/qofbookmerge.h, lib/libqof/qof/qofevent-p.h,
lib/libqof/qof/qofevent.c, lib/libqof/qof/qofevent.h,
lib/libqof/qof/qofutil.c, src/engine/test/test-book-merge.c,
src/gnome/druid-merge.h: Remove deprecated qof wrappers.
2007-11-01 20:35 cstim
* [r16577] src/report/report-system/html-acct-table.scm: More
speed up of reports by caching balance results in a hash table.
Patch by Mike Alexander. Together with r16576 for BP. BP
2007-10-30 21:26 cstim
* [r16576] src/report/report-system/html-acct-table.scm: #488001:
Speed up several reports that rely on html-acct-table.scm. Patch
by Andrew Sackville-West. Signed-off-by: Christian Stimming
2007-10-28 15:32 andi5
* [r16575] doc/tip_of_the_day.list.in: Add development version
warning to the tip of the day list.
2007-10-28 15:09 andi5
* [r16574] configure.in: #484576, r16572: Require goffice 0.5.1
for libgoffice-0.5.0.
2007-10-28 13:26 cstim
* [r16573] src/doc/design/reports.texinfo: #490934: Minor
correction to reports documentation. Patch by Tim Abell.
2007-10-28 12:27 andi5
* [r16572] configure.in, src/gnome-utils/gnc-html-graph-gog.c:
#484576: Support goffice >= 0.5.1. For us, goffice 0.5.1 differs
from 0.4 in that it lacks GogRendererCairo and we can use
GogRenderer and gog_renderer_render_to_cairo() (new) directly.
goffice 0.5.0 will not work with GnuCash.
2007-10-27 08:10 cstim
* [r16571] src/doc/design/component-manager.texinfo: Minor
correction to component manager documentation. Patch by Tim
Abell, bug#490699. Signed-off-by: Christian Stimming
2007-10-26 23:21 andi5
* [r16570] src/core-utils/gnc-gconf-utils.h: #490679: Honor GNOME
toolbar settings when specified. Readd leading slash to
DESKTOP_GNOME_INTERFACE for an absolute gconf lookup. It has
been removed in r14945 (by me). BP
2007-10-26 18:59 cstim
* [r16569] src/report/standard-reports/income-statement.scm: Add
optional two-column display of income statement and reversing
the income/expense order. This patch implements a two-column
income statement. I have sent this to the original person who
requested it on IRC, but haven't heard back as to whether it
actually solves his problem. Additionally, the patch includes
support for reversing the order of income/expense tables in the
report. It defaults to the standard income/expense, but can be
reversed to show expense/income (bad news first?) and is
supported by either one or two-column mode. Patch by Andrew
Sackville-West, bug#488004 Signed-off-by: Christian Stimming
2007-10-16 22:44 andi5
* [r16568] src/gnome-utils/dialog-preferences.c: #487326: Remove
account separator gconf callback when closing preferences dialog.
2007-10-16 22:18 andi5
* [r16567] src/import-export/qif-import/druid-qif-import.c,
src/import-export/qif-import/qif.glade: #487317: Fix qif import
druid when stepping back without a file selection. Also gray out
"unload selected file" and "back" buttons when there is no file
selected. BP
2007-10-15 19:59 cstim
* [r16565] packaging/win32/defaults.sh: Update gwen/aqbanking
versions on windows.
2007-10-15 19:49 andi5
* [r16564] src/gnome-utils/dialog-options.c,
src/gnome-utils/gnc-account-sel.c: #482177: Emit
account_sel_changed on GncAccountSel when the combobox changed.
This makes it possible again to create customer reports for
other than only the first A/R account in the list. BP
2007-10-13 15:23 andi5
* [r16563] packaging/win32/gnucash.iss.in,
packaging/win32/install.sh: Win32: Let gnucash.bat pass its
parameters to gnucash.
2007-10-13 11:07 cstim
* [r16562] src/import-export/csv/Makefile.am,
src/import-export/csv/gnc-csv-model.c: Get the CSV code to
compile on Windows as well.
2007-10-12 22:51 andi5
* [r16561] configure.in, lib/Makefile.am, lib/stf,
lib/stf/Makefile.am, lib/stf/README, lib/stf/stf-parse.c,
lib/stf/stf-parse.h, src/bin/gnucash-bin.c,
src/import-export/Makefile.am,
src/import-export/csv/Makefile.am,
src/import-export/csv/example-file.csv,
src/import-export/csv/gnc-csv-gnumeric-popup.c,
src/import-export/csv/gnc-csv-gnumeric-popup.h,
src/import-export/csv/gnc-csv-import.c,
src/import-export/csv/gnc-csv-import.h,
src/import-export/csv/gnc-csv-model.c,
src/import-export/csv/gnc-csv-model.h,
src/import-export/csv/gnc-csv-preview-dialog.glade,
src/import-export/csv/gnc-csv2glist.c,
src/import-export/csv/gnc-csv2glist.h,
src/import-export/csv/gnc-plugin-csv-ui.xml,
src/import-export/csv/gnc-plugin-csv.c,
src/import-export/csv/gnc-plugin-csv.h,
src/import-export/csv/gncmod-csv-import.c: Merge csv-import
branch back into trunk. configure.in | 2 lib/Makefile.am | 4
lib/stf/Makefile.am | 13 lib/stf/README | 2 lib/stf/stf-parse.c
| 1414 +++++++++++++++++++++ lib/stf/stf-parse.h | 112 +
src/bin/gnucash-bin.c | 1 src/import-export/Makefile.am | 4
src/import-export/csv/Makefile.am | 59
src/import-export/csv/example-file.csv | 4
src/import-export/csv/gnc-csv-gnumeric-popup.c | 194 ++
src/import-export/csv/gnc-csv-gnumeric-popup.h | 78 +
src/import-export/csv/gnc-csv-import.c | 1173 +++++++++++++++++
src/import-export/csv/gnc-csv-import.h | 33
src/import-export/csv/gnc-csv-model.c | 1199 +++++++++++++++++
src/import-export/csv/gnc-csv-model.h | 122 +
src/import-export/csv/gnc-csv-preview-dialog.glade | 496 +++++++
src/import-export/csv/gnc-csv2glist.c | 187 --
src/import-export/csv/gnc-csv2glist.h | 39
src/import-export/csv/gnc-plugin-csv-ui.xml | 11
src/import-export/csv/gnc-plugin-csv.c | 160 ++
src/import-export/csv/gnc-plugin-csv.h | 60
src/import-export/csv/gncmod-csv-import.c | 91 + 23 files
changed, 5228 insertions(+), 230 deletions(-)
2007-10-09 13:27 jsled
* [r16558] src/gnome/gnucash.desktop.in.in: Add MimeType directive
so that systems can know how to open our files. :p
2007-10-08 21:55 andi5
* [r16557] src/gnome-search/search.glade: In search dialog, make
top part naturally sized and bottom part expandable. Free the
search criteria box from its viewport and scrolledwindow and let
it take the space it needs. On the other hand, the search
results now fill the remaining space.
2007-10-07 22:45 andi5
* [r16555] src/business/business-gnome/glade/date-close.glade,
src/gnome-utils/gnc-account-sel.c: Patch from Geert Janssens to
expand rhs fields in the post dialog.
2007-10-06 23:05 andi5
* [r16554] src/base-typemaps.i,
src/business/business-core/business-core.i: #483796, Fancy
Invoice: Convert the elements of an AccountValueList when
wrapping. GLIST_HELPER_INOUT does not touch the single elements
and GncAccountValue typemaps do not work here.
2007-10-06 08:58 cstim
* [r16553]
branches/csv-import/src/import-export/csv/gnc-csv-model.c: Fix
compiler warning
2007-10-05 20:38 cstim
* [r16552] accounts/de_AT/acctchrt_common.gnucash-xea: Replace
"Sonstige Einkommen" by "Sonstige Erträge". (Forgot one in
r16551)
2007-10-05 20:32 cstim
* [r16551] accounts/de_AT/acctchrt_business.gnucash-xea,
accounts/de_CH/acctchrt_common.gnucash-xea,
accounts/de_DE/acctchrt_common.gnucash-xea,
accounts/de_DE/acctchrt_full.gnucash-xea: Replace "Sonstige
Einkommen" by "Sonstige Erträge".
* [r16550] accounts/de_AT/acctchrt_brokerage.gnucash-xea,
accounts/de_AT/acctchrt_business.gnucash-xea,
accounts/de_AT/acctchrt_common.gnucash-xea,
accounts/de_CH/acctchrt_brokerage.gnucash-xea,
accounts/de_CH/acctchrt_common.gnucash-xea,
accounts/de_DE/acctchrt_brokerage.gnucash-xea,
accounts/de_DE/acctchrt_common.gnucash-xea: Replace "Einkommen"
by "Erträge" as proposed on gnucash-de.
2007-10-05 19:11 cstim
* [r16549] src/engine/TransLog.c: Fix gcc-4.2 warning on a string
that cannot be NULL. Pointed out by Andrew Sackville-West.
2007-10-03 01:18 andi5
* [r16547] lib/libqof/qof/qofquerycore.c,
lib/libqof/qof/qofutil.c, lib/libqof/qof/qofutil.h: #438360:
Replace str{,n}casestr and strcasecmp by
qof_utf8_{substr_nocase,strcasecmp}. The functions used did not
work for non-ascii characters. The new implementations use
g_utf8_casefold and g_utf8_normalize to improve case insensitive
searches and comparisons.
2007-09-27 22:07 andi5
* [r16545] src/app-utils/gnc-sx-instance-model.c: Fix a
NULL-%s-printf in the SX code, #481110.
2007-09-23 20:35 cstim
* [r16544] po/glossary/zh_TW.po, po/zh_TW.po: Updated Traditional
Chinese (zh_TW) translations by Kuang-che Wu <[email protected]>
2007-09-19 16:49 rolf
* [r16542] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: fix
some spelling mistakes
2007-09-19 16:21 rolf
* [r16541] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
remove some superfluous white-space
2007-09-16 02:22 andi5
* [r16535] packaging/win32/defaults.sh: Patch by Nathan Buchanan
to fix link to libxslt on zlatkovic.com.
2007-09-15 08:29 cstim
* [r16533] po/de.po: Update German translation. Change translation
of 'vendor' into 'Lieferant' as suggested by Robert Froschauer:
2007-09-14 20:42 cstim
* [r16532] po/de.po, po/glossary/de.po: German wording
improvements as suggested by Robert Froschauer: 'income
statement' now 'Gewinn- und Verlustrechnung' 'total revenue' now
'Gesamterträge' 'vendor' now 'Lieferant', but not yet completely
done
2007-09-14 20:00 cstim
* [r16529] accounts/Makefile.am: Fix messed-up Makefile for new
account templates.
2007-09-14 19:59 cstim
* [r16528] po/pt_BR.po: Updated Brazilian Portugese translation by
Leonardo Fontenelle and Leslie H. Watter. We are "a little"
late, but this is the new pt_BR translation: - 3446 translated
messages, - 184 fuzzy translations, - 56 untranslated messages.
* [r16527] accounts/Makefile.am, accounts/zh_CN,
accounts/zh_CN/Makefile.am,
accounts/zh_CN/acctchrt_brokerage.gnucash-xea,
accounts/zh_CN/acctchrt_business.gnucash-xea,
accounts/zh_CN/acctchrt_carloan.gnucash-xea,
accounts/zh_CN/acctchrt_cdmoneymkt.gnucash-xea,
accounts/zh_CN/acctchrt_checkbook.gnucash-xea,
accounts/zh_CN/acctchrt_childcare.gnucash-xea,
accounts/zh_CN/acctchrt_common.gnucash-xea,
accounts/zh_CN/acctchrt_eduloan.gnucash-xea,
accounts/zh_CN/acctchrt_fixedassets.gnucash-xea,
accounts/zh_CN/acctchrt_full.gnucash-xea,
accounts/zh_CN/acctchrt_homeloan.gnucash-xea,
accounts/zh_CN/acctchrt_homeown.gnucash-xea,
accounts/zh_CN/acctchrt_otherloan.gnucash-xea,
accounts/zh_CN/acctchrt_renter.gnucash-xea,
accounts/zh_CN/acctchrt_retiremt.gnucash-xea,
accounts/zh_CN/acctchrt_spouseinc.gnucash-xea,
accounts/zh_CN/acctchrt_spouseretire.gnucash-xea,
accounts/zh_HK, accounts/zh_HK/acctchrt_business.gnucash-xea,
accounts/zh_TW, accounts/zh_TW/acctchrt_business.gnucash-xea,
configure.in: Bug#473827: Chinese account templates by
titanwill. Includes the business account from the above
translation. The words "equity" and "state/province". Created
zh_TW and zh_HK translations of business account. Each one is
now set to the appropriate default currency (zh_CN = CNY, zh_TW
= TWD, zh_HK = HKD)
2007-09-12 03:19 jsled
* [r16525] src/engine/iso-4217-currencies.scm: iso4217 currency
updates
2007-09-12 02:56 jsled
* [r16524] packaging/win32/install.sh: pause to let Windows catch
up with file creation; patch from Nathan Buchanan <nbinont gmail
com>.
2007-09-12 02:46 jsled
* [r16523] packaging/win32/defaults.sh,
packaging/win32/functions.sh: wget rate-limiting, patch from
Nathan Buchanan <nbinont gmail com>
2007-09-11 00:38 jsled
* [r16522] src/engine/iso-4217-currencies.scm: Bug#475666: add the
Cuban Convertible Peso (CUC).
2007-09-10 19:29 cstim
* [r16521] accounts/ja_JP.EUC/acctchrt_common.gnucash-xea: Remove
obsolete and unused ja_JP.EUC account template
2007-09-10 19:27 cstim
* [r16520] accounts/Makefile.am, accounts/ja,
accounts/ja/Makefile.am,
accounts/ja/acctchrt_brokerage.gnucash-xea,
accounts/ja/acctchrt_business.gnucash-xea,
accounts/ja/acctchrt_carloan.gnucash-xea,
accounts/ja/acctchrt_cdmoneymkt.gnucash-xea,
accounts/ja/acctchrt_checkbook.gnucash-xea,
accounts/ja/acctchrt_childcare.gnucash-xea,
accounts/ja/acctchrt_common.gnucash-xea,
accounts/ja/acctchrt_eduloan.gnucash-xea,
accounts/ja/acctchrt_fixedassets.gnucash-xea,
accounts/ja/acctchrt_homeloan.gnucash-xea,
accounts/ja/acctchrt_homeown.gnucash-xea,
accounts/ja/acctchrt_otherloan.gnucash-xea,
accounts/ja/acctchrt_renter.gnucash-xea,
accounts/ja/acctchrt_retiremt.gnucash-xea,
accounts/ja/acctchrt_spouseinc.gnucash-xea,
accounts/ja/acctchrt_spouseretire.gnucash-xea, configure.in:
Hiroto Kagotani: Newly translated Japanese account files. He
said: Instead, accounts/ja_JP.EUC and its content can be safely
removed.
2007-09-10 19:19 cstim
* [r16519] src/tax/us/txf-de_DE.scm: Bug#473809: Rolf Leggewie's
work on German tax categories.
2007-09-10 13:45 rolf
* [r16518] accounts/de_DE/acctchrt_skr04.gnucash-xea: SK04: fix
indentation
* [r16517] accounts/de_DE/acctchrt_skr03.gnucash-xea: SKR03: fix
indentation
2007-09-10 08:14 rolf
* [r16516] accounts/de_DE/acctchrt_skr03.gnucash-xea: SKR03:
replace guid with new sed -i s/type=\"guid\"/type=\"new\"/
accounts/de_DE/acctchrt_skr03.gnucash-xea
2007-09-10 08:10 rolf
* [r16515] accounts/de_DE/acctchrt_skr03.gnucash-xea: SKR03:
validate SKR03, same as r16514 for SKR04
2007-09-09 19:27 rolf
* [r16514] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
validate the XML file with the help of jsled and nxml-mode in
emacs
2007-09-09 12:52 cstim
* [r16512] po/ja.po: Updated Japanese translation by Hiroto
Kagotani.
2007-09-09 12:29 cstim
* [r16511] po/cs.po: Updated Czech po file from the Translation
Project.
2007-09-07 19:52 cstim
* [r16510] po/de.po: Update German translation after latest string
change.
2007-09-07 19:42 cstim
* [r16509] src/business/business-reports/easy-invoice.scm,
src/business/business-reports/fancy-invoice.scm,
src/business/business-reports/invoice.scm: Make error message on
unselected invoice more verbose.
2007-09-05 03:44 jsled
* [r16507] src/report/standard-reports/standard-reports.scm:
whitespace
2007-09-05 03:43 jsled
* [r16506] src/report/utility-reports/view-column.scm: move onto
one line so greps are a bit more immediately useful.
2007-09-04 19:33 cstim
* [r16505] src/tax/us/txf-de_DE.scm: Bug#471473: Updated german
tax categories by Rolf Leggewie.
2007-09-04 14:31 rolf
* [r16504] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04:
replace all occurrences of "guid" with "new" Learned this from
bug#321405. jsled and I assume that this should be more stable.
2007-09-04 12:23 rolf
* [r16503] accounts/de_DE/acctchrt_skr04.gnucash-xea: SKR04: add
information to relate accounts to Umsatzsteuervoranmeldung report