Bienvenue Sur GnuCash.org
Download GnuCash 2.2.9
Linux Source | Via distribution
Microsoft Windows XP/Vista/7
Mac OS X Intel | Power PC | Readme- More downloads (Source, Development,...)
GnuCash est un gestionnaire de finances personnelles pour GNU/Linux, *BSD, Solaris et Mac OS X et MS Windows qui vous est offert gratuitement sous la license GNU.
Conçu pour être simple d'utilisation, puissant et flexible, GnuCash vous permet de suivre l'évolution de vos comptes bancaires, portefeuilles d'actions, revenus et dépenses. Aussi rapide et intuitif à utiliser qu'un registre de compte papier, il est basé sur des principes de comptabilité professionnelle pour assurer l'équilibre des comptes et des rapports fiables.
Fonctionnalités
- Importation des protocoles QIF/OFX/HBCI
- Rapports et graphiques
- Opérations planifiées
- Calcul financier
- Comptabilité en partie double
- Actions/Obligations/Fonds mutuel
- Comptabilité pour petites entreprises
- Clients, Fournisseurs, Tâches,
Factures, Avis de paiement et de réception,
Actualités
GnuCash 2.3.11 (Unstable) released
The GnuCash development team proudly announces GnuCash 2.3.11, the twelfth of several unstable 2.3.x releases of the GnuCash Free Accounting Software which will eventually lead to the stable version 2.4.0. With this new release series, GnuCash can use an SQL database using SQLite3, MySQL or PostgreSQL. It runs on GNU/Linux, *BSD, Solaris, Microsoft Windows and Mac OSX.
WARNING: This is an *UNSTABLE* version of Gnucash.
This release is intended for developers and testers who want to help tracking down all those bugs that are still in there.
Make sure you make backups of any files used in testing versions of GnuCash in the 2.3.x series. Although the developers go to great lengths to ensure that no data will be lost we cannot guarantee that your data will not be affected if for some reason GnuCash crashes in testing these releases.
NOTE: The latest stable version is 2.2.9.
PLEASE TEST TEST AND TEST SOME MORE any and all features important to you. Then post any bugs you find to bugzilla
Major changes in the 2.3.x release include;
- In addition to the XML backend, Gnucash can now use a SQLite3, MySQL or PostgreSQL database to store the data. This is a new implementation using libdbi. It supports all features including the business features. In order to build with this, add --enable-dbi to the configure command. In addition to the libdbi-dev package for your distribution, you will also need the appropriate DBD (libdbi driver) package for sqlite3, mysql or postgresql.
- As a replacement for the current GtkHTML HTML engine used to display reports and graphs, Gnucash can use WebKit. WebKit is the engine used by Google Chrome on Windows and Safari on Apple. In order to build with this, add --enable-webkit to the configure command. You will need an appropriate webkit-dev package. On win32, you will need to download the webkit-1.1.5-win32.zip file from the source repository and put it into the downloads directory of your gnucash build area.
- Updated to AqBanking 3 on Win32.
Changes between 2.3.10 and 2.3.11 include:
- Bugs fixed
- Partial fix for #611014 - CSV import crashes Bug #611014 mentions a problem where after setting the columns, clicking OK and selecting a target account, the Date column is lost. This is because of a difference in behaviour on windows and linux. The code attaches to the "edited" signal of the renderer. On linux, this signal is emitted when a new combo box item is selected. On windows, the combo box needs to be selected and focus lost before the signal is emitted. This is changed to the "changed" signal of the renderer which acts as expected on both platforms.
- Bug #140400 - Crash when deleting an account that is still in use by the business features Add a dialog which contains a list of objects referring to the account and an explanation that these need to be deleted or have the account reference modified. Note: I'm no UI designer. This is functional, but if anybody wants to pretty it up, go ahead.
- Bug #536108 - After cancelling "save as", user is not prompted 2nd time
- Bug #507351 Terms not defined prior to use This commit changes the text in the accounts druid to explain what a placeholder account is, together with some additional improvements in the wording of that page. Since this increases the amount of text, the width of the label has been modified as well.
- Fix Bug 590570 - When deleting more than one report in sequence the program crashes Delete the custom report backup file before renaming the current custom report file.
- Fix Bug 611346 - Crash in Saved Reports dialog if you select Delete button with no report selected Test for no report selected before trying to use the selected report guid.
- Bug #364358 - Import dialog unreadable with dark colored gtk theme (with solution)
- Bug #525821 new or edited account names should be checked for reserved chars like ":"
- Bug #610675 Register Tabs Do Not Display Since Nightly Build r18685 Apply Bob's patch after fixing the whitespace. This patch may cause issues on Windows (a previous version of the patch did). If the next Windows nightly build exhibits the missing register tab names again, it will have to be reverted again and improved upon.
- Bug #611645 gnc-svnversion returns "too long" a string for git users, patch by Jeff Kletsky
- Bug#325436 creating income account for invoice doesn't restrict account type
- Fix Bug 611810 - GC crashes when I click on File -> Properties SCM files still refered to gnc-book-get-slots which had been removed. gnc-book-get-slots was replaced everywhere by qof-book-get-slots.
- Fix bug 611885 - Crash when opening postgresql file Previous work setting Timespec values via gobject properties missed the case where the timespec loaded from the database was NULL.
- Bug #611140: Fix crash on Open Subaccounts (hopefully).
- Bug #610321 - Compile errors with gtk-2.10.4: GTK_BUTTONBOX_CENTER undeclared This commit applies a reworked version of the patch to remove the use of GHashTableIter by Cristian Klein. Cristian's patch didn't apply cleanly to the current trunk. I have made the necessary changes to make it apply (and hopefully do what Cristian intended).
- Bug #611470 Add Japanese concepts guide into GnuCash installer, patch by Yasuaki Taniguchi
- Bug 605802: Can't input Japanese characters at an account register window on windows with SCIM, IIIMF and XIM Latest patch by Yasuaki Taniguchi to fix two problems 1) Can't use account separator char when entering account name in a split, and 2) Can't use <SHIFT>+ and <SHIFT>- to go forward/backward a week.
- Fix bug 591177: Printer font is too small to read with webkit as html renderer. From comment 23: "The PDF in comment 2 is about 8 times smaller than it should be. One possible cause of this bug is if gtk_print_operation_set_unit (op, GTK_UNIT_POINTS) is not called. gtkprint defaults to GTK_UNIT_PIXEL - a useless unit to be using with printers. On Linux GTK_UNIT_PIXEL units are 1 unit = 1/72 inch (the same as GTK_UNIT_POINTS as well as PostScript and PDF units). On Windows GTK_UNIT_PIXEL units are the GDI device units which for printers is the dpi resolution. So for a 600dpi printer 1 unit is 1/600". If the application was developed on Linux and assumes the default gtkprint units are always 1/72" inch the output on Windows using a 600dpi printer will be 72/600 = 0.12 of the size (or approximately 1/8 of the size)." Solution was to use webkit_web_frame_print_full() which allows us to provide our own GtkPrintOperation object with units set to GTK_UNIT_POINTS. Tested on both Linux and Windows.
- Bug #610675: Revert the gnc-main-window parts of r18637 because it makes the tab names disappear under Windows. This disables the enhancement of bug#608329 again, but the disappearing of the tab names is a rather major bug. Note that we either need to fix the enhancement again, or revert the rest of r18637 as well so that the account properties don't show the color chooser without any effects.
- Bug #605802: Fix input of Japanese characters in register with SCIM, IIIMF and XIM Patch by Yasuaki Taniguchi. Revised and extended version of r18638. The main functions are as follows: (1) synchronization of preedit string between the register window and sheet->entry, (2) application to pango attributes to preedit string in the register window, (3) include scroll offset patch (id=153514), (4) include preedit string rollback patch (id=153518), (5) fix formula and account cells input problem which Christian pointed out, (6) surpress quick-fill when preedit string exists, (7) fix Windows IME problem. (8) Fix quick-fill problem.
- Redo of the dot-gnucash fix (so that GNC_DOT_DIR actually works) fixing bug 610707, adding Doxygen comments for all functions in gnc-filepath-utils, and adding testing for xaccResolveURI and more tests for xaccResolveFilePath.
- Revert r18713 (reopen 605802 "Input of Japanese characters". This commit had 2 problems: 1) when entering an account name, the account separator would no longer accept at the current level of the account tree and move to the next level 2) <SHIFT>+ and <SHIFT>- in a date field would not change the field by 1 week.
- Bug #610348: Add compiling our own binary of libbonoboui because the ftp.gnome.org binary still depends on the obsolete libxml2.dll. However, we still download the erroneous binary and unpack it into $GNOME_DIR because libgnomeui depends on libbonoboui which in turn depends on libgnome. Hence, libbonoboui cannot be compiled before libgnome-dev is unpacked, but libgnomeui won't report to be installed correctly before libbonoboui is available as well. Theoretically, we would have to split the inst_gnome step so that it first unpacks libgnome et al., then we run the inst_libbonoboui step, then we run the second part of inst_gnome which would be something like inst_gnomeui. I'm lazy, so I silently overwrite the libbonoboui DLL with our hand-compiled version and that's it.
- Bug #608032 - MySQL timeout and no attempt reconnect, second version This version builds on Phil's implementation of the dbi error callback functions to test for a timeout and to do the reconnect. The same error handling is equally implemented for postgres and sqlite. Unlike MySQL these two database types don't actually generate timeouts, but the functionality can be used later on for other error types as well.
- Bug #610051 - Crash when using GktHtml whenever a report is opened
- Bug #610348 missing dependencies in windows build Update gnome-vfs to 2.24.1 Note that this means Windows 2000 is no longer supported.
- Partial fix for bug #610321 Compile errors with gtk-2.10.4: GTK_BUTTONBOX_CENTER undeclared GTK_BUTTONBOX_CENTER is replaced with GTK_BUTTONBOX_START
- Fix bug #564380 additionally for easy invoice and fancy invoice. Patch by Mike Evans.
- Bug #610047 - Dutch accounts template doesn't work Add missing closing brackets
- Bug #609044: Improve UI strings for tax report options Patch by Frank H. Ellenberger: As we currently have a nice US income and a partial german VAT tax report, I feel uncomfortable with the change of r18413, which renamed Edit->Tax options to Income Tax options. So here is another approach, to clarify the tax report and business tax menu points.
- Bug #609043: Improve (mostly german) translation of txf Patch by Frank H. Ellenberger: This patch is a first extract of so an approach, which I have here, which will probably lead to a german income tax declaration ESt-A1. But this extract is more general and based on r18413 changes. Changes: 1. Header Comments: adding Contributors 2. Most strings in de_DE translated to german.
- Bug #608032: Handle MySQL connection timeouts with reconnect Patch by Tom van Braeckel: For the full discussion, see the mailing list: https://lists.gnucash.org/pipermail/gnucash-devel/2010-February/027323.html Rationale: When we try to open a database transaction, and the database reports that the "server has gone away", we try to reconnect before failing hard.
- Bug #609005: Add recipient name on invoices Patch by Mike E: Having set up a client/customer including the name of a recipient when I print an invoice the recipients name ("Account Dept" say) is not printed in the invoice. I think this is a bug rather than a feature. I have attached a patch to fix. It still prints the company name above the recipient name however. I could submit an additional patch to provide an invoice option to toggle printing of the company name if users/developers feel they want this option, as I do.
- Bug #609603: Windows packing/win32/install.sh PATH fix Patch by Yasuaki Taniguchi: When I run /c/soft/gnucash/inst/bin/gnucash or gnucash.cmd after I finish building win32 binary, DLL missing dialog boxes pop up. Missing DLLs are - libgcrypto.dll, - libPQ.dll, - mysql.dll, and - ssleay32.dll. This patch add search path to them to fix this problem.
- Bug #564380 Payment on bills doubles bill Patch by Mike Evans
- Updated translations or translation-related changes
- Updated Japanese translation, copied from the Translation Project.
- Updated Persian (Farsi) translation by Mehdi Alidoost.
- Add dutch translation to the Windows installer.
- Updated Slovak translation, copied from the Translation Project.
- Updated Dutch translation, copied from the Translation Project.
- Update German translation.
- Add implementation of Gregorian - Jalali converter code. Copied from http://www.farsiweb.ir/wiki/Iranian_calendar
- Other user-visible changes
- Change file loading message to "Loading user data..." Reading file is technically only correct for files not for databases.
- Display the SX variables in the "Since Last Run..." dialog in ASCII order rather than ordering by hashvalue (i.e. no order at all) as was done previously. Patch by Jesse Weinstein.
- Add bzr support to gnc-svnversion. Patch by Jesse Weinstein
- Fix crash on opening the tax report, introduced by r18673. Patch by Alex Aycinena.
- Revert r18881/18884/18885 (bug #610675 - Register Tabs Do Not Display Since Nightly Build r18685)
- Fix missing color in qif-import account copy, patch by Tom Van Braeckel
- Replace Income Tax Options with Tax Report Options. Patch by J. Alex Aycinena.
- Patch my patch in r18884. Spotted by Herbert Thoma.
- Regression fix: patch for colored tabs segfault in trunk, patch by Tom Van Braeckel
- Other code/build changes
- Remove test-load-module from tests
- Fix Makefile.am handling of gncla-dir.h so that it will be removed so that 'make distcheck' will pass
- Fix guint32 vs gint32 in gnc-uri-utils test.
- Update POTFILES.in based on new source files
- Complete unit tests for gnc-uri-utils api and fix bug found by running the tests.
- More doxygen.log-prompted typo fixes, patch by Jesse Weinstein
- Fix typo in previous commit
- Add first test for the gnc-uri-utils api. This test verifies gnc_uri_get_components.
- Implement the object reference infrastructure routines to allow a list of business objects referring to a specific other object (e.g. an account) to be determined. This will help fix bug 140400 because the account delete code can now determine a list of business (or other) objects which have references to that account, and prevent the account from being deleted while references still exist.
- Add some new gobject-related infrastructure so that when deleting an object, it can be determined if there are other objects with references to that object (bug 140400). Some routines are normal routines, and some routines use the gobject structure to allow different implementations by different object types. Per-instance routine: gboolean qof_instance_refers_to_object(QofInstance* A, QofInstance* B) - returns TRUE/FALSE whether object A contains a reference to object B. Normal routine: GList* qof_instance_get_referring_object_list_from_collection(QofCollection* c, QofInstance* B) - Calls qof_instance_refers_to_object() for each object in the collection, and returns a list of the objects which contain a reference to B. Per-instance routine: GList* qof_instance_get_typed_referring_object_list(QofInstance* A, QofInstance* B) - returns a list of all objects of the same type as A which contain a reference to B. Being per-instance allows an object to use knowledge to avoid scanning cases where there are no references (e.g. billterms do not contain references to splits), or a scan is not needed (references from splits to an account can be determined using xaccAccountGetSplitList()). This routine can do a scan by calling qof_instnace_get_referring_object_list_from_collection(). Normal routine: qof_instance_get_referring_object_list(QofInstance* A) - For all collections in the book, gets an instance and calls its qof_instance_get_typed_referring_object_list() routine, concatenating all of the returned lists. This is the routine that external code can call to get a list of all objects with references to an object A. The list must be freed by the caller but the contents must not. Per-instance routine: gchar* qof_instance_get_display_name(QofInstance* A) - returns a string which can identify object A to the user. This could be used to display a list of the objects returned by qof_instance_get_referring_object_list() ("Invoice 0004 for customer C") so that the user can modify those objects to remove the references. Note that this is going to require internationalization, which has not been implemented yet. If not overridden by the object class, the default string is "Object <type> <address>" e.g. "Object gncCustomer 0x12345678".
- Add event registration and handling from the qof_event_handlers. This way, the split view is updated correctly even on undo/redo.
- Revert r18869, "Move gnc-ui-util.[hc] and gnc-euro.[hc] from app-utils to engine" Those files indeed belong better into app-utils; the app-utils defines several not-yet-GUI parts of gnucash, like many conversions from and to strings (more than those in these two files), so these files are well suited in here.
- MSVC compatiblity: Fix include files in MSVC. Replace QSTRCMP by g_strcmp0 on MSVC.
- Improve non-gnome UI compatiblity: app-utils can compile without gtk as well.
- Add src/calculation and src/app-utils to cmake build system. app-utils is needed for the conversion from and to string for gnc_numeric, date, and other values.
- Fix failing core-utils tests I simply removed the obsolete test cases. More work is still needed to add new valid tests.
- Remove some unused variables.
- Win32/MSVC compatiblity - Replace trunc() by floor() - Provide a round() workaround implementation for MSVC - Use g_strcasecmp instead of the libc one - Add include for libc replacements
- Some more const-correctness in engine functions.
- Update POTFILES.in for the moved dialog-userpass.c and the newely added gnc-jalali.c
- Move gnc-ui-util.[hc] and gnc-euro.[hc] from app-utils to engine because they don't depend on gtk but are important additions for the engine types. In particular, the formatting of a gnc_numeric is defined there.
- Fix circular dependency between gnome and gnome-utils introduced in r18842
- MSVC compatiblity: snprintf is required to have a prefixing underscore. Also, more symbols of libguile/gc.h need explicit declspec on MSVC.
- Add variant of gnc_engine_init which is suitable for statically the linked-in library.
- Only use long long format specifiers if available - avoids error message when compiler thinks they're not available.
- Fix parent/child relationships in billterms in case the parent hasn't been loaded yet. Remove child column from billterm table because it duplicates info in the parent column and just complicates loading objects.
- Fix parent/child links for tax tables. If a tax table's parent table has not been loaded yet, remember the relationship, and after all tables have been loaded, fix up the rest of the parent/child links.
- Handle NULL string pointer as a NULL guid
- Add a mechanism so that the business sql backend module can provide the main sql backend with the order in which objects should be loaded. This will allow billterms and taxtables to be loaded before objects which contain references to those objects.
- MSVC compatiblity: Replace QOF_BOOK_LOOKUP_ENTITY macro by a RETURN_ENTITY macro and add inline functions for lookup. MSVC doesn't accept the syntax with an inlined block, x = ({ foo; bar; value;}). Hence, this is being replaced by actual function definitions, and the body of those functions is defined by the new macro.
- Delete unused variables.
- Use a normalized uri format internally to refer to data stores. Data stores for GC can be a file (xml or sqlite3) or a database one some server (mysql or postgres). Wherever it makes sense internally, data stores will be referred to via a normalized uri: protocol://user:password@host:port/path Depending on the context and story type some of these parts are optional or unused. To achieve this, a new utility interface has been setup: gnc_uri_<xxx>_<yyy> that can be used to manipulate the uris or convert from non-normalized formats to normalized and back. For example, when the user selects a file in the Open or Save As dialog, gnc_uri_get_normalized_uri will convert the file into a normalized uri. Or when the actual filename is needed this can be extracted with gnc_uri_get_path. You can also test if a uri defines a file or something else with gnc_uri_is_file_uri. For the complete documentation, see src/core-utils/gnc-uri-uitls.h This commit installs gnc-uri-utils and modifies the source where it makes sense to use its convenience functions. This concerns all functions that had to deal with file access in some way or another, the history module and the functions that generate the history menu list and the window titles. Note that gnc-uri-utils replaces xaccResolveFilePath and xaccResolveUrl in all cases. xaccResolveUrl has been removed, because gnc-uri-utils fully replaces its functionality. xaccResolveFilePath is used internally in gnc-uri-utils to ensure an absolute path is always returned (in case of a file uri, not for db uris). But it has been renamed to gnc_resolve_file_path to be more consistent with the other functions. Lastly, this commit also adds a first implementation to work with a keyring to store and retrieve passwords, althoug
- Make business backend initialization functions accessible when statically linking
- MSVC compatibility: Disable "C99 designated initializers" by a compiler-dependent macro Same as r18755.
- Make the backend initialization functions accessible when statically linking
- Change the definition of QOF_STDOUT The old definition file: conflicts with normal uris that can start with file: as well. I have chosen > instead, which is never a valid filename and on unixlike systems associated with standard out operations.
- Use proper qof CFLAGS/LDFLAGS since core-utils now uses qof
- The webkit used on win32 has webkit_web_frame_print_full() defined in include files, so we don't need a potentially conflicting extern declaration.
- If gmtime_r is defined as a macro, undef it
- Add svn:ignore to src/core-utils/test
- Remove invalid target (got copied from src/engine/test)
- Build test-core before core-utils
- Add the core-utils tests in the automake system
- Move filepath related tests to core-utils/test
- Undefine localtime_r as a macro (new mingw pthreads package defines it)
- Add braces to make if-if-then-else structure clear and avoid GCC 4.4.0 error message
- Remove gncmod-test from test-core It's not used and prevents test-core from being included in core-utils tests
- Add missing NULL sentinel at end of g_strconcat() function call
- Removed erroneously re-created src/engine/gnc-filepath-utils.c
- Move binreloc library include
- Note the moved files in POTFILES.in.
- Remove C executable from cmake as it is no longer necessary.
- Add missing link library after r18811.
- Adapt cmake to the file move in r18811.
- Add src/engine/test/test-resolve-url
- Win32: Add download of cmake, disabled by default.
- MSVC compatibility: strftime() doesn't know "%T" here. Also, g_fopen doesn't work, but fopen does.
- Move gnc-filepath-utils and dependencies from engine to core-utils
- Typo fixes, as found by doxygen.log, patch by Jesse Weinstein
- Tweak to gnc-svnversion's bzr section, patch by Jesse Weinstein
- Use "template-account" property to get/set template account.
- Add "template-account" to schedxaction as a gobject property.
- Simplify handling of sx template_acct column.
- Rename GNCBook into QofBook everywhere and remove separate header gnc-book.h. The former was already #define'd on the latter, so its removal gets rid of one level of indirection which makes function lookup easier. Also, the macro (!) qof_book_get_slots was turned into a normal function again because that's what functions are for (and otherwise the additional declaration in engine.i would break).
- Decrease compiler warnings by removing unused variables.
- Reduce compiler warnings by replacing strerror() with g_strerror() and similar glib replacements.
- Win32: Add more header includes where necessary to avoid using undeclared functions.
- Comment out unimplemented function. Improve const-correctness.
- Include gtk/gtk.h instead of gtk/gtkclist.h as recommended by Gtk
- Fix make dist r18765 introduced test target test-resolve-url, but no source file test-resolve-url.c Removed the target.
- Re-indentation of source code, next batch: src/gnome-utils/* This also strips trailing whitespaces from lines where they existed. This re-indentation was done using astyle-1.24 using the following options: astyle --indent=spaces=4 --brackets=break --pad-oper --pad-header --suffix=none
- Re-indentation of source code, next batch: src/register/* This also strips trailing whitespaces from lines where they existed. This re-indentation was done using astyle-1.24 using the following options: astyle --indent=spaces=4 --brackets=break --pad-oper --pad-header --suffix=none
- Re-indentation of source code, next batch: src/business/* This also strips trailing whitespaces from lines where they existed. This re-indentation was done using astyle-1.24 using the following options: astyle --indent=spaces=4 --brackets=break --pad-oper --pad-header --suffix=none
- Re-indentation of source code, next batch: src/engine/* This also strips trailing whitespaces from lines where they existed. This re-indentation was done using astyle-1.24 using the following options: astyle --indent=spaces=4 --brackets=break --pad-oper --pad-header --suffix=none
- Re-indentation of source code, next batch. This also strips trailing whitespaces from lines where they existed. This re-indentation was done using astyle-1.24 using the following options: astyle --indent=spaces=4 --brackets=break --pad-oper --pad-header --suffix=none
- Replace and-let* in scheme script so that srfi-2 isn't needed.
- Replace one more g_list_append by g_list_prepend.
- MSVC compatibility: Somehow fdopen() doesn't work during the trace file initialization. Use fopen() instead.
- Win32 build: libguile needs minor tweaking for MSVC compatibility.
- MSVC compatibility: Fix r18748, r18761 by replacing strncasecmp() with strnicmp().
- MSVC C++ compatibility: Rename the internal name of union _GUID because _GUID is a builtin keyword here. This does not concern the typedef name, only the internal union name, so it doesn't harm us.
- C++ compatibility: namespace is a keyword, so don't use it as variable name.
- C++ compatibility: export is a keyword, so don't use it as a member name.
- Add support for passing a Timespec as a boxed GValue
- Fix test makefiles. Many tests now need to include other libraries because files have changed directories.
- Add more gobject property definitions to GNCPrice, Transaction, SchedXaction and Split.
- Win32: Create the MSVC import library for libguile during install.sh.
- Remove static current_session variable of libqof - we keep one in gnc-session.c already.
- Doxygen improvements, patch by Jesse Weinstein
- More changes where SQL backend uses gobject properties to load/save objects.
- More conversion to read/write objects from sql backend using gobject parameters
- Start to add properties to business objects. Currently only 1 property per object, but this infrastructure will allow more generic importing of objects.
- Take advantage of the initial property definition for Transaction, Split, GNCPrice and SchedXaction by replacing custom access routines with gobject properties.
- Add a few gobject properties to some engine object types. This adds more of the gobject infrastructure to Transaction, Split, SchedXaction and GNCPrice. Gobject properties provides a standardized interface to the engine objects which should allow standard and simplified read/write mechanisms. For the sql backend, for example, db columns can be mapped to properties. In a generalized csv importer, csv columns can be mapped to properties.
- Partly revert r18748, "Win32 compatibility": lib/libc directory doesn't have glib available.
- Add a "make indent" target, but watch out with using its result. The "astyle" indent tool unfortunately behaves significantly different in its different versions (1.22, 1.23, 1.24) even with identical options. That is, the basic indentation is the same, but in a large project such as ours, there are just too many special cases which astyle doesn't get identical due to its bugfixes and new features. Hence, please use the result of this target with great care, and if in doubt, just use it for your own amusement but don't commit the resulting changes. Thanks!
- Fix up some doxygen comments
- Don't include gnc-lot-p.h where not needed
- Win32: Fix libbonoboui compiling.
- MSVC compatibility: Microsoft doesn't have C99 "designated initializers". Those were introduced in r17724, bug#539957, but apparently this C99 is not supported by MSVC and won't be for some time to come. Hence, for MSVC we need the workaround to define a macro that will shadow the member names. However, the initialization itself works fine and non-MSVC code is unchanged, so I think we can live with that.
- MSVC compatiblity: Struct initialization doesn't work as expected. Somehow, the struct initialization containing a gnc_numeric doesn't work. As an exception, we hand-initialize that member afterwards.
- MSVC compatiblity: open() flags and S_ISDIR doesn't exist on MSVC.
- MSVC compatiblity: Use a char* pointer for the memcpy() input argument. This is required by MSVC because we do some pointer arithmetic in the memcpy() argument, but in order to do this, MSVC wants to know the pointed-to type of the pointer because pointer arithmetic increases the pointer not by a number a bytes but a number of sizeof(type). MSVC thinks for void* it doesn't count bytes. We achieve the desired effect by using a char* pointer so that bytes are counted.
- MSVC compatiblity: Add defines for functions/types which are available under different names in MSVC.
- MSVC compatiblity: Array initialization in MSVC requires a constant, not a variable. That is, gcc accepts a constant variable in many cases now, but MSVC doesn't accept it. So it must be turned into an old preprocessor define.
- MSVC compatibility: Remove forward declaration of static array by reordering the function that uses it.
- Win32 compatibility: Use glib wrappers of non-usual POSIX functions.
- More header include compatibility: Watch out for HAVE_UNISTD_H.
- Re-indentation of source code, next batch. This also strips trailing whitespaces from lines where they existed. This re-indentation was done using astyle-1.24 using the following options: astyle --indent=spaces=4 --brackets=break --pad-oper --pad-header --suffix=none
- Convert GNCLot to use more gobject features. Removes all direct access to lot object fields, which are now accessed through functions or property names (for backend sql load).
- Modify POTFILES.in to handle source files moved to a new directory
- Also build backend/xml in cmake.
- Reverted 18699
- Clarify required steps to setup windows build environment. The mingw website has changed quite a lot since the README was written and some of the url's used in it were confusing. I have changed the url's to point to the actual packages on sourceforge (current at the time of this writing) and added some extra details where I had trouble understanding the actions to perform.
- Doxygen fixes - Have this file show up under module "Utility Functions" - Normalize the function descriptions (some were not in doxygen format) - Add a global file description - rename parameter 'file' to 'filename' for better consistency (note this required an internal parameter to be renamed from filename to new_filename)
- More minor MSVC code fixes. However, this code doesn't compile with MSVC9.0 for a few reasons: 1. libguile.h comes with its own scmconfig.h which contains HAVE_STDINT_H whereas MSVC doesn't have that. This is stupid guile which doesn't accept the fact that the user uses a different compiler than how they compiled guile. 2. Some initializations are not supported: Account.c:3312 etc. 3. The C99 "designated initializers" of e.g. Account.c:4661 ff. (r17724, bug#539957) are not supported by MSVC9.0 - this is the hardest problem of these all.
- Make CMake system more complete so that it builds on win32/mingw. Also, add a test executable to check that we got all the library dependencies.
- More CMake work: Build swig wrappers correctly. Build gnc-module.
- Cosmetic: Remove duplicate include of gnc-engine.h
- Remove trailing whitespace
- Minor doxygen change and lots or trailing whitespace removed
- Remove GNOME_PRINT_{CFLAGS,LIBS} from the Makefile templates
- Spelling errors and trailing whitespace removal
- Remove reference to gnome print in the comments GnuCash no longer uses gnome print. It has been replaced with gtk print.
- Remove two more popt references in support files.
- Remove popt requirement from configure GnuCash doesn't use it. At the same time, I removed a check that has been commented out since the beginning of the revision history (somewhere in 2007). This check tested for the presence of popt.h to then run some libtool changes. As I said this whole block has been commented out since the beginning of time, so I considered it to be obsolete, more even so now that the popt requirement has been removed.
- Remove popt references - popt has been replaced with the GOption infrastructure. So there's no need to include the popt.h file. - Also rewritten the comment that was elaborating on popt vs GOption - Finally removed the loglevel option (which was excluded from the compile anyway) that still referred to popt.
- Fix minor spelling errors
- When creating lists of database objects, use g_list_prepend() rather than g_list_append(). There may be cases where the list order is significant and thus needs to be reversed, but that is not true in these cases. This provides a large improvement in database loading performance. Analysis and basis patch supplied by Donald Allen.
- Update documentation references to Active Perl (5.8->5.10)
- Remove redundant entries in EXTRA_DIST
- More experimental cmake building. Except for the scheme wrappers this seems to work until at least the engine module. However, I didn't tackle the issue with the generated headers which contain some installation paths - but those we should get rid of anyway.
- Move two gtk-dependent files from src/core-utils to src/gnome-utils. core-utils depends on glib and additionally guile and gconf, but not (yet) gtk. Those two files which do are moved to the next module which already depends on gtk, which is gnome-utils.
- Add some experimental CMakeLists.txt which can compile the libqof part, on Linux, Windows/mingw and (no joke) Windows/MSVC. I'm interested in some tests with the cmake build system, but if it doesn't prove useful I will remove it again within a few weeks.
- Make libqof compatible for MSVC9.0 compiler (no joke). The main change is that the syntax for variadic macros is slightly different in MSVC compared to gcc. But they exist, so offering the log macros in the different syntax is sufficient.
- Make more header inclusions conditional on whether they exist.
- Update .gitignore, proposed by Jeff Kletsky
- Make sure file urls actually contain path information or are NULL
- Remove redundant GLIB check.
- Bump minimum required versions of gtk+, goffice and gtkhtml gtk+: 2.10 goffice: 0.5.1 gtkhtml: 3.14
- Add a starter script for gnucash under ddd (a gui frontend for gdb)
- Build fixes for EL5 after glib 2.12 requirement
- Ensure that GNC_DOT_PATH and other gnc_dotgnucash_dir() logic is used for all cases, remove hard-coded references to /usr/etc, /usr/share, /usr/local/etc, and /usr/local/share while providing for xaccResolveFilePath to actually search the data and sysconfdir directories used in the build. (gnc_build_data_path): New function, just a copy of gnc_build_book_path. Needed for rewrite of xaccResolveFilePath. (xaccResolveFilePath): Cleaned out the hard-coded paths and weird file path contruction functions and rewrote the function to use gnc_path_get_foo and gnc_build_data_path without all of the silly indirection. Removed superfluous URI checks (which are correctly perfomed by xaccResolveURL()). (MakeHomeDir, xaccPathGenerator, xaccDataPathGenerator) (xaccUserPathGenerator): Deleted; their functionality is replaced as noted above. (check_file_return_if_true): Renamed check_file_return_if_valid, a more descriptive name.
- Bump glib2 minimum requirement to 2.12. At the same time, remove all the conditional code and workarounds that were in the code to cater for glib < 2.12. Note: this commit will require a rerun of autogen.sh and configure.
- README referred to a non-existent file So per a suggestion on IRC, I took the reference out. Patch by Jesse Weinstein.
- Win32: Update libxslt version, but it needs its own copy of libxml2.dll. Apparently the gnome-provided libxml2 has the DLL filename libxml2-2.dll, but the binary from xmlsoft.org still has the filename libxml2.dll.
- Win32: And one more dependency upgrade (causes missing libxml2.dll complaints otherwise)
- More win32 dependency version updates.
- Update libpng package dependency for win32 to 1.4.0
- Small spelling fixes in the comments
- Re-indentation of source code, next batch. This also strips trailing whitespaces from lines where they existed. This re-indentation was done using astyle-1.24 using the following options: astyle --indent=spaces=4 --brackets=break --pad-oper --pad-header Discussed at http://lists.gnucash.org/pipermail/gnucash-devel/2009-August/026121.html
- Update gnome package versions.
- GDate values weren't being properly fetched from objects to be saved in a database column if they were fetched as a gobject property.
- Clean up account column in the lot table to specify that the guid is an account reference. Simplifies the code a bit, and makes future use of foreign keys easier.
- If building for WIN32, use webkit_web_frame_print_full() so that a GtkPrintOperation object with the correct units can be used to prevent font size problems (see bug 591177). On other platforms, use webkit_web_frame_print() because some distros seem not to have webkit_web_frame_print_full() (and also don't have the font size problem so on those distros, we don't need to create our own GtkPrintOperation object).
- Cutecash Some of the GnuCash developers have decided to rewrite the UI for the cross-platform Qt toolkit from TrollTech. The goal is a simpler UI which is more powerful and easier to develop. This project has gotten the name "Cutecash". It uses the same back-ends and engine as gnucash. Only the UI is different. The source for the Cutecash UI is in the same tree (and therefore, the tarballs) as GnuCash, but at this point, no MAC or Win32 builds are being produced.
- Cutecash: Add Commodity wrapper. Use gnc-exp-parser for numbers. - Allow amounts to be edited. - Let the date column be handled by the QDate delegate with a QDateEdit widget
- Cutecash: Enable entering of more cells in register. Some code cleanup. Add class documentation.
- Enable editing of the "Description" column in the split list view - WITH UNDO! The Qt Undo framework is almost like magic. We just have to create a command object instead of directly manipulating the value, and suddenly the undo/redo just works. This is fun!
- Cutecash: Add QUndoStack to implement all editing through the Command pattern and make it undoable.
- Cutecash: Enable closing and re-opening the different tab views. Also, change many main window slots to make use of the auto-connection feature because it makes the slot intention much easier to read. Also, note how we store the Tab position, title, isEnabled state in dynamically allocated properties in the Tab widget itself - this is a rather cool feature of QObject here (see reallyRemoveTab() and viewOrHideTab()).
- Cutecash: Add Recent-File menu.
- Cutecash: Enable tab moving and other UI features of Qt.
- Cutecash: Add Timespec conversion to QDateTime. Add display of transaction date in register tabs.
- Cutecash: Display account balance in tree and split amount in account register.
- Cutecash: Add gnc::Numeric wrapper for gnc_numeric.
- Implement a table widget with the list of the splits of one account, and open this if an account in the tree is double-clicked. Date and values/amounts can follow next, once those types are suitably wrapped into C++ as well.
- Cutecash: Add progress bar during loading the file.
- Implement the account list data model as a specialization of the account tree model. This is helpful in order to understand Qt's Model/View structure, so both (list and tree) are still available.
- Cutecash: Fix guile version number query. Patch by Herbert Thoma.
- Cutecash: Add a tree view of the accounts.
- Cutecash: Fix CMakeLists for change in guile lookup, r18846
- Cutecash: Remove QSharedPointer because manual delete is sufficient. Also, the QSharedPointer cannot be used for bookkeeping of a C pointer to any gnucash object because it refuses to work if it doesn't know the actual struct definition, which in gnucash is always private. The boost::shared_ptr would work without (by the custom deleter argument in the constructor), but QSharedPointer doesn't (the custom deleter is accepted only in addition to the known storage size, not alternatively), so it is pointless here.
- Cutecash: Add version check for guile and define HAVE_GUILE18 if appropriate.
- Adapt cutecash to r18842.
- Cutecash: Fix extern "C" usage: Must not enclose system includes, supposedly.
- Cutecash: Allow older glib versions as well.
- Cutecash: Add business-core including business-core/xml into the executable.
- Add copyright notices in cutecash source code files.
- Cutecash: Copy some more icons into the program. Add a clickable hyperlink.
- More C++/Qt4 frontend work.
- Add example main window in C++ and Qt that links against gnucash-engine. The example was based on Qt4's "application" example, but the main window layout is done through the .ui file already.
- Finish cmake build system for the C++ experiment. To build this: mkdir build-cpp cd build-cpp cmake .. make ./src/gnc/cutecash
- C++ experiment: Extend the AccountModel into a table with name and description. Use QString everywhere as well.
- C++ experiment: Add first simple model/view widget for the loaded account list.
- Some more C++ work. Opening an existing file works, even though nothing is visible so far. The implementation of a scoped_ptr wrapper around a C object uses the boost library, though, because writing our own implementation of a scoped_ptr with custom deletion function is too non-trivial and I rather re-use the boost::shared_ptr here instead of making our own mistakes.
- The GnuCash website
- Sourceforge: bzip2, gzip, all files.
- You can also checkout the sources directly from the subversion repository with this command:
svn co http://svn.gnucash.org/repo/gnucash/trunk gnucash
Caveats for Testers
Any 2.3.x version might crash unexpectedly at any point during runtime. If you test some serious work in a 2.3.x release and are using the XML file backend for data storage, make sure you hit "Save" after every non-trivial workstep. If you are using the SQL backend, this is not required as every change is saved immediately to the database.
The documentation has had screenshots updated, however, many help texts usually only refers to the 1.8.x series. Everyone is invited to help improve the documentation; see http://wiki.gnucash.org/wiki/Development on how to get involved.
How can you help?
Testing: Test it and help us discover all bugs that might show up in there. Please enter each and every bug into bugzilla.
Translating: The new release comes with some new translation strings. If you consider contributing a translation, we invite you to test this release already. A string freeze will be announced in one of the later 2.3.x releases. Please check http://wiki.gnucash.org/wiki/Translation_Status for updates on this.
We would like to encourage people to test this and any further releases as much as possible and submit bug reports in order that we can polish GnuCash to be as stable as possible for the 2.4.0 release in a few weeks. Then post any bugs you find to bugzilla
Getting GnuCash
Source code for GnuCash 2.3.11 can be downloaded from multiple locations:
To install GnuCash, you will need Gnome 2, guile, slib. In addition you will need swig if compiling from subversion.
Win32 binary
The Gnucash 2.3.11 Win32 setup executable can be downloaded from Sourceforge as well.
About the Program
GnuCash is a free, open source accounting program released under the GNU General Public License (GPL) and available for GNU/Linux, *BSD, Solaris, Mac OSX and Microsoft Windows. Programming on GnuCash began in 1997, and its first stable release was in 1998.
GnuCash 2.3.10 (Unstable) released
The GnuCash development team proudly announces GnuCash 2.3.10, the tenth of several unstable 2.3.x releases of the GnuCash Free Accounting Software which will eventually lead to the stable version 2.4.0. With this new release series, GnuCash can use an SQL database using SQLite3, MySQL or PostgreSQL. It runs on GNU/Linux, *BSD, Solaris, Microsoft Windows and Mac OSX.
WARNING: This is an *UNSTABLE* version of Gnucash.
This release is intended for developers and testers who want to help tracking down all those bugs that are still in there.
Make sure you make backups of any files used in testing versions of GnuCash in the 2.3.x series. Although the developers go to great lengths to ensure that no data will be lost we cannot guarantee that your data will not be affected if for some reason GnuCash crashes in testing these releases.
NOTE: The latest stable version is 2.2.9.
PLEASE TEST TEST AND TEST SOME MORE any and all features important to you. Then post any bugs you find to bugzilla
Major changes in the 2.3.x release include;
- In addition to the XML backend, Gnucash can now use a SQLite3, MySQL or PostgreSQL database to store the data. This is a new implementation using libdbi. It supports all features including the business features. In order to build with this, add --enable-dbi to the configure command. In addition to the libdbi-dev package for your distribution, you will also need the appropriate DBD (libdbi driver) package for sqlite3, mysql or postgresql.
- In addition to the current GtkHTML HTML engine used to display reports and graphs, Gnucash can use WebKit. WebKit is the engine used by Google Chrome on Windows and Safari on Apple. In order to build with this, add --enable-webkit to the configure command. You will need an appropriate webkit-dev package. On win32, you will need to download the webkit-1.1.5-win32.zip file from the source repository and put it into the downloads directory of your gnucash build area. Note that there are serious bugs when using webkit on win32, so it is advised that win32 builds continue to use gtkhtml
- Updated to AqBanking 3 on Win32.
Changes between 2.3.9 and 2.3.10 include:
- Revert r18654. Current GtkHtml implementation crashes the windows build whenever a report is opened.
- Better fix for segfault at startup caused by bug 608329's patch and a renamed Accounts tab. Patch by Tom Van Braeckel
- Fix crash at startup on renamed Accounts tab, bug#608329. Patch by Tom Van Braeckel.
Caveats for Testers
Any 2.3.x version might crash unexpectedly at any point during runtime. If you test some serious work in a 2.3.x release and are using the XML file backend for data storage, make sure you hit "Save" after every non-trivial workstep. If you are using the SQL backend, this is not required as every change is saved immediately to the database.
The documentation has had screenshots updated, however, many help texts usually only refers to the 1.8.x series. Everyone is invited to help improve the documentation; see http://wiki.gnucash.org/wiki/Development on how to get involved.
How can you help?
Testing: Test it and help us discover all bugs that might show up in there. Please enter each and every bug into bugzilla.
Translating: The new release comes with some new translation strings. If you consider contributing a translation, we invite you to test this release already. A string freeze will be announced in one of the later 2.3.x releases. Please check http://wiki.gnucash.org/wiki/Translation_Status for updates on this.
We would like to encourage people to test this and any further releases as much as possible and submit bug reports in order that we can polish GnuCash to be as stable as possible for the 2.4.0 release in a few weeks. Then post any bugs you find to bugzilla
Getting GnuCash
Source code for GnuCash 2.3.10 can be downloaded from multiple locations:
- The GnuCash website
- Sourceforge: bzip2, gzip, all files.
- You can also checkout the sources directly from the subversion repository with this command:
svn co http://svn.gnucash.org/repo/gnucash/trunk gnucash
To install GnuCash, you will need Gnome 2, guile, slib. In addition you will need swig if compiling from subversion.
Win32 binary
The Gnucash 2.3.10 Win32 setup executable can be downloaded from Sourceforge as well.
About the Program
GnuCash is a free, open source accounting program released under the GNU General Public License (GPL) and available for GNU/Linux, *BSD, Solaris, Mac OSX and Microsoft Windows. Programming on GnuCash began in 1997, and its first stable release was in 1998.
GnuCash Services Back Online
As of 2am EST on Thursday, February 18 all GnuCash services should be up and running normally. Over the next few days there may be brief outages as equipment is rearranged or routing preferences are fixed. But the services themselves (Email, Subversion, Wiki, etc) should be accessible.
Thank you for your patience
Scheduled GnuCash Server Downtime
The GnuCash "everything" server will be down on Wednesday, February 17th, 2010, in order to move the hardware to a new location. The shutdown will start around 8am US/EST on Feb 17 and will hopefully last only 12 hours. It may last longer in the event that the network move does not happen on schedule.
This outage will affect all GnuCash services except for www.gnucash.org. Affected services include Email, Email Archives, Subversion, Wiki, Trac, GNCbot, IRC Logs, and all Build Services run on lists, code, and svn.gnucash.org.
Please stay tuned to this location for further updates.
GnuCash 2.3.9 (Unstable) released
The GnuCash development team proudly announces GnuCash 2.3.9, the tenth of several unstable 2.3.x releases of the GnuCash Free Accounting Software which will eventually lead to the stable version 2.4.0. With this new release series, GnuCash can use an SQL database using SQLite3, MySQL or PostgreSQL. It runs on GNU/Linux, *BSD, Solaris, Microsoft Windows and Mac OSX.
WARNING: This is an *UNSTABLE* version of Gnucash.
This release is intended for developers and testers who want to help tracking down all those bugs that are still in there.
Make sure you make backups of any files used in testing versions of GnuCash in the 2.3.x series. Although the developers go to great lengths to ensure that no data will be lost we cannot guarantee that your data will not be affected if for some reason GnuCash crashes in testing these releases.
NOTE: The latest stable version is 2.2.9.
PLEASE TEST TEST AND TEST SOME MORE any and all features important to you. Then post any bugs you find to bugzilla
Major changes in the 2.3.x release include;
- In addition to the XML backend, Gnucash can now use a SQLite3, MySQL or PostgreSQL database to store the data. This is a new implementation using libdbi. It supports all features including the business features. In order to build with this, add --enable-dbi to the configure command. In addition to the libdbi-dev package for your distribution, you will also need the appropriate DBD (libdbi driver) package for sqlite3, mysql or postgresql.
- In addition to the current GtkHTML HTML engine used to display reports and graphs, Gnucash can use WebKit. WebKit is the engine used by Google Chrome on Windows and Safari on Apple. In order to build with this, add --enable-webkit to the configure command. You will need an appropriate webkit-dev package. On win32, you will need to download the webkit-1.1.5-win32.zip file from the source repository and put it into the downloads directory of your gnucash build area. Note that there are serious bugs when using webkit on win32, so it is advised that win32 builds continue to use gtkhtml
- Updated to AqBanking 3 on Win32.
Changes between 2.3.8 and 2.3.9 include:
- Bugs fixed
- Bug #608436: Add auto-clear feature Patch by Cristian KLEIN: = Usage scenario = John keeps his personal accounting in GnuCash and writes all credit card expenses therein. On weekends, we checks his Internet Banking and sees that some transactions have been recorded. He would like to clear those transactions in GnuCash, but it is tiresome to go through each Internet Banking transaction and do manual comparison with GnuCash records, especially since Internet Banking transactions might be in a different order than in GnuCash. John would prefer having an "auto-clear" feature. Given the "current amount" from the Internet Banking, he would like GnuCash to clear the transactions for him, if and only if, there is a unique combination of transactions that could achieve this. If there is no solution, or if the solution is not unique, GnuCash should warn him and John must manually clear the transactions.
- Bug #590332: New eguile-based Tax Invoice report Patch by Chris Dennis.
- Bug #606053: Add stylesheet with footer Patch by edodd@billiau.net and Frank H. Ellenberger.
- Bug 586122 - The AqBanking Wizard can't be loaded: plugins\20 folder to be renamed into plugins\16 The patch evaluates and configures the proper paths at build time, retrieving the required info directly from the aqbanking source
- Bug #608329: Add Color to Account tabs Patch by "Bob": I wanted a way to select an account easily when I have several accounts open in the main window. I decided to add a color option to the account so that the tab can be set to a specific color and so easily identifiable. This could also be used to link like minded accounts together. This patch also fixes the account tooltip not being updated when the name changes.
- Bug #534210: Add individual check item types. Patch by Thomas Troesch: The proposed patch does: 1. Changes the chk file key to Blocking_Chars as described in 607522 ( this had been dropped by mistake ). 2. Add several fields to the Custom tab in the print check dialog. Locations for: a. split memos fields. b. split accounts ( e.g. Expenses:Auto ) c. split amounts ( e.g. GBP 21.40 ) The splits do not include the last split in the transaction. The keys in the chk format file are: SPLITS_AMOUNT SPLITS_MEMO SPLITS_ACCOUNTS 3. Memo was added to the custom tab. This is the memo from the split that matches the account from the register.
- Bug #608306: check amount_word should print the fraction correctly. Patch by Thomas Troesch: Checks printed the wrong string for the amount_words. The utility number_to_words had produced e.g. from 100.04 -> One Hundred and 4/100. The word string should be One Hundred and 04/100.
- Bug #608874: Spelling fix for Emoluments Patch by Adrian Bridgett.
- Bug #589320 Price Editor - Currency Namespace does not show up This bug was introduced by r18062 (applying a patch from bug #580281 Entering multiple pices with price editor is tedious) For some unknown reason, r18062 assumed exchange rates are not supposed to be edited via the Price Editor dialog.
- Bug #105669: Improve error handling in gz_thread_func. Honor errors when reading/writing from/to a compressed file or the pipe to the main thread.
- Bug #606728: Catch errors when opening saved-reports-2.4 for write.
- Bug #105669: Add checks to detect errors on write, especially if there no space left on the disk. Check the return value of fprintf and use ferror where libraries as libxml do the write. The change may not be perfect yet and a review would be nice. Still, it detects quite a few errors that, without it, slip through and may destroy valuable data.
- Bug #607522: Add ADDRESS to check printing Patch by Thomas Troesch: The patch does three things: 1. Adds the ability to print an address on checks. The Print Check dialog is changed to have 5 address lines. The first field is filled in with the same data as the PAYEE check item. The other lines are blank. The check format keys have a new check-item type 'ADDRESS'. It behaves like other text check-item types. The address fields on the dialog are set 'not-sensitive' if the current format does not have an ADDRESS check item defined. The Custom Field tab has a new line for the address location. 2. Added new check format key - Blocking_Chars. This is to put the blocking character feature into the check format file. It is currently only in the preferences dialog in the printing tab, and therefore currently applies (or not) to all text fields in th_e check format. By adding the key Blocking_Chars_n to the check format, the blocking characters can be applied to text type check-items individually. Its really useful when printing stubs and so on. (NOTE: blocking characters are printed around a field to protect against alteration e.g. ***$100.00*** vs $100.00) 3. Included a Voucher check template. This is a full page check with the check on top and which has two stubs below. There are other voucher formats ( middle and bottom ) , but the check printing functionality would require separate templates for the different formats. Also changed the Quicken/Quickbooks US-Letter check format to include the ADDRESS check item and blocking around the AMOUNT_NUMBER field. I made a change to the Quicken-wallet check to add blocking characters around the AMOUNT_NUMBER field, and I added a clipping rectangle definition to the NOTES and PAYEE fields the were placed in the check stub area ( if the fields were too long, they would print into the check area ).
- Bug #607517: Migrate print.glade from glade-2 to glade-3 format. Patch by Thomas Troesch.
- Bug #607246: In qof_string_number_compare_func, use base 10 and do not allow octals to sneak in. Otherwise, transaction number 0108 (octal 010=8) will sort before 0107 (octal 0107=71).
- Bug #607255: Repair Hungarian report main menu, by Attila Nagy.
- Bug #607185: Add f-q workaround for missing date. Patch by "meo": If for whatever reason finance-quote is unable to get a date for a quote or to convert it to the standardized form, gnucash is unable to use the otherwise correct quote. With web pages being updated definitively more frequently than finance-quote, this is quite a nuisance. Up to now, gnc-fq-helper emits an error message + the quote, a combination gnucash is unable to process. This patch presents a workaround. I would prefer using the current date + 12 hours rather than current date + time, but this is open for discussion.
- Bug #606077: Fix uncommon configure option --program-suffix. Patch by Peter Selinger: OK, the attached patch fixes part of this problem. Specifically, it applies the specified transform (from ./configure option --program-suffix, --program-prefix, or --program-transform-name) to the files src/bin/gnucash-valgrind src/bin/gnucash-gdb src/bin/gnucash This is done in the Makefile at compile time. In the end, I am not sure why the GnuCash configure.in provides the --program-suffix mechanism at all, since apparently it hasn't been used in 10 years. According to info autoconf, these are supposed to be enabled by the macro AC_ARG_PROGRAM, but I don't see this in configure.in. So perhaps it has been enabled by accident and shouldn't really be there.
- Bug #511606: Fix ipmt() and ppmt() functions in scheduled transactions. Patch by Jean-Baptiste: " The instance counter is now incremented into increment_sx_state function."
- Bug #538902: Moves the "New Accounts Page" menu option to the "View" menu Patch by Steven N. Severinghaus.
- Bug #348701 Wrong currency symbol when currency is set to DKK This fix reverts changeset r7200, which caused some currency symbols to be replaced with the EURO sign. This replacement was a workaround for gtkhtml1 and no longer needed.
- Bug #606626: Change wording from Druid to Assistant
- Bug #589032: Replace some strcmp() by safe_strcmp() to fix crashes on NULL strings.
- Bug #602051: Replace the word "string" in GUI messages by non-developer wordings. Same for dialog -> window.
- Bug #602091: Fix broken Due Bill Reminder in all non-C locales The Due Bill Reminder used the translated form of "Invoice" as query string predicate, which can't work because the untranslated string must be searched for.
- Bug #582325: Refactor some deprecated guile functions: SCM_BOOLP -> scm_is_bool SCM_NULLP -> scm_is_null SCM_FALSEP -> scm_is_false SCM_NFALSEP -> scm_is_true SCM_VECTORP -> scm_is_vector SCM_NUMBERP -> scm_is_number SCM_CONSP -> scm_is_pair SCM_STRING_CHARS -> scm_to_locale_string Specifically the replacement of SCM_STRING_CHARS with scm_to_locale_string fixes Bug #582325 Additionally, I have renamed these internal functions for global consistency: SCM_PROCEDUREP -> scm_is_procedure SCM_LISTP -> scm_is_list SCM_EXACTP -> scm_is_exact SCM_EQUALP -> scm_is_equal
- Bug #605414: Clarify Quick-fill tip of the day Patch by James Raehl: Patch adds Tab key step to the Quick Fill tip. New users do not know about this step.
- Bug #605415: Relax limit on scheduled days in the future Patch by James Raehl: Expand scheduled transaction date limit by 366 days Usually, scheduled transactions are limited to 365 days in the future. This patch doubles that limit plus adds a day for leap years. The patch supports a method for separating transactions that are not yet posted at the bank, by assigning an initial date one year in the future. Under this method, scheduled transactions and their reminders are one year in the future, since they have not happened yet.
- Fix bug #603215 - Custom report from Budget Report does not save selected Budget Problem was how budget option tried to create the lambda function to restore the value.
- Bug #479581 gnucash --nofile hasn't application name in window title When no file is selected, the title now becomes "Unsaved Book - GnuCash". The first part is following Gnome HIG guidelines, the latter part is a preference of several GnuCash developers. Furthermore, the "- GnuCash" suffix will always be appended, not only when no file is open.
- Fix #586122 (follow-up to r18488) by using aqbanking/version.h from its installation path. Also look up the gwenhywfar so-name accordingly.
- Bug #609402 Add Japanese resource to Windows (inno) setup
- Updated translations or translation-related changes
- Updated Dutch translation, by Mark Haanen and Jos, copied from the Translation Project.
- Updated Japanese translation, by Yasuaki Taniguchi, copied from the Translation Project.
- I18n fix of concatenated expression. We must not concatenate a word expression from different strings. Instead, we must translate each expression separately. Pointed out by Mark Haanen.
- I18n improvement: Translate plural-dependent string correctly by ngettext().
- Minor updates to British English translation by Mike Evans. Copied from bug#602051.
- Fix translation issues caused by r18474.
- Update Chinese (simplified) translation, copied from the Translation Project.
- Update British English translation by Mike E.
- Remove de_CH translation because it ceased to be maintained. The normal German translation will appear for de_CH locales, just as in 2.2.x.
- Fix typo: accouting -> accounting
- Update German translation
- Add initial Persian translation (Farsi) by Mehdi Alidoost.
- Fix translation error in r18550, bug#602051.
- Update Japanese translation, copied from the Translation Project.
- Fix missing header information about Farsi plural forms in fa.po, according to what has been explained to me.
- Add disambiguation prefix to the word Split where it is the action of a Stock Split.
- Add new source files to POTFILES.in
- Updated Dutch translation, copied from the Translation Project.
- Update German translation.
- Update the translations with the latest string template.
- I18n improvement: The account name of the other account in multi-split transaction is extended to conform to the name in the register. Otherwise, the string Split from here has the ambiguity with the button labeles Split, which is the verb, whereas here we need the noun.
- I18n improvement: Add disambiguation prefix to the account code of the other account in a multi-split txn. Without the disambiguation, the string here is identical to the button labeled Split, but that one is for sure something different from here, namely the old verb vs. noun issue.
- Other user-visible changes
- Small UI string corrections related to the recent tax enhancements. Patch by J. Alex Aycinena.
- Payment dialog layout improvements - Rearrange the frames so that the Transfer Account frame gets more space - Add tooltips to (owner), (invoice) and amount related widgets. - Properly align the invoice_label widget
- Watch out for a missing pricing transaction when looking for price data.
- Add a comment about GNC_COMMODITY_NS_ISO and GNC_COMMODITY_NS_CURRENCY.
- Add new columns for the name of the lot each split is part of and for the value of the split. Both are optional and default to off.
- Call gnc_{suspend|resume}_gui_refresh while closing accounts and scrubbing lots to make them go much faster and avoid flicker.
- Watch out for a null account in render-corresponding-account-subheading, it happened to me once.
- Pass the correct report name to income-statement-renderer-internal when rendering a profit and loss report.
- Don't leak a file port when saving reports.
- Reset found_trans_split when the transaction being considered in gnc_split_register_find_split turns out to be the wrong one.
- Fix an off by one error in gnc_ui_sx_loan_druid_create.
- Increase the size of the Guile stack to avoid stack overflow errors.
- Some usability improvements to the Save As.../Open dialog (part 2) Forgot to add the changes in c code...
- Some usability improvements to the Save As.../Open dialog * The dialog gets a proper title * Only show the File frame or the Database frame, as relevant to the chosen data format * Set a minimum width. Without it the dialog comes up too narrow. * Some minor layout changes (spacing, justification,...) to harmonize with other GnuCash dialogs.
- Don't show hidden accounts in the transfer dialog. This should be connected to the UI, but my ubuntu has glade 3 which mucks up the .glade files.
- Add a Select Children button to the widget used for account selection in report options dialogs.
- Load gnc-build-url from the correct file so the accounts list option works again.
- Speed up the balance sheet report by a factor of 5 or so by using C functions instead of Scheme functions to get account commodity balances. This idea is borrowed from the EGuile version of the balance sheet report.
- Avoid a bunch of assertion failures when the general ledger is open. The general ledger has no account so attempts to get the balance of the register's account pass a null account pointer to functions that won't accept that. Also stop leaking a GList in the functions that get account balances.
- Remove the "Compute unrealized gains and losses" option from the balance sheet report. Instead compute unrealized gains and losses only if the current book does not use trading accounts.
- Change 'Int' to 'Interest' and 'Div' to 'Dividend' in action strings
- Use string saved-reports-2.4 in the description of the save report action.
- Use gtkhtml as html render in the Windows build
- [Patch] Corrections to taxtxf.scm Patch by J. Alex Aycinena: I attach a patchfile that corrects two problems with taxtxf.scm: the report would not gracefully handle the cases where, 1, a datafile from an earlier version of gnucash might have tax codes assigned to accounts and no tax-entity-type code assigned to the file, and, 2, some cases where accounts had no tax code assigned and the tax-related flag not set.
- Have the Post date widget grab the focus by default when opening the post invoice dialog.
- Updated txf.scm for 2009 US tax form changes by J. Alex Aycinena.
- Fix crash when copying a currently edited transaction in the register.
- Other code/build changes
- Remove gnucash.lsm from EXTRA_DIST
- Fix doxygen markup
- Small documentation improvements for better doxygen docs
- Move splint-defs.h to src/debug. It's only used for debugging. Note that the current splint-defs.h causes compilation errors due to redefinition of function declarations. These should be fixed when splint is to be run again.
- Win32: Fix building of libgoffice. Required libgsf to not remove the build directory, hence part of r18559 need to be reverted.
- Fix null-pointer dereference from r18612
- Remove Linux Software Map description. It's unmaintained for years now.
- Move count.* to util Also I made a first attempt at improving the line count. The old script missed a number of files in the directories it counted. The script is still not in line with the current code base though. A number of directories are still not counted (like gnome, engine, ledger, ...)
- Moved svnlog2ul from contrib to util It makes more sense in util as it is by and for the devs, not contributed by an external user for external use.
- Add svnlog2ul.sh, and accompanying xslt sheets. svnlog2ul.sh is a script to extract the commit messages from svn between two releases and converts them into a simple html unordered list. This is a useful aid to create the news pages on the website.
- Move valgrind suppression rules to debug subdirectory This will require a new run of configure as some makefiles have changed
- Set svn:ignore on pl accounts like the other account directories (Meaning: ignore Makefile and Makefile.in)
- Remove the old, obsolete postgres backend and its tools I also changed some of the documentation that referred to it, but there are still some references left in the (unmaintained ?) design documents.
- Win32: Hopefully fix goffice installation.
- Free sort_keys as allocated by g_utf8_collate_key in ExtensionInfos.
- Fix script to check for > 2.8 entries to remove The minimal Gtk+ requirement has been set to 2.8 recently. This script still removed glade parameters that are valid in 2.8. This patch fixes that.
- Corrections to r18610 to permit compiling against older versions of glib
- Remove more executable bits from data files
- Remove executable flag from data files
- Fix URL of ActivePerl.
- Minor changes to global project files 1. Fix spelling errors in HACKING - appearenet -> apparent (patch by Tom Van Braeckel) - supressions -> suppressions 2. Keep the contributer list sorted alphabetically in AUTHORS
- Fix "make distcheck". Patch by Jan Arne Petersen
- Reverse r18597
- Create routines qof_book_get_string_option() and qof_book_set_string_option() to get/set a kvp string, respectively. qof_book_set_string_option() also handles saving the book so that the kvp is updated in the db. In the future, qof_book_set_<type>_option() and qof_book_get_<type>_option() should be created, where type is boolean, int, double, ... In addition, other places which handle options in the book should use these routines.
- Create qof_book_begin_edit()/qof_book_commit_edit() routines. These need to be added around lines which set kvp values for the book, and the dirty flag does *not* need to be set.
- Revert 18490/18491/18527 - I'm not sure it's actually deleting the objects without affecting the database.
- Add ChangeLog.2009 for the last year.
- Use correct routine to add a newly loaded entry to the correct bill. r18302 fixed the entry loading problem for invoices, this extends it to bills.
- Remove build directories of dependencies after their successful installation.
- Remove a couple of unused local variables left over from a previous iteration of the trading account changes.
- Fix guile-1.6 compatibility of r18541 (bug#582325). We still suppport guile-1.6, hence we can use the functions introduced in guile-1.8 only by providing our own backward compatibility macro definitions in guile-mappings.h.
- Update gwenhywfar/aqbanking version numbers for win32 build.
- Fix gwenhywfar version lookup by tightening the RE used
- Need to export the variables for glib to see them
- temporarily disable the gwenhywfar version lookup - there are multiple lines matching GWENHYWFAR_SO_EFFECTIVE
- Really fix r18495 (#586122) to look up the so-name of gwenhywfar correctly.
- Require gtk+ >= 2.8
- Remove unneeded information lines about "qof" - we're using our internal code always anyway.
- Re-indentation of source code, next batch. This also strips trailing whitespaces from lines where they existed. This re-indentation was done using astyle-1.23 using the following options: astyle --indent=spaces=4 --brackets=break --pad-oper Discussed at http://lists.gnucash.org/pipermail/gnucash-devel/2009-August/026121.html
- Allow digits in Gtk action names created in gnc_create_extension_info. This should fix bug 447339 as long as all report names are unique considering only alphanumeric characters.
- Free accounts/lots/splits/transactions when closing a book
- Fix a couple of echo commands and set warnings=no-portability when running automake.
- Make xaccSplitDump and xaccTransDump work for debugging.
- Teach xaccSplitConvertAmount that 0*x = 0. Avoids looking up non-existant exchange rate.
- Add some missing Leave() calls.
- Symlink the reports to the build directory to make it easier to use them when running in place after a build without installing GnuCash.
- Use resolve-interface instead of resolve-module when loading reports fo only the exported interface gets imported instead of everything defined in the file.
- Make the dbi backend tests work correctly if dbd is installed in a nonstandard location. Supply a GNC_DBD_DIR environment variable to the tests so it knows where to find the database modules. This is needed if libdbi is installed via MacPorts on OS X.
- Add flags to help with valgrind on glib
- Free prices so that they can be deleted when the book is closed
- Free budgets when closing a book
- When closing the book, destroy all lots (found by valgrind)
- Free memory leaks
- Add qof_backend_module_finalize() routine to call dbi_shutdown() to free allocated resources.
- Add qof_finalize_backend_libraries() which is called during shutdown. This routine checks each backend library for an exported qof_backend_module_finalize() routine, and if it exists, calls it so that the backend can free any resources which have been allocated.
- Fix some memory leaks found by valgrinding tests
- Remove erroneous use lib from gnc-fq-*, along with PERLINC setup in configure.in
- Decrease verbosity during win32 packaging: Inno, gconftool-2, htmlhelp compiler (hhc) with less output.
- Fix some incorrect ENTER() and LEAVE() calls.
- Fix up some gnc:debug calls (and one comment).
- Fix a couple of initialized variable warnings.
- Add missing PORTFOLIO_LEDGER register type to switch statement in gnc_split_register_get_debcred_entry.
Caveats for Testers
Any 2.3.x version might crash unexpectedly at any point during runtime. If you test some serious work in a 2.3.x release and are using the XML file backend for data storage, make sure you hit "Save" after every non-trivial workstep. If you are using the SQL backend, this is not required as every change is saved immediately to the database.
The documentation has had screenshots updated, however, many help texts usually only refers to the 1.8.x series. Everyone is invited to help improve the documentation; see http://wiki.gnucash.org/wiki/Development on how to get involved.
How can you help?
Testing: Test it and help us discover all bugs that might show up in there. Please enter each and every bug into bugzilla.
Translating: The new release comes with some new translation strings. If you consider contributing a translation, we invite you to test this release already. A string freeze will be announced in one of the later 2.3.x releases. Please check http://wiki.gnucash.org/wiki/Translation_Status for updates on this.
We would like to encourage people to test this and any further releases as much as possible and submit bug reports in order that we can polish GnuCash to be as stable as possible for the 2.4.0 release in a few weeks. Then post any bugs you find to bugzilla
Getting GnuCash
Source code for GnuCash 2.3.9 can be downloaded from multiple locations:
- The GnuCash website
- Sourceforge: bzip2, gzip, all files.
- You can also checkout the sources directly from the subversion repository with this command:
svn co http://svn.gnucash.org/repo/gnucash/trunk gnucash
To install GnuCash, you will need Gnome 2, guile, slib. In addition you will need swig if compiling from subversion.
Win32 binary
The Gnucash 2.3.9 Win32 setup executable can be downloaded from Sourceforge as well.
About the Program
GnuCash is a free, open source accounting program released under the GNU General Public License (GPL) and available for GNU/Linux, *BSD, Solaris, Mac OSX and Microsoft Windows. Programming on GnuCash began in 1997, and its first stable release was in 1998.
GnuCash 2.3.8 (Unstable) released
The GnuCash development team proudly announces GnuCash 2.3.8, the ninth of several unstable 2.3.x releases of the GnuCash Free Accounting Software which will eventually lead to the stable version 2.4.0. With this new release series, GnuCash can use an SQL database using SQLite3, MySQL or PostgreSQL. It runs on GNU/Linux, *BSD, Solaris, Microsoft Windows and Mac OSX.
WARNING: This is an *UNSTABLE* version of Gnucash.
This release is intended for developers and testers who want to help tracking down all those bugs that are still in there.
Make sure you make backups of any files used in testing versions of GnuCash in the 2.3.x series. Although the developers go to great lengths to ensure that no data will be lost we cannot guarantee that your data will not be affected if for some reason GnuCash crashes in testing these releases.
NOTE: The latest stable version is 2.2.9.
PLEASE TEST TEST AND TEST SOME MORE any and all features important to you. Then post any bugs you find to bugzilla
Major changes in the 2.3.x release include;
- In addition to the XML backend, Gnucash can now use a SQLite3, MySQL or PostgreSQL database to store the data. This is a new implementation using libdbi. It supports all features including the business features. In order to build with this, add --enable-dbi to the configure command. In addition to the libdbi-dev package for your distribution, you will also need the appropriate DBD (libdbi driver) package for sqlite3, mysql or postgresql.
- In addition to the current GtkHTML HTML engine used to display reports and graphs, Gnucash can use WebKit. WebKit is the engine used by Google Chrome on Windows and Safari on Apple. In order to build with this, add --enable-webkit to the configure command. You will need an appropriate webkit-dev package. On win32, you will need to download the webkit-1.1.5-win32.zip file from the source repository and put it into the downloads directory of your gnucash build area.
- Updated to AqBanking 3 on Win32.
Changes between 2.3.7 and 2.3.8 include:
- Disable it_IT help in the win32 binary
- Recreate index after updating table
- Temporarily disable currency trading accounts so that 'make check' will pass
- Fix test-resolve-file-path - results have changed
- Fix compilation problem in test
- Add src/gnome-utils/gnc-tree-model-account-drag.c to po/POTFILES.in
- Set debug level for gnc.backend.dbi automatically to DEBUG.
- Fix memory leak: Let the pixbuf renderer for goffice plots be unreferenced
- Add libguile CFLAGS and LIBADD to libqof build
- Fix too-new gtk_dialog_get_content_area function of r18413: Patch by J. ...
- Transaction post date also needs to allow NULL values.
- Temporary workaround for crash at startup after r18429.
- Decrease verbosity of aqbanking plugin: Debug output only if preference ...
- In the "Save As" dialog, set XML as default, not sqlite3.
- Fix compile error on current ubuntu by clashing symbol declarations in ...
- When creating an account selector and a commodity list if provider, just ...
- Remove forgotten printf in r18402 which shouldn't have been committed to ...
- Fix amount sign of imported bank transfers (e.g. from DTAUS ...
- Fix GCC pointer strictness compiler errors/warnings and remove duplicate ...
- Fix compile error related to uninitialized value. Patch by Matt Lavin ...
- Introduce disambiguation prefix for "Deposit" action to distinguish it ...
- Make one register function more const correct to avoid compiler warnings ...
- Fix typo: scm_catch_body_t -> scm_t_catch_body
- gnc-module doesn't need to compile/link with guile
- Add new option in register "Tab order includes Transfer field". Patch by Colin Law
- Partly fix broken data file backward compatibility with SX recurrence
- Win32: Allow m4 1.4.11 and 1.4.13 as well as 1.4.7.
- Win32: Assert there is only one aqbanking plugin directory
- Win32: Minor version update of aqbanking.
- Bug #603186: Fix crash with txf.scm on win32 Patch by J. Alex ...
- Bug #537476: Fix currency trading account preference lookup Patch by Mike ...
- Fix the bug described in comment 19 of bug 537476, balance sheet wrong ...
- Bug #310567: Disable newly introduced "shift txn forward" feature again ...
- Fix bug 600486 - Unable to open sqllite file on Win7 64 bit Unposted ...
- Fix Bug 591573 - "File|Save As" with xml option and no file name ...
- Fix bug 602603 - State file cannot be saved with MySQL because of colon ...
- Bug #570895: Allow reporting for single budget periods in budget income ...
- Bug #602744: Fix broken tip_of_the_day list creation. Patch in r18417 ...
- Fix bug 591098 - when starting Gnucash, "Present" and all other collumns ...
- Bug #537476: Implement currency trading accounts optionally, to be enabled ...
- Bug #554394: Income Tax Enhancements Patch by J. Alex Aycinena. Patch ...
- Bug #600374: Add editable transaction field in the register for bank ...
- Bug #310567: Add menu item to shift transaction forward in sorting ...
- Bug #121695: Support account reparenting through drag and drop in the ...
- Fix bug 492865 - Add Last Reconcile Date as an Option in the Chart of ...
- Fix bug 593581 - 2.3.5: Save to MySQL still fails with date error After ...
- Bug #601861: Fix mis-captioning in button labels The keyboard shortcut ...
- Bug #602070: Fix return value in void function Patch by Halton Huo.
- Bug #602062: Fix hard-coded gcc program name Patch by Halton Huo.
- Bug #540452: Remove inline from function declaration/definition because it ...
- Bug #602069: Fix build on Solaris for different gmp header ...
- Revert r18396, "Bug #593906: Fix crash at account report" This change ...
- Fix bug 598213 - Selecting "Account Report" causes gnucash to ...
- Bug 600947 - Gnucash-2.3.7 crashes when doing reports with ...
- Bug 599324 - Patch: Add double click behaviour to account list in payment ...
- Bug 599322 - Patch: Minor gui tweak for invoice window Fix widget ...
- Bug #599953: Let gnc:make-[complex|simple]-boolean-option store its value ...
- Bug #593906: Fix crash at account report Patch by Mike Alexander. This ...
- Bug #582985, #585022: Add missing currencies Armenian Dram (AMD) and ...
- Bug #593070: Budget Report: Omit accounts with no budget and zero ...
- Fix 598491: Remove use of guile's deprecated GH interface
- Bug #567090: Fix erroneous password length comparison.
- Updated Dutch translation by Mark Haanen, copied from Translation Project.
- Add Latvian translation by Valdis Vitolins <valdis.Vitolins@odo.lv>
- Update of Japanese translation by KUSANO Takayuki
- Add polish account templates, contributed by Jacek Baszkiewicz ...
- Update German translation.
Caveats for Testers
Any 2.3.x version might crash unexpectedly at any point during runtime. If you test some serious work in a 2.3.x release and are using the XML file backend for data storage, make sure you hit "Save" after every non-trivial workstep. If you are using the SQL backend, this is not required as every change is saved immediately to the database.
The documentation has had screenshots updated, however, many help texts usually only refers to the 1.8.x series. Everyone is invited to help improve the documentation; see http://wiki.gnucash.org/wiki/Development on how to get involved.
How can you help?
Testing: Test it and help us discover all bugs that might show up in there. Please enter each and every bug into bugzilla.
Translating: The new release comes with some new translation strings. If you consider contributing a translation, we invite you to test this release already. A string freeze will be announced in one of the later 2.3.x releases. Please check http://wiki.gnucash.org/wiki/Translation_Status for updates on this.
We would like to encourage people to test this and any further releases as much as possible and submit bug reports in order that we can polish GnuCash to be as stable as possible for the 2.4.0 release in a few weeks. Then post any bugs you find to bugzilla
Getting GnuCash
Source code for GnuCash 2.3.8 can be downloaded from multiple locations:
- The GnuCash website
- Sourceforge: bzip2, gzip, all files.
- You can also checkout the sources directly from the subversion repository with this command:
svn co http://svn.gnucash.org/repo/gnucash/trunk gnucash
To install GnuCash, you will need Gnome 2, guile, slib. In addition you will need swig if compiling from subversion.
Win32 binary
The Gnucash 2.3.8 Win32 setup executable can be downloaded from Sourceforge as well.
About the Program
GnuCash is a free, open source accounting program released under the GNU General Public License (GPL) and available for GNU/Linux, *BSD, Solaris, Mac OSX and Microsoft Windows. Programming on GnuCash began in 1997, and its first stable release was in 1998.
GnuCash 2.3.7 (Unstable) released
The GnuCash development team proudly announces GnuCash 2.3.7, the eighth of several unstable 2.3.x releases of the GnuCash Free Accounting Software which will eventually lead to the stable version 2.4.0. With this new release series, GnuCash can use an SQL database using SQLite3, MySQL or PostgreSQL. It runs on GNU/Linux, *BSD, Solaris, Microsoft Windows and Mac OSX.
WARNING: This is an *UNSTABLE* version of Gnucash.
This release is intended for developers and testers who want to help tracking down all those bugs that are still in there.
Make sure you make backups of any files used in testing versions of GnuCash in the 2.3.x series. Although the developers go to great lengths to ensure that no data will be lost we cannot guarantee that your data will not be affected if for some reason GnuCash crashes in testing these releases.
NOTE: The latest stable version is 2.2.9.
PLEASE TEST TEST AND TEST SOME MORE any and all features important to you. Then post any bugs you find to bugzilla
Major changes in the 2.3.x release include;
- In addition to the XML backend, Gnucash can now use a SQLite3, MySQL or PostgreSQL database to store the data. This is a new implementation using libdbi. It supports all features including the business features. In order to build with this, add --enable-dbi to the configure command. In addition to the libdbi-dev package for your distribution, you will also need the appropriate DBD (libdbi driver) package for sqlite3, mysql or postgresql.
- In addition to the current GtkHTML HTML engine used to display reports and graphs, Gnucash can use WebKit. WebKit is the engine used by Google Chrome on Windows and Safari on Apple. In order to build with this, add --enable-webkit to the configure command. You will need an appropriate webkit-dev package. On win32, you will need to download the webkit-1.1.5-win32.zip file from the source repository and put it into the downloads directory of your gnucash build area.
- Updated to AqBanking 3 on Win32.
Changes between 2.3.6 and 2.3.7 include:
- Revert changes which caused gnucash to crash on startup on windows
- More recent version of gmp on win32
- Postgresql binary package on win32 now includes msvcr71.dll
- Fix compiler warnings. Patch by Colin Law
- Fix for balance column displayed in template register
- Update of Polish translation by Jacek Baszkiewicz
Caveats for Testers
Any 2.3.x version might crash unexpectedly at any point during runtime. If you test some serious work in a 2.3.x release and are using the XML file backend for data storage, make sure you hit "Save" after every non-trivial workstep. If you are using the SQL backend, this is not required as every change is saved immediately to the database.
The documentation has had screenshots updated, however, many help texts usually only refers to the 1.8.x series. Everyone is invited to help improve the documentation; see http://wiki.gnucash.org/wiki/Development on how to get involved.
How can you help?
Testing: Test it and help us discover all bugs that might show up in there. Please enter each and every bug into bugzilla.
Translating: The new release comes with some new translation strings. If you consider contributing a translation, we invite you to test this release already. A string freeze will be announced in one of the later 2.3.x releases. Please check http://wiki.gnucash.org/wiki/Translation_Status for updates on this.
We would like to encourage people to test this and any further releases as much as possible and submit bug reports in order that we can polish GnuCash to be as stable as possible for the 2.4.0 release in a few weeks. Then post any bugs you find to bugzilla
Getting GnuCash
Source code for GnuCash 2.3.7 can be downloaded from multiple locations:
- The GnuCash website
- Sourceforge: bzip2, gzip, all files.
- You can also checkout the sources directly from the subversion repository with this command:
svn co http://svn.gnucash.org/repo/gnucash/trunk gnucash
To install GnuCash, you will need Gnome 2, guile, slib. In addition you will need swig if compiling from subversion.
Win32 binary
The Gnucash 2.3.7 Win32 setup executable can be downloaded from Sourceforge as well.
About the Program
GnuCash is a free, open source accounting program released under the GNU General Public License (GPL) and available for GNU/Linux, *BSD, Solaris, Mac OSX and Microsoft Windows. Programming on GnuCash began in 1997, and its first stable release was in 1998.
GnuCash 2.3.6 (Unstable) released
The GnuCash development team proudly announces GnuCash 2.3.6, the seventh of several unstable 2.3.x releases of the GnuCash Free Accounting Software which will eventually lead to the stable version 2.4.0. With this new release series, GnuCash can use an SQL database using SQLite3, MySQL or PostgreSQL. It runs on GNU/Linux, *BSD, Solaris, Microsoft Windows and Mac OSX.
WARNING: This is an *UNSTABLE* version of Gnucash.
This release is intended for developers and testers who want to help tracking down all those bugs that are still in there.
Make sure you make backups of any files used in testing versions of GnuCash in the 2.3.x series. Although the developers go to great lengths to ensure that no data will be lost we cannot guarantee that your data will not be affected if for some reason GnuCash crashes in testing these releases.
NOTE: The latest stable version is 2.2.9.
PLEASE TEST TEST AND TEST SOME MORE any and all features important to you. Then post any bugs you find to bugzilla
Major changes in the 2.3.x release include;
- In addition to the XML backend, Gnucash can now use a SQLite3, MySQL or PostgreSQL database to store the data. This is a new implementation using libdbi. It supports all features including the business features. In order to build with this, add --enable-dbi to the configure command. In addition to the libdbi-dev package for your distribution, you will also need the appropriate DBD (libdbi driver) package for sqlite3, mysql or postgresql.
- In addition to the current GtkHTML HTML engine used to display reports and graphs, Gnucash can use WebKit. WebKit is the engine used by Google Chrome on Windows and Safari on Apple. In order to build with this, add --enable-webkit to the configure command. You will need an appropriate webkit-dev package. On win32, you will need to download the webkit-1.1.5-win32.zip file from the source repository and put it into the downloads directory of your gnucash build area.
- Updated to AqBanking 3 on Win32.
Changes between 2.3.5 and 2.3.6 include:
- Fix #107929: Improved running balance implementation. Patch by Tim M
- Fix #593906: Fix crash at creating account report Patch by Mike Alexander
- When configuring to build, if webkit chosen as html engine, don't bother looking for gtkhtml.
- Fix enhancement bug 101456 - 'Find' dialog cumbersome for Business functions. Patch by Geert Janssens
- Fix enhancement bug 589787 - Multi-line up/down scroll for register transaction Notes field text. Patch by James Raehl
- Win32 build: Add forgotten dist_ktoblzcheck step to dist creation.
- Use GtkFunction instead of obsolete GtkDestroyNotify for argument type
- Win32: Newer Aqbanking version
- Win32 build: Remove gwenhywfar configure option which has been removed before gwenhywfar-3.8.2.
- I18n fix: Markup preference tab name "Online Banking" for translation.
- Win32 installer: Really fix path of qt3-wizard.exe.
- Fix bug #595920: Fix missing ca-bundle.crt in windows installer.
- Add "file://" URL type to images in invoices.
- Latest pot template merged into all .po translation files
- Bug #589804: Additions to register transactions Action pulldown list. Patch by James Raehl.
- Bug #572938: Fix OFX Mutual fund buys that are imported as sells. Patch by Matt Lavin, signed-off by Benoit Grégoire.
- Bug #585784: Fix wrong fractional precision in stock/mutual fund registers. Patch by Daniel Harding.
- Source of src/libqof/qof run through astyle to be re-indented
- Add GNC_DBD_DIR definition for libdbi on mac
- Fix bug 590386 - Add option to always use today for reconciliation statement date Patch by Simon Arlott
- Fix bug 591117 - Cash Flow Report's "Depth: All" Option is Broken. Patch by David Eisner
- Fix bug 595014 - MacOSX 10.6 (Snow Leopard) fails configure.in check. Patch by David Reiser
- Fix bug 595015 - compiler warnings for missing printf format specs, gcc 4.2.1. Patch by David Reiser
- Fix bug 595017 - compiler complaints about incompatible pointer types in gnc-gwen-gui.c. Patch by David Reiser
- Fix bug 589673 - need to patch libdbi source for win32 problem.
- Fix bug 594048 - gnucash will not compile with most recent goffice versions. Patch by Jean Brefort
- Remove trailing whitespace from lines. Patch by Geert Janssens.
- Move gnc_account_get_full_name() from app-utils to engine and remove xaccAccountGetFullName in engine.
- If an object is loaded with a reference to an invoice, order, tax table or bill term which has not been loaded yet, print a warning message into the trace file.
- If an object is being loaded that has a reference to a transaction, and the transaction hasn't been loaded yet, load it. If an object has a reference to an account, commodity, budget or lot that hasn't been loaded yet, print a warning message in the trace file. The difference in handling is that these object types are always loaded at init time, whereas transactions are not.
- Replace some calls to (deprecated) xaccAccountGetGUID() with calls to qof_entity_get_guid()
- Fix svn:ignore property to ignore Makefile/Makefile.in in accounts/ko
- Minor updates to HACKING, by Geert Janssens.
- Use SWIG properly to wrap functions to free strings which need to be freed by the caller.
- Fix Bug 590458 - Invoices are incomplete or miss specifications Replace call to gncEntrySetInvoice() with gncInvoiceAddEntry() which is the real function.
- Fix Bug 590900 - "Unable to save to DB" dialog from Business -> Customer -> New Job Allow owner id to be NULL
- Fix bug 593865 - Unable to save to database error when scheduling transactions Allow scheduled transaction to have NULL start date. Will require db to be deleted and recreated.
- Fix index-out-of-range compilation error
- Fix typo in message as pointed out by Joe Dalton.
- Fix some memory leaks
- Add some dbi backend tests to test db save/load. In order to test the mysql backend, the --with-test-mysql-url=URL option must be supplied to configure where URL is the full url (mysql://host[:port]:db:user:password) to access a mysql db. The same is true for postgres, with the --with-test-pgsql-url=URL option.
- Python bindings patches by Mark Jenkins. python_GetNthChild_remove.patch remove the redundant GetNthChild code, gnc_account_nth_child supported python_more_GUID.patch Improve support for GUID python_better_commodity.patch * Removed custom __init__ from GncCommodity, not only is it wrong but the one from GnuCashCoreClass is just fine. * Supported the get_table method For Book * Removed support for direct instantiation of GncCommodityTable. (via gnc_commodity_table_new() ). Only methods and not the constructor function are added to the class now. Python binding users can access a GncCommodityTable instance via Book.get_table() and have no need to use gnc_commodity_table_new(), which the apis advise is for internal use only. python_GncLot.patch * included gnc-lot.h in gnucash_core.i again * Made GncLot class use superclass __init__, it doesn't need its own. python_more_documentation.patch Documentation strings for many classes, which can be viewed in source and with python's help() mechanism. python_business_module_load.patch load the business module, not the business module specific backend python_example_scripts.py example scripts improved, new one added. This new script originally came from this post: http://lists.gnucash.org/pipermail/gnucash-devel/2008-July/023618.html python_authors_update.patch added Legal Aid Manitoba to credit line for Mark Jenkins
- Use "float8" instead of "real" for double field in slots table so that we get an 8 byte float rather than only 4 byte.
- Doubles weren't being loaded properly from sqlite3. Fix that problem by examine more closely the type information returned by libdbi.
- Fix bug where NULL dates on sqlite cause sigsegv
- Updated Slovak translation, copied from the Translation Project.
- Updated Danish translation by Joe Hansen, copied from the Translation Project.
- Updated German translation, inspired by Raffael Luthiger's contribution on 2008-12-31.
- Update of Polish translation by Jacek Baszkiewicz
- Update of Lithuanian translation by Tadas Masiulionis
- Updated Danish glossary by Joe Hansen.
- Updated Danish translation by Joe Hansen, copied from the TP.
- Updated Dutch translation by Erwin Poeze, copied from the Translation Project.
Caveats for Testers
Any 2.3.x version might crash unexpectedly at any point during runtime. If you test some serious work in a 2.3.x release and are using the XML file backend for data storage, make sure you hit "Save" after every non-trivial workstep. If you are using the SQL backend, this is not required as every change is saved immediately to the database.
The documentation has had screenshots updated, however, many help texts usually only refers to the 1.8.x series. Everyone is invited to help improve the documentation; see http://wiki.gnucash.org/wiki/Development on how to get involved.
How can you help?
Testing: Test it and help us discover all bugs that might show up in there. Please enter each and every bug into bugzilla.
Translating: The new release comes with some new translation strings. If you consider contributing a translation, we invite you to test this release already. A string freeze will be announced in one of the later 2.3.x releases. Please check http://wiki.gnucash.org/wiki/Translation_Status for updates on this.
We would like to encourage people to test this and any further releases as much as possible and submit bug reports in order that we can polish GnuCash to be as stable as possible for the 2.4.0 release in a few weeks. Then post any bugs you find to bugzilla
Getting GnuCash
Source code for GnuCash 2.3.6 can be downloaded from multiple locations:
- The GnuCash website
- Sourceforge: bzip2, gzip, all files.
- You can also checkout the sources directly from the subversion repository with this command:
svn co http://svn.gnucash.org/repo/gnucash/trunk gnucash
To install GnuCash, you will need Gnome 2, guile, slib. In addition you will need swig if compiling from subversion.
Win32 binary
The Gnucash 2.3.6 Win32 setup executable can be downloaded from Sourceforge as well.
About the Program
GnuCash is a free, open source accounting program released under the GNU General Public License (GPL) and available for GNU/Linux, *BSD, Solaris, Mac OSX and Microsoft Windows. Programming on GnuCash began in 1997, and its first stable release was in 1998.
GnuCash 2.3.5 (Unstable) released
The GnuCash development team proudly announces GnuCash 2.3.5, the sixth of several unstable 2.3.x releases of the GnuCash Free Accounting Software which will eventually lead to the stable version 2.4.0. With this new release series, GnuCash can use an SQL database using SQLite3, MySQL or PostgreSQL. It runs on GNU/Linux, *BSD, Solaris, Microsoft Windows and Mac OSX.
WARNING: This is an *UNSTABLE* version of Gnucash.
This release is intended for developers and testers who want to help tracking down all those bugs that are still in there.
Make sure you make backups of any files used in testing versions of GnuCash in the 2.3.x series. Although the developers go to great lengths to ensure that no data will be lost we cannot guarantee that your data will not be affected if for some reason GnuCash crashes in testing these releases.
NOTE: The latest stable version is 2.2.9.
PLEASE TEST TEST AND TEST SOME MORE any and all features important to you. Then post any bugs you find to bugzilla
Major changes in the 2.3.x release include;
- In addition to the XML backend, Gnucash can now use a SQLite3, MySQL or PostgreSQL database to store the data. This is a new implementation using libdbi. It supports all features including the business features. In order to build with this, add --enable-dbi to the configure command. In addition to the libdbi-dev package for your distribution, you will also need the appropriate DBD (libdbi driver) package for sqlite3, mysql or postgresql.
- In addition to the current GtkHTML HTML engine used to display reports and graphs, Gnucash can use WebKit. WebKit is the engine used by Google Chrome on Windows and Safari on Apple. In order to build with this, add --enable-webkit to the configure command. You will need an appropriate webkit-dev package. On win32, you will need to download the webkit-1.1.5-win32.zip file from the source repository and put it into the downloads directory of your gnucash build area.
- Updated to AqBanking 3 on Win32.
Changes between 2.3.4 and 2.3.5 include:
- Partly revert r18246: disable writing of "hidden" and "placeholder" so that XML files written by 2.3.5 can be read by 2.2.9
- Avoid CRIT messages when loading root account which has NULL commodity
- Fix compilation problem - add GPOINTER_TO_UINT() cast
- Fix bug 592357: Cannot specify port for database connection. You can now add a port number using ":<port>" (e.g. ":100") to the end of the host specification in the Open and Save As dialog for databases.
- Fix bug 592021: Budget Report: Options to show actual, budgeted and diff don't work
- Fix minor i18n issues. 1) Don't translate gtk stock button labels. 2) Don't split sentences when translating. 3) Exclude formatting from translatable messages when possible
- Updated German translation
- Fix bug 592719 - postgres backend aborts with date problems
- Merge latest pot tempate into all .po translation files
- Add win32 version of gmtime_r
- Fix bug 575778: QIF import: fix crash when a security list omits the "T" (type) line
Caveats for Testers
Any 2.3.x version might crash unexpectedly at any point during runtime. If you test some serious work in a 2.3.x release and are using the XML file backend for data storage, make sure you hit "Save" after every non-trivial workstep. If you are using the SQL backend, this is not required as every change is saved immediately to the database.
The documentation has had screenshots updated, however, many help texts usually only refers to the 1.8.x series. Everyone is invited to help improve the documentation; see http://wiki.gnucash.org/wiki/Development on how to get involved.
How can you help?
Testing: Test it and help us discover all bugs that might show up in there. Please enter each and every bug into bugzilla.
Translating: The new release comes with some new translation strings. If you consider contributing a translation, we invite you to test this release already. A string freeze will be announced in one of the later 2.3.x releases. Please check http://wiki.gnucash.org/wiki/Translation_Status for updates on this.
We would like to encourage people to test this and any further releases as much as possible and submit bug reports in order that we can polish GnuCash to be as stable as possible for the 2.4.0 release in a few weeks. Then post any bugs you find to bugzilla
Getting GnuCash
Source code for GnuCash 2.3.5 can be downloaded from multiple locations:
- The GnuCash website
- Sourceforge: bzip2, gzip, all files.
- You can also checkout the sources directly from the subversion repository with this command:
svn co http://svn.gnucash.org/repo/gnucash/trunk gnucash
To install GnuCash, you will need Gnome 2, guile, slib. In addition you will need swig if compiling from subversion.
Win32 binary
The Gnucash 2.3.5 Win32 setup executable can be downloaded from Sourceforge as well.
About the Program
GnuCash is a free, open source accounting program released under the GNU General Public License (GPL) and available for GNU/Linux, *BSD, Solaris, Mac OSX and Microsoft Windows. Programming on GnuCash began in 1997, and its first stable release was in 1998.
GnuCash 2.3.4 (Unstable) released
The GnuCash development team proudly announces GnuCash 2.3.4, the fifth of several unstable 2.3.x releases of the GnuCash Free Accounting Software which will eventually lead to the stable version 2.4.0. With this new release series, GnuCash can use an SQL database using SQLite3, MySQL or PostgreSQL. It runs on GNU/Linux, *BSD, Solaris, Microsoft Windows and Mac OSX.
WARNING: This is an *UNSTABLE* version of Gnucash.
This release is intended for developers and testers who want to help tracking down all those bugs that are still in there.
Make sure you make backups of any files used in testing versions of GnuCash in the 2.3.x series. Although the developers go to great lengths to ensure that no data will be lost we cannot guarantee that your data will not be affected if for some reason GnuCash crashes in testing these releases.
NOTE: The latest stable version is 2.2.9.
PLEASE TEST TEST AND TEST SOME MORE any and all features important to you. Then post any bugs you find to bugzilla
Major changes in the 2.3.x release include;
- In addition to the XML backend, Gnucash can now use a SQLite3, MySQL or PostgreSQL database to store the data. This is a new implementation using libdbi. It supports all features including the business features. In order to build with this, add --enable-dbi to the configure command. In addition to the libdbi-dev package for your distribution, you will also need the appropriate DBD (libdbi driver) package for sqlite3, mysql or postgresql.
- In addition to the current GtkHTML HTML engine used to display reports and graphs, Gnucash can use WebKit. WebKit is the engine used by Google Chrome on Windows and Safari on Apple. In order to build with this, add --enable-webkit to the configure command. You will need an appropriate webkit-dev package. On win32, you will need to download the webkit-1.1.5-win32.zip file from the source repository and put it into the downloads directory of your gnucash build area.
- Updated to AqBanking 3 on Win32.
Changes between 2.3.3 and 2.3.4 include:
- Changes in database schema. The "helper" tables (slots, recurrences, taxtable_entries) which can have multiple entries per object now have a unique, auto-increment integer primary key. Dates and date/times stored in the database are now stored in DATE and TIMESTAMP columns (mysql and pgsql). The "hidden" and "placeholder" account flags are now stored in individual fields in the accounts table. A new budget_amounts table contains 1 record per budget per account per period and contains the budget amount for that account/period. The scheduled transaction end date is now being stored. The versions table now has the table name as the primary key, and NULL values are disallowed for all fields.
Because of these changes, you will need to delete and recreate your database. If you want to save your data, save it to XML before upgrading to 2.3.4, upgrade, then load the XML file and save to a new database or over your existing database. - The standard report .scm files are now in <install-location>/share/gnucash/guile-modules/gnucash/report/standard-reports. When gnucash is started, it will scan this directory and load each .scm file into the report menu system. This means that if you want to add a new report to gnucash, you only need to copy it into this directory.
- Updated Japanese translation
- Updated Dutch translation
- Updated Danish translation
- Fixed bug 591614: Saving to postgresql causes zombie scheduled transactions.
- Ensure template root account (used for scheduled transactions) is stored even if there are no scheduled transactions
- Accounts can be stored even if commodity=NULL
- Fix bug 589418: commodities were not being stored properly. This should solve the problem of the disappearing commodities.
- Improvements in the budget report:
- For income accounts, the sign of the "difference" column is reversed so that positive values are good (more than budget).
- Fix wrapping problems in budget cells (account labels, negative values, values in certain currencies)
- Budget report can now display negative values in red. This requires use of the Default-CSS stylesheet
- Period dates are now centered properly over the columns for that period
- Add an option to the budget report. If enabled, and an account does not have a budget value for the period, the budget values for all child accounts are added. If the chart of accounts is set up so that only leaf accounts have transactions, this allows budget values to be assigned either to all children and not the parent (they will be summed) or the parent.
- Changed --enable-webkit configure option to --with-html-engine=XXX where XXX is "gtkhtml" (default) or "webkit".
- Merged latest pot template into all .po translation files.
- Fixed signed vs unsigned char pointer type conflicts.
Caveats for Testers
Any 2.3.x version might crash unexpectedly at any point during runtime. If you test some serious work in a 2.3.x release and are using the XML file backend for data storage, make sure you hit "Save" after every non-trivial workstep. If you are using the SQL backend, this is not required as every change is saved immediately to the database.
The documentation has had screenshots updated, however, many help texts usually only refers to the 1.8.x series. Everyone is invited to help improve the documentation; see http://wiki.gnucash.org/wiki/Development on how to get involved.
How can you help?
Testing: Test it and help us discover all bugs that might show up in there. Please enter each and every bug into bugzilla.
Translating: The new release comes with some new translation strings. If you consider contributing a translation, we invite you to test this release already. A string freeze will be announced in one of the later 2.3.x releases. Please check http://wiki.gnucash.org/wiki/Translation_Status for updates on this.
We would like to encourage people to test this and any further releases as much as possible and submit bug reports in order that we can polish GnuCash to be as stable as possible for the 2.4.0 release in a few weeks. Then post any bugs you find to bugzilla
Getting GnuCash
Source code for GnuCash 2.3.4 can be downloaded from multiple locations:
- The GnuCash website
- Sourceforge: bzip2, gzip, all files.
- You can also checkout the sources directly from the subversion repository with this command:
svn co http://svn.gnucash.org/repo/gnucash/trunk gnucash
To install GnuCash, you will need Gnome 2, guile, slib. In addition you will need swig if compiling from subversion.
Win32 binary
The Gnucash 2.3.4 Win32 setup executable can be downloaded from Sourceforge as well.
About the Program
GnuCash is a free, open source accounting program released under the GNU General Public License (GPL) and available for GNU/Linux, *BSD, Solaris, Mac OSX and Microsoft Windows. Programming on GnuCash began in 1997, and its first stable release was in 1998.
Information Générale