Commit Graph

19351 Commits

Author SHA1 Message Date
Geert Janssens
de4b72dc11 Drop install rule for previously removed (scm) config file 2018-02-17 20:09:36 +01:00
John Ralls
cd8f2b7c7e Rename libgnucash/scm/main.scm to utilities.scm
Because it hasn't been "main" since GnuCash became a C program.
2018-02-16 15:52:19 -08:00
John Ralls
32f6958ebb We're done modularizing. About 16 years ago. 2018-02-16 15:41:47 -08:00
John Ralls
8b0d9425e9 Remove some obsolete and unused Scheme files. 2018-02-16 15:37:46 -08:00
John Ralls
26e51339a6 Rework the Scheme target dependencies.
Should fix Bug 793122 - 2.7.3: ninja build fails
along with the nagging parallel-build problems.
2018-02-16 14:28:46 -08:00
John Ralls
772aabf15f Make sure that all of the builder and uimanager files are installed...
in the correct subdirectory.
2018-02-15 16:46:12 -08:00
John Ralls
941cc7dcf5 Rationalize the copying and installation of GtkBuilder and GtkUIManager files.
Trying to catch all of the possible CMake build files as exceptions is
too hard. Name the source files and copy/install them.
2018-02-15 16:08:16 -08:00
John Ralls
a92180f03b Remove superfluous variable. 2018-02-15 16:05:51 -08:00
John Ralls
d97b0f2617 No more Makefile.am. 2018-02-15 16:04:59 -08:00
John Ralls
82ad7aca51 Prevent a couple of divide-by-zero errors.
Might fix Bug 792800.
2018-02-15 15:21:55 -08:00
John Ralls
04408650c1 Fix double free, caused test to crash on Mac. 2018-02-15 11:04:15 -08:00
John Ralls
b3b3783809 Merge branch 'maint' into unstable 2018-02-15 10:56:43 -08:00
John Ralls
1999d85343 Merge Chris Lam's 'maint-fix-45f61a3'. 2018-02-15 10:30:42 -08:00
John Ralls
33d434596d Merge branch 'maint' into unstable 2018-02-15 10:20:57 -08:00
Christopher Lam
3aba4d2dd8 bug 793278 fix for maint
This is caused by commit 766e74096 - min-date was
erroneously thought to mean 'min date of date-list'
but actually meant 'negative infinity date'. This
commit changes date comparison logic to always
return #t when comparing
(gnc:timepair-le min-date date) for
the first date interval.

Test case also created.
2018-02-15 22:46:22 +08:00
fell
2598dbe5e6 Insert lost '#, c-format' lines again into de.po
Additional removed garbage
2018-02-14 19:04:18 +01:00
Geert Janssens
b5e07517f0 Merge branch 'addendum-replace-numeric-with-number' of https://github.com/christopherlam/gnucash into unstable 2018-02-14 18:54:08 +01:00
Christopher Lam
044c172081 bug 793278 fix
This is caused by commit 766e74096 - min-date was
erroneously thought to mean 'min date of date-list'
but actually meant 'negative infinity date'. This
commit changes date comparison logic to always
return #t when comparing (<= min-date date) for
the first date interval.

Test case also created.
2018-02-14 18:36:16 +01:00
Geert Janssens
2e3ec99219 Merge branch 'maint' into unstable 2018-02-14 18:20:18 +01:00
John Clements
e3a00804da fix syntax of example qif file
add (apparently) required separators and transaction descriptions
2018-02-14 18:19:13 +01:00
Geert Janssens
c7b5061e8f Bug 792884 - cmake: gschemas.compiled missing
Fix handling of gschemas.compiled. It should only be called
at install time to regenerate gschemas.compiled based on all
available gschema files. In the installation directory that
can be more than just our own.

Note to force the compilation to run after all gschema files
themselves are installed, the gnome and gnome-utils gschemas
have been moved into a higher-level gschemas directory and
the install command is added there.
2018-02-14 17:56:07 +01:00
fell
5cf58758a2 Merge branch 'translation27DE' into unstable 2018-02-14 14:47:51 +01:00
fell
2a7b0b7b91 Review of PR #268
4910 translated messages, 161 fuzzy translations, 123 untranslated
messages.
14 msgstr lack the keyboard accelerator mark '_'
2018-02-14 14:46:53 +01:00
Christopher Lam
604a2d0864 Bugfix create-commodity-list
45f61a3 had couple bugs.
- value/share was inadvertently swapped
- no need to define comm-list in
  create-commodity-list to return it
2018-02-14 17:15:26 +08:00
Christopher Lam
48a6938e1c Addendum replace numeric to number in scheme
Addendum to e0300d3 - was crashing reports
2018-02-14 17:13:02 +08:00
John Ralls
ae6d2a2340 ADD_DEFINITIONS is obsolete for setting C/CXXFLAGS.
And setting -O0 in a debug build is unnecessary, that's the default.
2018-02-13 16:47:20 -08:00
John Ralls
da0df1c48d Bug 792883 - cmake: no way to turn off -Werror
Prepend settings to CMAKE_C_FLAGS and CMAKE_CXX_FLAGS so that values
supplied on the command line can override the fixed settings.
2018-02-13 14:11:44 -08:00
fell
849b236f7b Merge branch 'maint' into unstable
Conflicts:
	accounts/Makefile.am
	configure.ac
from autotools removed.
2018-02-13 07:46:52 +01:00
fell
a113d71f2c PR #275: Business accounts for India with GST
Commit 5028f66 with adjusted path.
To use it, start e.g.:
$ LANGUAGE=hi LANG=en_IN gnucash
For details about LANG* see
https://wiki.gnucash.org/wiki/Locale_Settings
2018-02-13 06:53:46 +01:00
fell
e2527a98dc Preparation for indian business with GST template 2018-02-13 06:46:05 +01:00
John Ralls
0912a5eaa1 Don't force-set Boost_USE_STATIC_LIBS or Boost_USE_STATIC_RUNTIME.
If you need to do that for your build pass the values in on the cmake
command line.

As for all of the noise about Boost's install name if APPLE, just fix it
with the install name tool. There are instructions at the boost module
in gnucash.modules.
2018-02-12 14:00:09 -08:00
Mechtilde
9c9f4634ed some more German translations 2018-02-12 15:13:14 +01:00
Mechtilde
4e8e4d424d adjust conflicts 2018-02-12 13:13:05 +01:00
Mechtilde
18b6af3d8b correct some typos 2018-02-12 12:02:21 +01:00
Mechtilde
d8e508a376 msgmerge with gnucash-2.7.4.pot 2018-02-12 11:56:34 +01:00
Mechtilde
8c573dbb9f add some more German translations 2018-02-12 11:39:14 +01:00
Mechtilde
97471f2319 add some more German translations 2018-02-12 11:39:14 +01:00
Mechtilde
b6ad4e61e0 add even more German translations 2018-02-12 11:39:14 +01:00
Mechtilde
9207ba8712 add some more German translation 2018-02-12 11:39:14 +01:00
Mechtilde
2914920ff6 add ellipses to fit Common User Access (CUA) under the Tools menu 2018-02-12 11:39:14 +01:00
Mechtilde
2f11fc6fb3 add some German translations 2018-02-12 11:39:14 +01:00
John Ralls
fb7426b60b Spelling Correction. 2018-02-04 10:41:07 -08:00
John Ralls
63089e1f1a Bug 793155 - Gnucash 2.7.4 crashes on launch MacOS 10.13.4 PB1
Crash because Guile couldn't find boot-9.scm, fix by telling it where
to look.
2018-02-04 10:41:07 -08:00
Geert Janssens
a3a42d29ee Prevent installation of cmake related files when building in source
These files are part of the build system, they should not show up in the installation prefix
2018-02-04 10:36:42 +01:00
John Ralls
9e5a481081 Fix off-by-one errors in release count. 2018-02-03 15:06:20 -08:00
John Ralls
c9a17236b9 Release 2.7.4 2018-02-03 08:44:34 -08:00
Geert Janssens
56a58e6528 Bug 787497 - Disabling OFX, AqBanking or python-bindings support cripples the dist build target 2018-02-03 17:10:51 +01:00
John Ralls
e6edb9d8e7 [MacOS]Conditionally set -Wno-unused-local-typedef and -Wno-unknown-attributes.
These flags aren't defined until Xcode8.
2018-02-03 08:07:15 -08:00
Geert Janssens
eb1400c44b Merge branch "maint" into unstable" 2018-02-03 13:01:52 +01:00
Geert Janssens
21431e0b69 Add tooltips to Alpha Vantage key option 2018-02-03 12:54:35 +01:00