Commit Graph

554 Commits

Author SHA1 Message Date
John Ralls
38527d08f1 Bug 775912 - Tips of the Day shows content only once very 3 times
Remove extra line-feeds from CMake generation of tips_of_the_day.list. They're unneeded and mess up windows parsing the file.
2016-12-13 11:53:23 -08:00
Chris Good
ab35b571c3 Add Tip Of The Day re using multiple windows to do comparisons - Bug 762800
Note: this introduces an untranslated string to the stable series
2016-03-13 14:06:20 +01:00
Geert Janssens
acdd5d0208 Bug 744157 - Tip about subaccount is confusing 2016-02-22 16:39:47 +01:00
Prayag Verma
17033c64d8 Fix Typos in doc/README.translator.txt
Convert file to UTF-8
Spelling mistakes fixed -
begining > beginning
tranlation > translation
2016-02-01 18:13:55 +01:00
RobGowin
53b7c51632 Support CMake 3.0 for Debian Jessie 2016-01-14 09:58:29 -08:00
Rob Gowin
1d474968ca Add ability to build GnuCash with CMake
Backported from master.
2016-01-12 14:47:11 -08:00
Mike Alexander
a61f61406f Fix line endings in repository to match recent change to .gitattributes 2014-12-11 02:55:06 -05:00
Mike Evans
5e4fbfe8c3 Bug 721929 - Importing a customer list causes a crash.
Seems I omitted some things.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23677 57a11ea4-9604-0410-9ed3-97b8803252fd
2014-01-10 12:14:08 +00:00
Cristian Marchi
6bf62a3679 Remove double spaces from translatable strings. Patch submitted by Aurimas Fišeras.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23125 57a11ea4-9604-0410-9ed3-97b8803252fd
2013-08-04 19:04:39 +00:00
Cristian Marchi
852c3ed568 More consistency for UI strings. Patch by Aurimas Fišeras.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23120 57a11ea4-9604-0410-9ed3-97b8803252fd
2013-08-02 18:34:40 +00:00
John Ralls
5fa2cf898c More Makefile changes to get distcheck to pass
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22851 57a11ea4-9604-0410-9ed3-97b8803252fd
2013-03-30 21:31:17 +00:00
John Ralls
06ef0c85c1 Some cleanup to get make-dist to build in the tarball
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22847 57a11ea4-9604-0410-9ed3-97b8803252fd
2013-03-29 22:56:03 +00:00
Geert Janssens
bf34e32303 Bug #680086 - Each Tip of the Day has an n shown at the end
BP

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22721 57a11ea4-9604-0410-9ed3-97b8803252fd
2013-01-22 10:14:51 +00:00
Geert Janssens
f6e626276b Bug #604520 Explain scope of find transaction tool.
Signed-off-by: Yawar Amin <yawar.amin@gmail.com>

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22711 57a11ea4-9604-0410-9ed3-97b8803252fd
2013-01-19 09:25:27 +00:00
Frank H. Ellenberger
7ddef0069b Bug #684719 - Man pages for gnc-fq-* perl scripts
first (static) publishing of the pod extracted man pages
until we have some consense.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22424 57a11ea4-9604-0410-9ed3-97b8803252fd
2012-09-24 16:42:28 +00:00
Geert Janssens
ebcf0f7d8a Added new tip for scheduled transactions
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22348 57a11ea4-9604-0410-9ed3-97b8803252fd
2012-08-24 14:38:07 +00:00
Geert Janssens
5210dea832 Modify one tip of the day to illustrate the use of \n in tips
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22261 57a11ea4-9604-0410-9ed3-97b8803252fd
2012-07-07 16:06:36 +00:00
Geert Janssens
e0e41d221f [PATCH] Fix tip-of-the-day with gcc-4.7
When making the text file tips-of-the-day, GnuCash expects 'gcc -E' to
preserve at least one of the whitespace lines between entries. However, this
relies on behavior of 'gcc -E' that isn't actually part of the spec, and is
a historical accident. And it changed in gcc-4.7, such that all the
whitespace is removed.

Work around this by explicitly adding a newline in the sed expression.

Pre gcc-4.7 there will be two newlines between tips, but this has no impact
on the tip displaying code.

Patch by Bill Nottingham
BP

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22246 57a11ea4-9604-0410-9ed3-97b8803252fd
2012-06-27 20:33:03 +00:00
Mike Evans
105ab023f4 New plugin to import customers and vendors from a csv type file.
From a patch by Sebastian Held.
Again the CSV file is of fixed number of fields, similar to invoice/bill importer.
Please test this.
Field list:
id,  company,  name,  addr1,  addr2,  addr3,  addr4,  phone,  fax,  email,  notes,  shipname,  shipaddr1,  shipaddr2,  shipaddr3,  shipaddr4,  shipphone  shipfax,  shipemail
Vendors don't have shipping information so even though the fields have to exist, leave them empty.
The id field is optional, if empty a new id will be chosen. If an id is used this will UPDATE
a vendor/customer with the same id.  This may not be what the user wants.  Maybe this should
be optional/selectable behaviour.
To enable the plugin, add the line:
(gnc:module-load "gnucash/plugins/customer_import" 0)
to ~/.gnucash/config.user

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22065 57a11ea4-9604-0410-9ed3-97b8803252fd
2012-02-28 18:38:26 +00:00
Geert Janssens
e91e669858 Bug #667581 - Migrate Invoice / Bill plugin to Builder
Add two new files that were in the original patch also.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@21876 57a11ea4-9604-0410-9ed3-97b8803252fd
2012-01-22 21:25:51 +00:00
Mike Evans
df94d1c936 Bug 667581 - Migrate Invoice / Bill plugin to Builder
Patch supplied by Bob Fewell.  Many thanks.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@21869 57a11ea4-9604-0410-9ed3-97b8803252fd
2012-01-21 12:20:49 +00:00
Christian Stimming
411261ae17 Remove obsolete documentation texts.
Those are so insanely obsolete, it hurts our eyes.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@21568 57a11ea4-9604-0410-9ed3-97b8803252fd
2011-11-14 19:43:20 +00:00
Micha Lenk
f77309616d Don't ignore --docdir from ./configure for documentation destination dir
This was discussed in more detail here:
http://lists.gnucash.org/pipermail/gnucash-devel/2011-June/032066.html

This might change the default location where the documentation is installed to.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20736 57a11ea4-9604-0410-9ed3-97b8803252fd
2011-06-06 21:02:49 +00:00
Cristian Marchi
bd62c8e774 Updated Traditional Chinese translation, glossary and win32 txt.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20395 57a11ea4-9604-0410-9ed3-97b8803252fd
2011-03-11 12:53:52 +00:00
Cristian Marchi
6086bd725c Add Traditional Chinese translation for win32 package system.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20357 57a11ea4-9604-0410-9ed3-97b8803252fd
2011-03-01 19:44:05 +00:00
Christian Stimming
59cbfb2b6f Bug #640357: Adding very limited Perl-Support for doxygen
Adding Doxygen commands to the Perl-scripts in the sources

I searched for every *.pl file in the GnuCash source and added Doxygen commands
like @file, @brief, @author to better include them in doxygen.

Patch by Christoph Holtermann.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20267 57a11ea4-9604-0410-9ed3-97b8803252fd
2011-02-10 19:40:38 +00:00
Christian Stimming
002352559b Bug #641646: Fix incorrect tip on switching between multiple tabs
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20245 57a11ea4-9604-0410-9ed3-97b8803252fd
2011-02-06 09:49:52 +00:00
Christian Stimming
59ee53bf2f Bug #639172: Remove "Warning!! This is a DEVELOPMENT version .." tip of the day
Also, to my knowledge the docs don't contain a "what's new in 2.4" section,
so I removed that tip as well.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20071 57a11ea4-9604-0410-9ed3-97b8803252fd
2011-01-11 21:07:54 +00:00
Christian Stimming
039c603bf8 Bug #636988: Tip about "New default date" by Tarlika Elisabeth Schmitz and Derek Atkins
Contributed at gnucash-user@gnucash.org 2010-09-16

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20014 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-12-31 12:25:18 +00:00
Mike Alexander
6eb32d9d50 Get rid of the rest of the gnc-prices man page, r19921 is incomplete
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19926 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-12-12 06:33:50 +00:00
Christian Stimming
5c8663189a Remove obsolete gnc-prices man page
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19921 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-12-10 10:25:33 +00:00
Geert Janssens
ccb89d5d52 Remove obsolete example files: also remove them from the makefile.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19656 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-10-14 20:41:00 +00:00
Geert Janssens
da08ea90ef Remove incompatible example files (X-Account) and update the README file
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19655 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-10-14 13:20:28 +00:00
Geert Janssens
807c8d29e4 Update man page following the recent removal of command line options.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19508 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-08-29 19:58:54 +00:00
Geert Janssens
207c54a680 Future default file extension is .gnucash, so
- rename example files to this extension
- replace references to the old extension where appropriate

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19319 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-06-30 20:17:37 +00:00
Geert Janssens
1351dc1c37 Add missing UTF-8 BOM
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19282 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-06-21 15:55:51 +00:00
Geert Janssens
936a1f9721 Add utf-8 prefix, so the Windows installer interprets the file properly
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19275 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-06-19 08:17:59 +00:00
Geert Janssens
9451e7cd58 Fix encoding issues in Windows README file and translate last sentence.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19271 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-06-17 09:57:25 +00:00
Geert Janssens
427ca31992 Add Latvian readme file for Windows
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19270 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-06-17 09:34:29 +00:00
Geert Janssens
5e65645caf Bug #619709 - Upgrade Inno Setup to 5.3.x to use utf-8 in .iss script, patch by Tao Wang
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19267 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-06-16 16:18:33 +00:00
Christian Stimming
28a9de6ab8 Set eol-style for win32-bin.txt to CRLF because this file should view correctly on win32 systems
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19221 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-06-03 19:56:12 +00:00
Geert Janssens
7ae2aa87cd Reapply Simplified Chinese patches
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19168 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-05-15 10:27:50 +00:00
Geert Janssens
9be1fe1973 zh_CN translation for Windows Installer, patch by Tao Wang.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19161 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-05-14 08:36:59 +00:00
Geert Janssens
c5227fe013 Bug #616696 - Development version warning string should not include hardcode version.
Third revision.
- Stable Version changed into Stable Series (easier to track automatically)
- Modified motd code to deal with replacement strings
- Changed DEVELOPMENT release tip to separate the Stable Series number from the translatable string.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19080 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-04-28 13:23:27 +00:00
Geert Janssens
3ac9526ac8 Bug #616696 - Development version warning string should not include hardcode version.
* Improve on the previous fix: really display stable version in tooltip, not current version.
* Also revert change of "What's new in GnuCash 2.0" because that's the title actually found
  in the help manual.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19077 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-04-27 19:41:07 +00:00
Geert Janssens
24f0cf01ab Bug #616696 - Development version warning string should not include hardcode version.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19073 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-04-26 17:41:24 +00:00
Christian Stimming
c172bc7ee4 Set the desired line-ending style to the correct value on the server side.
Without the svn:eol-style property, SVN checkouts on windows tend to appear
with varying line endings. The only possible way around this in svn is to
set the expected line endings as svn properties.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18959 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-03-24 19:18:08 +00:00
Geert Janssens
56f6f2c82a Remove redundant entries in EXTRA_DIST
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18722 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-02-24 19:49:28 +00:00
Geert Janssens
939744677f Add dutch translation to the Windows installer.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18718 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-02-24 18:30:30 +00:00
Christian Stimming
14408752ec 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.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18538 57a11ea4-9604-0410-9ed3-97b8803252fd
2009-12-29 20:20:56 +00:00
Christian Stimming
f5babd8853 Bug #602744: Fix broken tip_of_the_day list creation.
Patch in r18417 from bug #602062 was buggy - removing the "-x c" argument.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18438 57a11ea4-9604-0410-9ed3-97b8803252fd
2009-11-23 19:46:55 +00:00
Christian Stimming
f1036b4d16 Bug #602062: Fix hard-coded gcc program name
Patch by Halton Huo.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18417 57a11ea4-9604-0410-9ed3-97b8803252fd
2009-11-16 21:42:55 +00:00
Andreas Köhler
d56a868a42 Fix line endings in README-it.win32-bin.txt.
BP

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17827 57a11ea4-9604-0410-9ed3-97b8803252fd
2009-01-18 16:31:10 +00:00
Andreas Köhler
495d9c9d00 Correct the encoding of README-it.win32-bin.txt.
Patch by Cristian Marchi
BP

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17826 57a11ea4-9604-0410-9ed3-97b8803252fd
2009-01-18 16:09:13 +00:00
Andreas Köhler
8c648d911b Add Italian translation of Win32 installer by Cristian Marchi.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17800 57a11ea4-9604-0410-9ed3-97b8803252fd
2009-01-05 10:40:33 +00:00
Christian Stimming
a3e6a7d3c9 Updates to translation howto, by Zhang Weiwu.
Note that the up-to-date text about this should be in the wiki,
http://wiki.gnucash.org/wiki/Translation
BP

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17633 57a11ea4-9604-0410-9ed3-97b8803252fd
2008-10-20 19:41:44 +00:00
Andreas Köhler
fe11af9045 Merge branches/aqbanking3 (r17287) into trunk.
Port the HBCI import-export module to AqBanking3.  Depending on the aqbanking
version found, either the classic hbci/ module or the new, very similar, module
aqbanking3/ for AqBanking >= 3 is built and installed.  The influence on the
rest of the code is minimal.

BP


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17288 57a11ea4-9604-0410-9ed3-97b8803252fd
2008-07-08 20:35:50 +00:00
Charles Day
8ec7175e04 Minor update to replace a reference to README.patches.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17017 57a11ea4-9604-0410-9ed3-97b8803252fd
2008-03-08 21:05:53 +00:00
Andreas Köhler
c1d35adb01 Add development version warning to the tip of the day list.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16575 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-10-28 15:32:50 +00:00
Joshua Sled
4ab97fb570 Bug#470801: remove dev/unstable-branch item.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16473 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-08-27 22:51:29 +00:00
Christian Stimming
364d4c6035 Add French translation of README by Pierre-Antoine and Spel.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16288 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-07-09 19:23:59 +00:00
Christian Stimming
9fc2192f7a Recode README again to latin1
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16274 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-07-08 12:56:15 +00:00
Christian Stimming
b290342502 Convert windows READMEs to windows line endings.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16273 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-07-08 12:53:40 +00:00
Christian Stimming
e03d4fa74e Recode README; for Inno Setup it must be in latin1, not utf8.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16271 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-07-08 11:50:43 +00:00
Christian Stimming
6209a8ed21 Add German-language README to show during win32 installation.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16267 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-07-08 10:51:32 +00:00
Christian Stimming
4372e29627 Improve win32 readme.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16168 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-06-16 10:18:17 +00:00
Christian Stimming
7d3ab024c1 Add extra README text for win32 binary package. #448143
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16167 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-06-16 09:47:09 +00:00
Christian Stimming
096b68d445 Remove duplicated, unmaintained doc file
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15895 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-04-15 10:11:39 +00:00
David Hampton
498c193a63 Record a couple of user suggestions for things to do with gnucash's
gtkrc file.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15756 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-03-26 03:02:55 +00:00
Joshua Sled
9803684fed Bug#397689: update man page to reflect recent options changes. Make fail-on-unknown-option error point the user to '--help'.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15655 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-02-25 15:08:16 +00:00
Andreas Köhler
2e69bba2db Merge reshuffle-modules (r15315) back into the trunk.
Modules are loaded directly with the g_symbol_* API now while dropping
the dependency on libltdl.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15317 57a11ea4-9604-0410-9ed3-97b8803252fd
2007-01-06 00:41:51 +00:00
Christian Stimming
d809670e2a Updated French README and small corrections to main README by Fabrice Kurz
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15152 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-11-27 14:40:10 +00:00
Christian Stimming
ee447a796e Remove very old and very obsolete build instructions
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15064 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-10-30 13:24:08 +00:00
Christian Stimming
e4c7589cf5 Replace g-wrap with swig in doc files
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15063 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-10-30 13:17:55 +00:00
David Hampton
d8c1435742 Add a tip for raising the accounts menu in a register page.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14670 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-08-14 19:00:20 +00:00
Christian Stimming
d49e4eaeea Add tip about keyboard navigation between tabs. Feel free to change the wording
or add more sentences to this rather short tip. I just didn't want to forget it right now.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14644 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-08-11 20:08:24 +00:00
David Hampton
31b61b71bc Fix the line continuation.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14576 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-07-29 23:49:20 +00:00
Andreas Köhler
4762dbf429 String fixes that have been delayed due to the string freeze.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14493 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-07-13 22:58:55 +00:00
Derek Atkins
a8fe56f887 The trunk is still a development branch. Make it say so.
r12820@cliodev:  warlord | 2006-07-10 19:42:41 -0400


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14483 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-07-10 23:43:00 +00:00
Chris Lyttle
13300a2384 update to release 2.0.0
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14476 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-07-10 00:31:14 +00:00
Christian Stimming
283f6ef6b2 Updated German README which was horribly outdated.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14076 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-05-15 12:47:37 +00:00
Christian Stimming
55a012181f Updated explanation of HBCI features.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14075 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-05-15 12:47:21 +00:00
Christian Stimming
5340a658ec Add MT940 example file for testing mt940 import
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13959 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-05-08 19:57:10 +00:00
Christian Stimming
4b2f9b705e Properly quote marks. Bug #339731.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13861 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-04-26 09:11:38 +00:00
Derek Atkins
58d55d0822 Two string fixes.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13800 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-04-18 18:05:14 +00:00
Joshua Sled
e65ef1b051 Remove web browser "report".
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13392 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-02-26 14:53:37 +00:00
David Hampton
fcdf57037a Add the example gtkrc-2.0.gnucash file to the tarball.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13370 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-02-23 22:25:02 +00:00
Neil Williams
fc77d038a1 hint for osx packagers re: automake1.4 - still a problem
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13038 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-01-29 23:01:30 +00:00
Derek Atkins
36f92f2d23 Thomas Klausner's NetBSD patch.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12928 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-01-22 00:27:11 +00:00
Chris Shoemaker
fc02baaa87 Add 'Makefile' as a dependency for targets that are generated
from scriptlets in Makefile.  That way, if the generating scriptlet is
changed, (or the Makefile is regenerated) the target will also be remade.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12350 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-01-14 03:56:53 +00:00
Neil Williams
1a20f33cf6 typos
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12249 57a11ea4-9604-0410-9ed3-97b8803252fd
2006-01-03 19:27:54 +00:00
Neil Williams
57754a6abc Modifying Scott's 64bit patch to work on OSX
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11991 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-11-20 18:53:20 +00:00
David Hampton
31148dfec7 Document the devel packages needed to compile gnucash on FC4.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11895 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-11-09 23:33:36 +00:00
Christian Stimming
58f361a0c5 Remove automatic call to ./configure from ./autogen.sh.
2005-11-09  Christian Stimming  <stimming@tuhh.de>

        * macros/autogen.sh: Remove the automatic call to ./configure
        * from
        autogen.sh; instead, only print a reminder that from now on,
        ./configure has to be called separately.



git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11890 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-11-09 20:51:03 +00:00
Neil Williams
a6c9728a2d new file name
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11862 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-11-06 15:38:59 +00:00
Neil Williams
33f582de4b updated osx advice
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11858 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-11-06 14:23:03 +00:00
Neil Williams
c0aba82934 Document some OSX-specific build solutions
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11856 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-11-06 13:59:07 +00:00
Neil Williams
7add4d3c08 remove RAW-NOTES
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11853 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-11-06 13:16:09 +00:00
Neil Williams
2dca39c0e9 Making RAW-NOTES available to doxygen
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11852 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-11-06 13:13:50 +00:00
Neil Williams
cc79c69cda converting RAW-NOTES to Doxygen documentation
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11851 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-11-06 13:12:06 +00:00