summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-04-18 18:34:30 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-04-18 18:34:30 +0000
commit911f279b80094f075f825f3753f09a5722a57032 (patch)
tree8e433809287318ee818b7a6a0fc54fbd7bb82118
parent050ffd78fe277573610733d22781137aab3b1da2 (diff)
Final update before freeze for 1.2.4 release
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1093 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r--Changelog3
-rw-r--r--INSTALL8
-rw-r--r--UPGRADE3
-rw-r--r--doc/release_notes12
4 files changed, 15 insertions, 11 deletions
diff --git a/Changelog b/Changelog
index 4324bbc8..06e2e025 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,9 @@ Changelog for 1.2.4
* Fixed inconsistant error when setting to recur 0 times (Chris T)
* Fixed Access Denied when sending email (CHris T)
* Added Makefile.PL as optional means of dependency checking (experimental, Chris T)
+* Updated INSTALL file to use correct globaldbh syntax (Chris T)
+* Updated UNGRADE file to recommend reading INSTALL first (Chris T)
+
Changelog for 1.2.3
* Corrected per-user locale selection (Seneca)
diff --git a/INSTALL b/INSTALL
index 0a4f852e..f90ec25b 100644
--- a/INSTALL
+++ b/INSTALL
@@ -305,9 +305,11 @@ DBConnect: dbi:Pg:dbname=ledgersmb;host=localhost;port=5432
And that section of ledger-smb.conf looks like:
[globaldb]
-DBConnect: dbi:Pg:dbname=ledgersmb;host=localhost;port=5432
-DBUserName: ledgersmb
-DBPassword: MYROLEPASSWORD
+DBname = ledgersmb
+DBhost = localhost
+DBport = 5432
+DBUserName = ledgersmb
+DBPassword = MYROLEPASSWORD
OTHER ISSUES:
diff --git a/UPGRADE b/UPGRADE
index 14e672f6..54be665a 100644
--- a/UPGRADE
+++ b/UPGRADE
@@ -17,6 +17,9 @@ Before you begin, make sure that you are running at least PostgreSQL 8.0. If
you are running a prior version, you will need to dump your data, upgrade the
database server and restore the data before proceeding.
+You may want to review the INSTALL file as well, as common troubleshooting
+information and more detail may be found there.
+
MANUAL UPGRADE:
===============================================================================
diff --git a/doc/release_notes b/doc/release_notes
index 5e32f3f6..8ce613ef 100644
--- a/doc/release_notes
+++ b/doc/release_notes
@@ -167,12 +167,8 @@ include a description of what you are trying to accomplish.
KNOWN ISSUES:
==============================
-Invoice and order data entry screens display incorrect total. Correct amount
-is posted to the database, and invoices print properly, however. This is a
-display problem only. A fix is expected to be available from the development
-team shortly after this version is released but will not not have been through
-full testing and this bug is not considered to be as severe as the
-bugs that are fixed in this release. You can either upgrade to the latest svn
-release in branches/1.2 or you can email a request to the list for the fix.
-
+The POS printing system gives an access denied message because the printer
+triggers the directory transversal checks. To work around this problem, ensure
+that you do not need to use absolute paths for the printer program (use lpr or
+put netdirect.pl in /usr/local/bin and reference without the full path).