Hi all,
With LedgerSMB 1.7.0-beta1 out for nearly 2 months now and without
significant findings so far, the project team has started the final release
process.
This mail is both to announce that we're expecting to release 1.7.0 in a
few weeks as well as a request for contributions: if you would like to
donate to our community and don't know how? Translating LedgerSMB to a
language you know will be of great help!
Getting started with translating is as easy as creating an account on
Transifex (https://transifex.com) and joining the LedgerSMB project there (
https://www.transifex.com/ledgersmb/ledgersmb/dashboard/).
Your updated translations will automatically be included in all releases
where applicable (from the latest 1.7 to any releases further 1.6 and 1.5
releases yet to come).
The 1.7 release mainly features multiple currency rates per currency per
day. Other development effort has been spent in building more tests so that
test coverage has increased from 29% at the time of the 1.6.0 release (May
2018) to 41% on the 1.7.0-beta1 release.
Regards,
--
Bye,
Erik.
http://efficito.com -- Hosted accounting and ERP.
Robust and Flexible. No vendor lock-in.
Hi all,
I am in desperate need of help.
I have now for months been going over Accounting packages that would be
suitable for my small business.
Have tried so many and most fall down somewhere. Have been looking at SMB
for the same period, however for me who is basically and end user to set
this up is a nightmare.
I have tried but gave up as did not understand what I was doing.
In short I need someone to give me a hand to set this up on my Windows PC.
Ideally if you are in Australia so we can do it via Teamviewer if not I
will work around your time
Really hope someone can assist here, so far it has cost me a fortune on
other packages that are just not up to what I SMB is and can do what i need
it too
--
Regards
Terry McGrane
Accounts Administration
The LedgerSMB development team is happy to announce yet another new
version of its open source ERP and accounting application.
This release contains the following fixes and improvements:
Changelog for 1.6.11
* Add CSS indentation to hierarchical financial statements (Erik H)
* Fix random setup.pl errors due to assumed-available credentials (Erik H)
* Fix failure in setup.pl when initial user exists in the database (Erik H)
* Fix SQL Ledger version-comparisons when upgrading to LedgerSMB (Yves L)
* Fix regression when running in a schema other than 'public' (Erik H)
Erik H is Erik Huelsmann
Yves L is Yves Lavoie
For installation instructions and system requirements, see
https://github.com/ledgersmb/LedgerSMB/blob/1.6.11/README.md
The release can be downloaded from our download site at
https://download.ledgersmb.org/f/Releases/1.6.11
The release can be downloaded from GitHub at
https://github.com/ledgersmb/LedgerSMB/releases/tag/1.6.11
Or pulled from Docker Hub using the command
$ docker pull ledgersmb/ledgersmb:1.6.11
These are the sha256 checksums of the uploaded files:
61d41b0ba75c80ce99108b0c6bdf06d9f9b95833397ecb29b6dea087c70a8b67 ledgersmb-1.6.11.tar.gz
b525207d5fdd23f325e08059c155293b1fc3e0ab26b6d98efff77328dc2ef273 ledgersmb-1.6.11.tar.gz.asc
The LedgerSMB development team is happy to announce yet another new
version of its open source ERP and accounting application.
This release contains the following fixes and improvements:
Changelog for 1.5.25
* Fix regression when running in a schema other than 'public' (Erik H)
Erik H is Erik Huelsmann
For installation instructions and system requirements, see
https://github.com/ledgersmb/LedgerSMB/blob/1.5.25/README.md
The release can be downloaded from our download site at
https://download.ledgersmb.org/f/Releases/1.5.25
The release can be downloaded from GitHub at
https://github.com/ledgersmb/LedgerSMB/releases/tag/1.5.25
Or pulled from Docker Hub using the command
$ docker pull ledgersmb/ledgersmb:1.5.25
These are the sha256 checksums of the uploaded files:
60bf5520a10f870d5c9f2b0ce620262f376fcc986011d6e00fc21ac6e8fd87a0 ledgersmb-1.5.25.tar.gz
369da04c42cb94888e48b4db3c41a2f376ae5fbd9695041bcfee14d7d3173eba ledgersmb-1.5.25.tar.gz.asc
Hi,
In my current installation of LedgerSMB, the tables are in a schema other
than public, because I installed it in a database where there are other
data in schema public. (The reason I did that is that I want to link tables
in schema public and LedgerSMB tables, but I have not done it yet.)
I could make it work relatively painlessly with LedgerSMB 1.3 by setting
db_namespace in ledgersmb.conf.
Recently (that is, very late!) I wanted to upgrade to LedgerSMB 1.5.24
(not 1.6 because my server is still under Debian stretch). I think I could
upgrade the database correctly with setup.pl, but when running login.pl it
will not work because, according to Postgresql's logs, it insists on trying
to call the stored procedure public.setting_get, which does not exist.
Although I do not know perl, I tried to read the code to understand what
is going on. If I understood well, stored procedures are called by calling
directly or indirectly the perl function call_procedure in module PGObject,
which sets the schema to public when it is not specified. However, module
LedgerSMB also contains a function call_procedure which correctly sets the
schema, so the problem seems to be that sometimes PGObject's call_procedure
is called directly instead of module LedgerSMB's. I do not understand why,
because I do not know what constructs like $self->call_procedure or
__PACKAGE__->call_procedure do, but anyway this is very annoying for me,
because it means that LedgerSMB 1.5 just will not work with db_namespace
set to anything else than public.
Was this problem known? Is it corrected in a later version?
Regards.