Skip to content

Commit cb99bba

Browse files
committed
ChangeLog entries from svn for past 12 days.
Hmm... A commit message for my commit messages... what to write? Using this, format which is much closer to svn log, saved some time. This commit took about 10 min to prepare, and I estimate it would have taken another 20 to format like my last entries. The main effort is moving the messages off of column 0. I suspect that the non-uniform entry style might start to bother me enough to look at the xslt again. We'll see. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12338 57a11ea4-9604-0410-9ed3-97b8803252fd
1 parent d10178c commit cb99bba

File tree

2 files changed

+168
-0
lines changed

2 files changed

+168
-0
lines changed

ChangeLog

+159
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
r12337 | chris | 2006-01-12 20:25:12 -0500 (Thu, 12 Jan 2006) | 5 lines
2+
3+
M /trunk/src/app-utils/Makefile.am
4+
M /trunk/src/app-utils/gnc-gettext-util.c
5+
M /trunk/src/app-utils/gnc-gettext-util.h
6+
M /trunk/src/app-utils/gw-app-utils-spec.scm
7+
D /trunk/src/app-utils/i18n.h.in
8+
M /trunk/src/bin/Makefile.am
9+
M /trunk/src/bin/gnucash-bin.c
10+
A /trunk/src/bin/i18n.h.in (from /trunk/src/app-utils/i18n.h.in:12334)
11+
M /trunk/src/scm/main.scm
12+
13+
Move gnu-module init and gettext init from scm to C.
14+
Move i18n.h.in from src/app-utils to src/bin, where it is used.
15+
Remove unneeded gettext init code in src/app-utils
16+
17+
r12330 | chris | 2006-01-12 16:26:01 -0500 (Thu, 12 Jan 2006) | 6 lines
18+
19+
M /trunk/src/backend/file/gnc-account-xml-v2.c
20+
M /trunk/src/backend/file/test/test-real-data.sh
21+
M /trunk/src/backend/file/test/test-xml-account.c
22+
23+
Don't let deprecated tags overwrite data from newer tags.
24+
Avoid testing for match of deprecated tags.
25+
Warn about deprecated tags not being preserved.
26+
Plug another leak in test case.
27+
Make successful test-xml-account less verbose.
28+
29+
r12329 | chris | 2006-01-12 16:22:03 -0500 (Thu, 12 Jan 2006) | 3 lines
30+
31+
M /trunk/src/backend/file/test/test-file-stuff.c
32+
33+
Avoid creating new xml parser for each test file.
34+
This plugs a mem leak in the test case.
35+
136
2006-01-12 David Hampton <[email protected]>
237

338
* src/gnome-utils/gnc-tree-view-account.c: Remove the unnecessary
@@ -50,6 +85,65 @@
5085
(Bokmal) language; by Tor Harald Thorland <[email protected]>; not
5186
fully functional so far.
5287

88+
r12322 | chris | 2006-01-10 23:39:12 -0500 (Tue, 10 Jan 2006) | 2 lines
89+
90+
M /trunk/src/engine/Account.c
91+
92+
Factor-out cut-n-paste job from xaccCloneAccount{Simple}.
93+
94+
r12321 | chris | 2006-01-10 23:30:20 -0500 (Tue, 10 Jan 2006) | 3 lines
95+
96+
M /trunk/src/engine/Account.c
97+
98+
Convert account name, code and description to use string cache.
99+
Plus minor comments and tweaks.
100+
101+
r12319 | chris | 2006-01-10 23:27:02 -0500 (Tue, 10 Jan 2006) | 2 lines
102+
103+
M /trunk/lib/libqof/qof/gnc-engine-util.h
104+
105+
Add CACHE_REPLACE(dst, src) macro for common case in string setters.
106+
107+
r12316 | chris | 2006-01-10 21:58:59 -0500 (Tue, 10 Jan 2006) | 2 lines
108+
109+
M /trunk/src/engine/gnc-commodity.c
110+
111+
Convert gnc-commodity to use vanilla string cache macros.
112+
113+
r12315 | chris | 2006-01-10 21:56:02 -0500 (Tue, 10 Jan 2006) | 3 lines
114+
115+
M /trunk/lib/libqof/qof/gnc-engine-util.c
116+
M /trunk/lib/libqof/qof/gnc-engine-util.h
117+
118+
Add const to gnc_string_cache_insert argument.
119+
Handle NULL values gracefully.
120+
121+
r12313 | chris | 2006-01-10 21:19:42 -0500 (Tue, 10 Jan 2006) | 2 lines
122+
123+
M /trunk/src/engine/test/test-date.c
124+
125+
Add commented-out test case demonstrating lack of year 2038 support.
126+
127+
r12311 | chris | 2006-01-10 16:42:55 -0500 (Tue, 10 Jan 2006) | 2 lines
128+
129+
M /trunk/src/engine/gnc-commodity.c
130+
131+
Plug memory leak of gnc_commodity_namespace->QofInstance; found w/ valgrind.
132+
133+
r12308 | chris | 2006-01-09 16:06:45 -0500 (Mon, 09 Jan 2006) | 2 lines
134+
135+
M /trunk/src/engine/test/test-date.c
136+
137+
Avoid testing dates near or after 2038, because the qof parsing
138+
functions fail.
139+
140+
r12306 | chris | 2006-01-08 22:33:46 -0500 (Sun, 08 Jan 2006) | 2 lines
141+
142+
M /trunk/src/app-utils/gnc-ui-util.c
143+
M /trunk/src/app-utils/test/test-print-parse-amount.c
144+
145+
Don't test numeric parsing for numbers that overflow, we'd fail.
146+
53147
2006-01-08 David Hampton <[email protected]>
54148

55149
* src/gnome-utils/dialog-options.c: Add a button to clear the name
@@ -148,6 +242,42 @@
148242
* src/import-export/hbci/gnc-hbci-transfer.c: Make the HBCI
149243
Transfer dialog work again using a GtkListStore.
150244

245+
r12278 | chris | 2006-01-06 17:28:38 -0500 (Fri, 06 Jan 2006) | 2 lines
246+
247+
M /trunk/src/app-utils/gnc-ui-util.c
248+
M /trunk/src/app-utils/gnc-ui-util.h
249+
250+
Fix floating point exception by checking for overflow.
251+
252+
r12273 | chris | 2006-01-06 16:31:22 -0500 (Fri, 06 Jan 2006) | 10 lines
253+
254+
M /trunk/Makefile.am
255+
256+
Fixes for `make check' in toplevel Makefile.am.
257+
258+
Conditionally add symlink from ./gsf to ./lib/libgsf-1.12.3/gsf.
259+
260+
Also, silence warning:
261+
/usr/share/automake-1.9/am/tags.am: ctags was already defined in
262+
condition !GNC_CTAGS_FILE, which is included in condition TRUE ...
263+
Makefile.am:138: ... `ctags' previously defined here
264+
265+
and avoid possible `make dist' failure by added po/POTFILES.in to
266+
dist-hook.
267+
268+
r12271 | chris | 2006-01-05 21:49:27 -0500 (Thu, 05 Jan 2006) | 8 lines
269+
270+
M /trunk/Makefile.am
271+
D /trunk/po/POTFILES.in
272+
273+
Yet more build tweaks for .pot file generation.
274+
275+
Remove po/POTFILES.in (again) from svn. Since po/POTFILES.in is added
276+
to BUILT_SOURCES, it's auto-generated now whenever the `make all',
277+
`make check', or `make install' targets are processed, (but not
278+
recreated every time). And `make pot' forces the recreation of
279+
po/POTFILES.in. Hopefully, this will works even on OSX.
280+
151281
2006-01-04 David Hampton <[email protected]>
152282

153283
* src/gnome-utils/ui/gnc-main-window-ui.xml:
@@ -167,6 +297,17 @@
167297
* src/backend/file/gnc-transaction-xml-v2.c:
168298
* lib/libqof/qof/gnc-numeric.c: A couple of performance tweaks.
169299

300+
r12252 | chris | 2006-01-03 18:49:39 -0500 (Tue, 03 Jan 2006) | 5 lines
301+
302+
M /trunk/src/bin/Makefile.am
303+
A /trunk/src/bin/gnucash-bin.c
304+
A /trunk/src/bin/gnucash.in
305+
306+
Invert the program entry point.
307+
308+
'gnucash' is now a shell script that calls the executable
309+
'gnucash-bin' which uses libguile to load guile modules.
310+
170311
2006-01-03 Joshua Sled <[email protected]>
171312

172313
* gnc-sxed-window-ui.xml: Remove unreferenced `TransactionAction`.
@@ -227,4 +368,22 @@
227368
* src/engine/gnc-commodity.[ch]: Initialize the qof instances in
228369
commodity namespaces.
229370

371+
r12232 | chris | 2006-01-01 19:37:02 -0500 (Sun, 01 Jan 2006) | 2 lines
372+
373+
D /trunk/src/gnome/gncmod-budget.c
374+
375+
Delete unused gncmod-budget.c.
376+
377+
r12231 | chris | 2006-01-01 17:26:15 -0500 (Sun, 01 Jan 2006) | 9 lines
230378

379+
M /trunk/src/engine/Transaction.c
380+
M /trunk/src/engine/Transaction.h
381+
382+
General clean-up in Transaction.[ch].
383+
384+
* Regularization of 'trans' as variable name.
385+
* Whitespace and linewraps
386+
* lots of control-flow simplification
387+
* factor one chunk out into get_any_account()
388+
* Comment some things that are bogus or need improvement
389+

ChangeLog.2005

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
r12228 | chris | 2005-12-31 17:28:42 -0500 (Sat, 31 Dec 2005) | 2 lines
2+
3+
M /trunk/src/engine/Group.c
4+
M /trunk/src/engine/Group.h
5+
M /trunk/src/engine/GroupP.h
6+
7+
Constify the AccountGroup variables where possible in Group.[ch]
8+
9+
110
2005-12-31 Chris Shoemaker <[email protected]>
211

312
* [r12224] trunk/src/gnome/gnc-plugin-page-budget.c: Turn on gconf

0 commit comments

Comments
 (0)