[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[5295] branches/1.3
- Subject: SF.net SVN: ledger-smb:[5295] branches/1.3
- From: ..hidden..
- Date: Mon, 03 Dec 2012 07:46:32 +0000
Revision: 5295
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=5295&view=rev
Author: einhverfr
Date: 2012-12-03 07:46:31 +0000 (Mon, 03 Dec 2012)
Log Message:
-----------
Version number changes for 1.3.25
Modified Paths:
--------------
branches/1.3/Changelog
branches/1.3/INSTALL
branches/1.3/LedgerSMB/Form.pm
branches/1.3/LedgerSMB.pm
branches/1.3/VERSION
branches/1.3/dists/rpm/ledgersmb.spec
branches/1.3/dists/source/build.sh
branches/1.3/doc/release_notes
branches/1.3/sql/Pg-database.sql
Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog 2012-12-01 16:30:25 UTC (rev 5294)
+++ branches/1.3/Changelog 2012-12-03 07:46:31 UTC (rev 5295)
@@ -7,7 +7,7 @@
* Fixed pricematrix rows not showing where pricegroups are used (Chris T)
* Fixed missing grant in some cases on cr_coa_to_account (Chris T)
* Fixed letterhead not showing up on emailed invoices (Chris T, h/t Kevin B)
-* Fixed blank screen on posting AR/IS/OE (Chris T)
+* Fixed blank screen on posting AR/IS/OE via FCGI (Chris T)
* Fixed ECA's not distinct on parts screen and search (Chris T, 3550075)
* Fixed error saving imported user with no existing db role (Chris T, 3559844)
* Added ar-transation.csv and ap-transaction.csvn templates (Erik H)
Modified: branches/1.3/INSTALL
===================================================================
--- branches/1.3/INSTALL 2012-12-01 16:30:25 UTC (rev 5294)
+++ branches/1.3/INSTALL 2012-12-03 07:46:31 UTC (rev 5295)
@@ -274,7 +274,9 @@
An alternative method is the 'prepare-company-database.sh' script contributed by
Erik Huelsmann. This script can be useful in creating and populating databases
from the command line and it offers a reference implementation written in BASH
-for how this process is done.
+for how this process is done. The prepare-company-database.sh script is only
+supported on GNU environments, but a prepare-company-database.pl is included
+with nearly identical syntax which is supported everywhere LedgerSMB is.
The 'prepare-company-database.sh' script in the tools/ directory will set
up databases to be used for LedgerSMB. The script should be run as 'root'
Modified: branches/1.3/LedgerSMB/Form.pm
===================================================================
--- branches/1.3/LedgerSMB/Form.pm 2012-12-01 16:30:25 UTC (rev 5294)
+++ branches/1.3/LedgerSMB/Form.pm 2012-12-03 07:46:31 UTC (rev 5295)
@@ -164,8 +164,8 @@
#menubar will be deprecated, replaced with below
$self->{lynx} = 1 if ( ( defined $self->{path} ) && ( $self->{path} =~ /lynx/i ) );
- $self->{version} = "1.3.24";
- $self->{dbversion} = "1.3.24";
+ $self->{version} = "1.3.25";
+ $self->{dbversion} = "1.3.25";
bless $self, $type;
Modified: branches/1.3/LedgerSMB.pm
===================================================================
--- branches/1.3/LedgerSMB.pm 2012-12-01 16:30:25 UTC (rev 5294)
+++ branches/1.3/LedgerSMB.pm 2012-12-03 07:46:31 UTC (rev 5295)
@@ -222,7 +222,7 @@
$CGI::Simple::POST_MAX = -1;
package LedgerSMB;
-our $VERSION = '1.3.24';
+our $VERSION = '1.3.25';
my $logger = Log::Log4perl->get_logger('LedgerSMB');
@@ -242,7 +242,7 @@
$logger->debug("Begin called from \$filename=$filename \$line=$line \$type=$type \$argstr=$argstr ref argstr=".ref $argstr);
$self->{version} = $VERSION;
- $self->{dbversion} = "1.3.24";
+ $self->{dbversion} = "1.3.25";
bless $self, $type;
Modified: branches/1.3/VERSION
===================================================================
--- branches/1.3/VERSION 2012-12-01 16:30:25 UTC (rev 5294)
+++ branches/1.3/VERSION 2012-12-03 07:46:31 UTC (rev 5295)
@@ -1 +1 @@
-1.3.24
+1.3.25
Modified: branches/1.3/dists/rpm/ledgersmb.spec
===================================================================
--- branches/1.3/dists/rpm/ledgersmb.spec 2012-12-01 16:30:25 UTC (rev 5294)
+++ branches/1.3/dists/rpm/ledgersmb.spec 2012-12-03 07:46:31 UTC (rev 5295)
@@ -1,7 +1,7 @@
# RPM spec written for and tested on CentOS 4 and CentOS 5
Summary: LedgerSMB - Open Source accounting software
Name: ledgersmb
-Version: 1.3.24
+Version: 1.3.25
Release: 1
License: GPL
URL: http://www.ledgersmb.org/
Modified: branches/1.3/dists/source/build.sh
===================================================================
--- branches/1.3/dists/source/build.sh 2012-12-01 16:30:25 UTC (rev 5294)
+++ branches/1.3/dists/source/build.sh 2012-12-03 07:46:31 UTC (rev 5295)
@@ -2,7 +2,7 @@
# Simple script to prepare for release
-version="1.3.24";
+version="1.3.25";
build_d="../release";
if test -d $build_d/ledgersmb; then
Modified: branches/1.3/doc/release_notes
===================================================================
--- branches/1.3/doc/release_notes 2012-12-01 16:30:25 UTC (rev 5294)
+++ branches/1.3/doc/release_notes 2012-12-03 07:46:31 UTC (rev 5295)
@@ -1,7 +1,7 @@
RELEASE NOTES
LedgerSMB 1.3
-Latest Revision: 1.3.24, June 17, 2012.
+Latest Revision: 1.3.25, June 17, 2012.
1: Welcome to LedgerSMB
Modified: branches/1.3/sql/Pg-database.sql
===================================================================
--- branches/1.3/sql/Pg-database.sql 2012-12-01 16:30:25 UTC (rev 5294)
+++ branches/1.3/sql/Pg-database.sql 2012-12-03 07:46:31 UTC (rev 5295)
@@ -1020,7 +1020,7 @@
sonumber|1
yearend|1
businessnumber|1
-version|1.3.24
+version|1.3.25
closedto|\N
revtrans|1
ponumber|1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.