*** empty log message ***
This commit is contained in:
parent
f2a167e0ed
commit
f4e4cd2db8
2 changed files with 10 additions and 10 deletions
12
NEWS
12
NEWS
|
|
@ -3,12 +3,6 @@
|
||||||
|
|
||||||
* 2.5
|
* 2.5
|
||||||
|
|
||||||
- A new configure option "--disable-emacs" will disable generation of
|
|
||||||
transaction and entry location info, which is used by ledger.el and
|
|
||||||
the "write" command. If you use neither of these, then disabling
|
|
||||||
them will cut textual parsing time in half, and binary loading time
|
|
||||||
by a third.
|
|
||||||
|
|
||||||
- Added a new "csv" command, for outputting results in CSV format.
|
- Added a new "csv" command, for outputting results in CSV format.
|
||||||
|
|
||||||
- Added a new value expression regexp command:
|
- Added a new value expression regexp command:
|
||||||
|
|
@ -16,6 +10,12 @@
|
||||||
|
|
||||||
- Added new @min(x,y) and @max(x,y) value expression functions.
|
- Added new @min(x,y) and @max(x,y) value expression functions.
|
||||||
|
|
||||||
|
- A new configure option "--disable-emacs" will disable generation of
|
||||||
|
transaction and entry location info, which is used by ledger.el and
|
||||||
|
the "write" command. If you use neither of these, then disabling
|
||||||
|
them will cut textual parsing time in half, and binary loading time
|
||||||
|
(and cache file size) by a third.
|
||||||
|
|
||||||
- Effective dates may now be specified for entries:
|
- Effective dates may now be specified for entries:
|
||||||
|
|
||||||
2004/10/03=2004/09/30 Credit card company
|
2004/10/03=2004/09/30 Credit card company
|
||||||
|
|
|
||||||
|
|
@ -13,15 +13,15 @@ namespace ledger {
|
||||||
static unsigned long binary_magic_number = 0xFFEED765;
|
static unsigned long binary_magic_number = 0xFFEED765;
|
||||||
#ifdef USE_EDITOR
|
#ifdef USE_EDITOR
|
||||||
#ifdef DEBUG_ENABLED
|
#ifdef DEBUG_ENABLED
|
||||||
static unsigned long format_version = 0x00020583;
|
static unsigned long format_version = 0x00020585;
|
||||||
#else
|
#else
|
||||||
static unsigned long format_version = 0x00020582;
|
static unsigned long format_version = 0x00020584;
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
#ifdef DEBUG_ENABLED
|
#ifdef DEBUG_ENABLED
|
||||||
static unsigned long format_version = 0x00020503;
|
static unsigned long format_version = 0x00020505;
|
||||||
#else
|
#else
|
||||||
static unsigned long format_version = 0x00020502;
|
static unsigned long format_version = 0x00020504;
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue