[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[5208] branches/1.3



Revision: 5208
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=5208&view=rev
Author:   einhverfr
Date:     2012-11-19 07:21:14 +0000 (Mon, 19 Nov 2012)
Log Message:
-----------
Version number changes and release note sections for 1.3.24

Modified Paths:
--------------
    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/LedgerSMB/Form.pm
===================================================================
--- branches/1.3/LedgerSMB/Form.pm	2012-11-19 04:32:43 UTC (rev 5207)
+++ branches/1.3/LedgerSMB/Form.pm	2012-11-19 07:21:14 UTC (rev 5208)
@@ -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.23";
-    $self->{dbversion} = "1.3.23";
+    $self->{version}   = "1.3.24";
+    $self->{dbversion} = "1.3.24";
 
     bless $self, $type;
 

Modified: branches/1.3/LedgerSMB.pm
===================================================================
--- branches/1.3/LedgerSMB.pm	2012-11-19 04:32:43 UTC (rev 5207)
+++ branches/1.3/LedgerSMB.pm	2012-11-19 07:21:14 UTC (rev 5208)
@@ -222,7 +222,7 @@
 $CGI::Simple::POST_MAX = -1;
 
 package LedgerSMB;
-our $VERSION = '1.3.23';
+our $VERSION = '1.3.24';
 
 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.23";
+    $self->{dbversion} = "1.3.24";
     
     bless $self, $type;
 

Modified: branches/1.3/VERSION
===================================================================
--- branches/1.3/VERSION	2012-11-19 04:32:43 UTC (rev 5207)
+++ branches/1.3/VERSION	2012-11-19 07:21:14 UTC (rev 5208)
@@ -1 +1 @@
-1.3.23
+1.3.24

Modified: branches/1.3/dists/rpm/ledgersmb.spec
===================================================================
--- branches/1.3/dists/rpm/ledgersmb.spec	2012-11-19 04:32:43 UTC (rev 5207)
+++ branches/1.3/dists/rpm/ledgersmb.spec	2012-11-19 07:21:14 UTC (rev 5208)
@@ -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.23
+Version: 1.3.24
 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-11-19 04:32:43 UTC (rev 5207)
+++ branches/1.3/dists/source/build.sh	2012-11-19 07:21:14 UTC (rev 5208)
@@ -2,7 +2,7 @@
 
 # Simple script to prepare for release
 
-version="1.3.23";
+version="1.3.24";
 build_d="../release";
 
 if test -d $build_d/ledgersmb; then

Modified: branches/1.3/doc/release_notes
===================================================================
--- branches/1.3/doc/release_notes	2012-11-19 04:32:43 UTC (rev 5207)
+++ branches/1.3/doc/release_notes	2012-11-19 07:21:14 UTC (rev 5208)
@@ -1,7 +1,7 @@
 RELEASE NOTES
 LedgerSMB 1.3
 
-Latest Revision:  1.3.23, June 17, 2012.
+Latest Revision:  1.3.24, June 17, 2012.
 
 1:  Welcome to LedgerSMB
 
@@ -15,6 +15,7 @@
 
 * Perl 5.8.
 * Apache, IIS, or other web server that supports CGI.
+        * As of 1.3.24, FCGI is experimentally supported as is Plack-Starlet
 * PostgreSQL 8.3 or higher.
 * Any operating system that supports the above environment.
 * The following CPAN modules:
@@ -131,6 +132,27 @@
 is.  Future versions will include such hooks in at least the ledgersmb.css
 provided.
 
+2.9:  Partial Support for Code Caching
+
+As of 1.3.24, LedgerSMB now supports caching of expensive dependencies in some
+environments so that response time is minimized.  Currently tested environments
+include Plack-based FCGI and the Perl web server Starlet.  Mod-perl might be
+possible to support at some point.
+
+The current approach is to daemonize the script, pre-load what can be preloaded,
+and then fork/execute/return so that the Perl interpreter does not have to worry
+about state issues and variable scopes in running scripts from the inherited 
+codebase.  This can increase speed greatly but it is still seen as somewhat
+experimental.  Code caching generally poses the possibility of some issues, and
+these are magnified in those areas of the code we have not replaced from
+SQL-Ledger.
+
+If you run into issues here, please file bug reports.  If there are
+showstoppers, you can always run the program via CGI.  Please see our addons
+repository or ask on the email lists if you'd like to run this.  The handler
+scripts are not includede out of the box but will likely be included in future
+versions.
+
 3:  Known Issues
 
 3.1:  Reposting Invoices

Modified: branches/1.3/sql/Pg-database.sql
===================================================================
--- branches/1.3/sql/Pg-database.sql	2012-11-19 04:32:43 UTC (rev 5207)
+++ branches/1.3/sql/Pg-database.sql	2012-11-19 07:21:14 UTC (rev 5208)
@@ -1020,7 +1020,7 @@
 sonumber|1
 yearend|1
 businessnumber|1
-version|1.3.23
+version|1.3.24
 closedto|\N
 revtrans|1
 ponumber|1

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.