LedgerSMB.org Site Feed

Checked
37 minutes 24 seconds ago

1.12.0 Released

1 week ago
1.12.0 Released Security release No LedgerSMB_Team Sun, 12/15/2024 - 02:43 Release candidate No Download https://download.ledgersmb.org/f/Releases/1.12.0/

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:

Highlights of changelog for 1.12.0

Added functionalities
* AR/AP transaction history similar to invoices (#7773)
* More consistency checks in setup.pl (#7649)
* Ability to include documentation in Chart of Account definition files (#7651)
* Highlighting of unapproved payments on invoices and transactions (#7777)
* Enhancements for migrations from 1.3
* Support for external template rendering engines like weasyprint (#8440)

Changed functionalities
* Default cookie names no longer include LedgerSMB version number (#7639)
* Ship To addresses now immutable (#8365)

Removed functionalities
* 'Class' removed from Company and Person entry and search (#8086, #8087)

Bugs fixed
* Countries in setup.pl from Locale::CLDR; use reference data instead (#7648)
* AR/AP items in vouchers can be saved only once (#6895)
* Transactions and invoices with attachments can't be saved (#6018)
* Aging statement shows functional instead of foreign currency amounts (#2162)
* Incorrect starting balance of fx-based reconciliations (#8295)
* Ship To on orders, quotes and purchase invoices (#8329)

For installation instructions and system requirements, see
https://github.com/ledgersmb/LedgerSMB/blob/1.12.0/README.md

The release can be downloaded from our download site at
https://download.ledgersmb.org/f/Releases/1.12.0

The release can be downloaded from GitHub at
https://github.com/ledgersmb/LedgerSMB/releases/tag/1.12.0

Or pulled from the GitHub Container Registry
$ docker pull ghcr.io/ledgersmb/ledgersmb:1.12.0

Or pulled from Docker Hub using the command
$ docker pull ledgersmb/ledgersmb:1.12.0

These are the sha256 checksums of the uploaded files:

26553fa962b938d36af9376206bfce6e72151447c7e01ec51b7f6b1c19580d6c ledgersmb-1.12.0.tar.gz
8f977454e6d34c497d043f7160ebe576ebd4d0b123331738e04268e913066b10 ledgersmb-1.12.0.tar.gz.asc

Release 1.12
LedgerSMB_Team

Preparing LedgerSMB 1.12 for first use

1 week 1 day ago
Preparing LedgerSMB 1.12 for first use

 This page explains how to set up LedgerSMB's first company after having completed installation, e.g. through the docker-compose.yml file. Please note that your full URL may differ depending on your installation method.

In case you just completed the quick-start instructions, the base URL at which LedgerSMB is accessible is http://localhost:5762 (If you have a full production setup, you shouldn't need the port indicator [the ":5762" part]). There are two URLs (entry-points) you can use to access the application, each with a specific purpose:

  • /setup.pl [full URL: http://localhost:5762/setup.pl ] is the main tool for the database admin ("postgres" [or "lsmb_dbadmin" if you created it]); it serves to create new companies, create copies of companies, add users to companies and reset user's passwords;
  • /login.pl [full URL: http://localhost:5762/login.pl ] provides access to all other types of users.
Creating the first company

After browsing to setup.pl, the browser should show:

In case the screen only shows the "Database" field, this indicates problems with JavaScript not having loaded correctly. Fill out the fields as follows:

Credentials per set-up method Credential GitHub Quickstart* Installing LedgerSMB 1.11 Super-user login postgres lsmb_admin Password abc <the password used in the installation> Database testcompany testcompany

* Note that the GitHub Quickstart PostgreSQL password can be changed by setting the "POSTGRESS_PASSWORD" environment variable when running the docker-compose command. It's a good idea to use a secure password for production installations!

Confirm the screen by clicking "Create". When the server is done creating the database for the company, a new screen will be returned. This can take up to 20 seconds.

The resulting screen shows:

Click "Skip" in order to skip loading a pre-defined Chart of Accounts. Select a country and click Next to list the pre-defined charts of accounts.

The resulting screen then shows a list of available Charts of Accounts:

The screen above isn't shown when "Skip" was selected in the step before. Clicking "Skip" in this screen skips loading a pre-defined chart of accounts.

Regardless of whether CoA loading was skipped or performed, the following screen will be presented:

Select 'demo' templates for use with LaTeX; select 'xedemo' templates for use with XeLaTeX (which has better support for UTF-8 / accented characters and non-latin character sets). The exact choice made in this step is not highly important: templates can later be changed by loading new ones into the database. After confirming the selection by clicking "Load Templates", the following screen shows:

With this screen, the first user for this company gets created. There are two modes:

  • Import (Yes): Assumes the username already exists in the database (e.g. because it is already used for another company; re-uses the existing username+password)
  • Create (No): Assumes the username does not already exist; will create a new username

The "Assign Permissions" selection determines the rights assigned to the user:

  • "Full Permissions": The user may perform any task in the application
  • "Manage Users": The user has just enough rights to create new users who have appropriate rights

For the purpose of this quick-start guide, enter the following details:

  • Username: first_user
  • Password: first_user
  • Import: No
  • Salutation: Mr
  • First Name: First
  • Last Name: User
  • Employee Number: 1
  • Date of Birth: (today's date)
  • Tax ID/SSN: 1
  • Country: (your country)
  • Assign Permissions: Full Permissions

After confirming these data by clicking the "Create User" button, the following screen shows:

First user login

The "Start Using LedgerSMB" link opens the main application login screen, which can be used to log in using the initial user created above:

Confirming login results in the following page*:

* Note that the picture shows company name "test10", but when succinctly following the instructions, it should show "testcompany".

Database administration of first company

Once the testcompany has been created, it can be logged into through setup.pl as well as through login.pl. When logging in through setup.pl, the following screen with database administration functions shows:

What's next?

The system is now set up for evaluation and testing. The project has multiple channels to contact other users or the developers. Read all about that on the community project resources page.

Any comments as to this specific article? Please sign up to the site and leave your comments below!

ehu Sat, 12/14/2024 - 11:52 Release 1.12
ehu

Preparing LedgerSMB 1.12 for first use

1 week 1 day ago
Preparing LedgerSMB 1.12 for first use

 This page explains how to set up LedgerSMB's first company after having completed installation, e.g. through the docker-compose.yml file. Please note that your full URL may differ depending on your installation method.

In case you just completed the quick-start instructions, the base URL at which LedgerSMB is accessible is http://localhost:5762 (If you have a full production setup, you shouldn't need the port indicator [the ":5762" part]). There are two URLs (entry-points) you can use to access the application, each with a specific purpose:

  • /setup.pl [full URL: http://localhost:5762/setup.pl ] is the main tool for the database admin ("postgres" [or "lsmb_dbadmin" if you created it]); it serves to create new companies, create copies of companies, add users to companies and reset user's passwords;
  • /login.pl [full URL: http://localhost:5762/login.pl ] provides access to all other types of users.
Creating the first company

After browsing to setup.pl, the browser should show:

In case the screen only shows the "Database" field, this indicates problems with JavaScript not having loaded correctly. Fill out the fields as follows:

Credentials per set-up method Credential GitHub Quickstart* Installing LedgerSMB 1.12 Super-user login postgres lsmb_admin Password abc <the password used in the installation> Database testcompany testcompany

* Note that the GitHub Quickstart PostgreSQL password can be changed by setting the "POSTGRESS_PASSWORD" environment variable when running the docker-compose command. It's a good idea to use a secure password for production installations!

Confirm the screen by clicking "Create". When the server is done creating the database for the company, a new screen will be returned. This can take up to 30 seconds.

The resulting screen shows:

Click "Skip" in order to skip loading a pre-defined Chart of Accounts. Select a country and click Next to list the pre-defined charts of accounts.

The resulting screen then shows a list of available Charts of Accounts:

The screen above isn't shown when "Skip" was selected in the step before. Clicking "Skip" in this screen skips loading a pre-defined chart of accounts.

Regardless of whether CoA loading was skipped or performed, the following screen will be presented:

Select 'demo' templates; this is the only set available out of the box. You can develop your own, if that makes sense for your business. After confirming the selection by clicking "Load Templates", the following screen shows:

With this screen, the first user for this company gets created. There are two modes:

  • Import (Yes): Assumes the username already exists in the database (e.g. because it is already used for another company; re-uses the existing username+password)
  • Create (No): Assumes the username does not already exist; will create a new username

The "Assign Permissions" selection determines the rights assigned to the user:

  • "Full Permissions": The user may perform any task in the application
  • "Manage Users": The user has just enough rights to create new users who have appropriate rights

For the purpose of this quick-start guide, enter the following details:

  • Username: first_user
  • Password: first_user
  • Import: No
  • Salutation: Mr
  • First Name: First
  • Last Name: User
  • Employee Number: 1
  • Date of Birth: (today's date)
  • Tax ID/SSN: 1
  • Country: (your country)
  • Assign Permissions: Full Permissions

After confirming these data by clicking the "Create User" button, the following screen shows:

First user login

The "Start Using LedgerSMB" link opens the main application login screen, which can be used to log in using the initial user created above:

Confirming login results in the following page*:

* Note that the picture shows company name "test10", but when succinctly following the instructions, it should show "testcompany".

Database administration of first company

Once the testcompany has been created, it can be logged into through setup.pl as well as through login.pl. When logging in through setup.pl, the following screen with database administration functions shows:

What's next?

The system is now set up for evaluation and testing. The project has multiple channels to contact other users or the developers. Read all about that on the community project resources page.

Any comments as to this specific article? Please sign up to the site and leave your comments below!

ehu Sat, 12/14/2024 - 11:52 Release 1.12
ehu

Installing LedgerSMB 1.12

1 week 1 day ago
Installing LedgerSMB 1.12 Installation from tarballs

This page contains the comprehensive version with the installation instructions for LedgerSMB 1.12 targetting a production installation from release tarballs and deals with these steps:

  • Installing the LedgerSMB Perl module dependencies
  • Configuring the PostgreSQL server
  • Configuring a webserver (reverse proxy)
  • Configuring LedgerSMB

If you already have all of the above, please proceed to the "Preparing for first use" guide.

These are not the Quick start instructions, but instructions for setting up a full, secure production system. Also, please note that if you're in a position to use LedgerSMB's Docker images, or packages for your Unix/Linux distribution, using those will be far quicker and easier than following the instructions below.

More detailed step by step example instructions for a native install are provided in the LedgerSMB Book Installation Appendix.

System requirements

Requirements for both server and client are documented on the system requirements page.

Unpacking the release tarball

According to the Filesystem Hierarchy Standard, both /usr/local/ledgersmb and /opt/ledgersmb could be chosen as install locations. Unpack the tarball by running (as "root" user):

# tar xf ledgersmb-1.12.x.tar.gz --directory /usr/local/ Installing the LedgerSMB Perl module dependencies

The instructions below assume all dependencies will be installed from CPAN. It is possible to install most modules from distribution repositories; installing those before running the cpanm command below, will reduce the installation done by this command. The Docker image can be consulted for an example.

# Installation of LedgerSMB Perl dependencies from CPAN
cpanm --quiet --notest --with-feature=starman --installdeps /usr/local/ledgersmb/

Then, there are a number of features which need additional modules.
The above command includes the Starman Feature which is required for most installations.
The modules required for each feature can be installed by appending "--with-feature=<feature-name>" to the above command line.

These features are supported:

Feature Description latex-pdf-ps Enable PDF and PostScript output
Note: In order to make use of this functionality, the server must also have 'latex' or 'xelatex' installed. On many distributions, these packages are called 'texlive-latex' and 'texlive-tetex' respectively. starman Starman Perl/PSGI (standalone) web server openoffice OpenOffice.org document output xls Microsoft Excel output edi (EXPERIMENTAL) X12 EDI support

 

# Installation of LedgerSMB Perl dependencies directly from CPAN
# With Starman and PDF & Postscript output

cpanm --quiet --notest --with-feature=starman --with-feature=latex-pdf-ps \
--installdeps /usr/local/ledgersmb/

Configuring the PostgreSQL server

There are only two requirements for the PostgreSQL database server. This section instructs how to configure an pre-installed PostgreSQL installation to meet those requirements. It's assumed that the LedgerSMB server and PostgreSQL are being run on the same system. The requirements to meet are:

  1. A database administrator user (in PostgreSQL called a 'role') for creation and administration of LedgerSMB company databases
  2. Authorization setup so the database administrator can log into the database through LedgerSMB's 'setup.pl' program
Creating the company database administrator account

The database administrator user account needs to have at the bare minimum:

  • The right to create databases (CREATEDB)
  • The right to create roles (CREATEROLE)
  • The right to log in (LOGIN)
  • A password to authenticate logins

The following command issued as root user, creates a user named "lsmb_dbadmin" (which isn't a super user):

# su - postgres -c 'createuser -S -d -r -l -P lsmb_dbadmin'
Enter password for new role: ************
Enter it again: ************

Configuring database access rights

PostgreSQL takes its access configuration through a file called 'pg_hba.conf'. The location of this file may differ per distribution:

  • Debian derivatives: /etc/postgresql/<version>/<cluster>/pg_hba.conf
  • RedHat derivatives: /var/lib/pgsql/<version>/data/pg_hba.conf

On most systems, this file has four effective lines:

local   all             postgres                                peer
local   all             all                                     peer
host    all             all             127.0.0.1/32            peer
host    all             all             ::1/128                 peer

These lines mean that each system user can connect to the database system with an equally named database user; the connecting source doesn't make a difference: unix and TCP/IP sockets have the same configuration.

The LedgerSMB software needs to be able to connect to the database system as 'lsmb_dbadmin' or as a LedgerSMB user, not as the user that runs the server process. The new content should look like:

local   all             postgres                         peer
local   all             all                              peer
host    all             postgres         127.0.0.1/32     reject
host    all             postgres        ::1/128      reject
host    postgres,template0,template1   lsmb_dbadmin         127.0.0.1/32     md5
host    postgres,template0,template1   lsmb_dbadmin         ::1/128      md5
host    postgres,template0,template1   all          127.0.0.1/32     reject
host    postgres,template0,template1   all          ::1/128      reject
host    all             all             127.0.0.1/32     md5
host    all             all             ::1/128          md5

This configuration takes advantage of the fact that each connection method (unix sockets vs TCP/IP sockets/addresses) can be separately configured. While the default connection method of the 'psql' tool is to connect over the 'local' (unix socket method), the default connection method for LedgerSMB is to use 'localhost' (127.0.0.1/32 or ::1/128).

The above configuration means that the user 'postgres' can't be used any longer to connect from 'localhost', no user can connect to the 'postgres' database through 'localhost' [reject] and all other combinations of users and database names need password authentication [md5].

Notes:

  1. PostgreSQL matches the lines first to last and uses the first matching line, so the order of the lines is very importance.
  2. For more information about the pg_hba.conf configuration options, see the PostgreSQL pg_hba.conf documentation
  3. The databases 'template1' and 'template0' are system databases available in every cluster; this configuration blocks those for access from LedgerSMB as well.

After reconfiguring pg_hba.conf, the PostgreSQL service needs to be restarted. this works with one of the following commands (depending on your distribution):

# restarting postgresql service (as root)
# service postgresql restart
# - or -:
$ service postgresql-<version> restart

Verifying database access

To verify access for the database admin user 'lsmb_dbadmin', an accessible database - not named 'postgres', 'template0' or 'template1' - is required. On new installs, these are the only databases. So the next example creates one. Here's how to verify the setup:

# Verify access configuration (run as root)
$ su - postgres -c 'createdb lsmb_access_test_db'
$ psql -h localhost -U lsmb_dbadmin -d lsmb_access_test_db -c "select version()"
PostgreSQL 17.2 <--- this line indicates success("17.2" is just an example version number)
$ su - postgres -c 'dropdb lsmb_access_test_db'

Configuring a web server

Regardless of your web server setup, configuration of an "application server" is required. The application server used with LedgerSMB can be any PSGI compatible server. The default application server is Starman, which is widely considered the fastest available. The Starman server process lives behind a reverse proxy. While Starman deals specifically with those HTTP requests which require "application logic", all other requests (mostly static content, such as images or CSS) are dealt with by the proxy.

Configuring the Starman application server

Depending on the distribution and the installed init system, a startup script/config needs to be installed; the following are supported:

  • SysV init script
  • OpenRC init script
  • Systemd configuration

The following common setup is required regardless of the init system used to manage services on the target server.

To support privilege separation, the Starman server should be running as a user which meets these criteria:

  • Not the same user as the web server
  • Does not have write access to the LedgerSMB directories

To that extent, identify an existing (unused) system user, or create one with this command:

# create 'ledgersmb' user for Starman server to run
$ useradd -d /non-existent -r -U -c "LedgerSMB/Starman service system user" ledgersmb

Configuring systemd for Starman

In the directory doc/conf/systemd/ from the tarball, there is a preconfigured systemd service file, which needs to be copied into place. In case you decided to install dependencies into a local::lib managed directory, the service file needs to be edited to set a PERL5LIB environment variable before you can successfully start the service.

# 'copy' systemd service configuration, enable and start
$ sed -e "s#WORKING_DIR#$PWD#" doc/conf/systemd/ledgersmb_starman.service \
| sudo tee /etc/systemd/system/ledgersmb-starman.service
$ sudo systemctl daemon-reload
$ sudo systemctl enable ledgersmb-starman
$ sudo systemctl start ledgersmb-starman

Note that the above assumes that the commands are being run from the root of the unpacked tarball. It also assumes that the tarball has been unpacked at its installation path.

To verify that the service started up correctly, run:

# verify that the Starman/LedgerSMB server started correctly
$ sudo systemctl status ledgersmb-starman.service
$ sudo journalctl -u ledgersmb-starman.service --since="today" -l -e

Configuring a reverse proxy

For a quick test-run or demo setup running on localhost only, configuration of a proxy isn't mandatory. However, for a production setup with LedgerSMB being network or even web-exposed, it's ill-advised to run without the reverse proxy for - at least - the following reasons:

  • The proxy can serve static content [much] more efficiently (performance)
  • The proxy can support HTTP/2 which multiplexes requests (performance)
  • The proxy guards Starman against public exposure (security)
  • The proxy adds TLS (security)

With TLS certificates being completely free these days through Let's Encrypt, and only a few dollars for the simplest of certificates from commercial vendors, there's really no reason not to secure traffic to the server. Further documentation below assumes you have such a certificate. As for getting Let's Encrypt certificates, use their Getting Started guide.

For simplicity, only the configuration of nginx as a reverse proxy is documented here.

Configuring nginx

The tarball contains an example virtual host configuration file to set up a reverse proxy with nginx. It needs to be included in the 'http { }' block in your nginx configuration. On Debian derived systems, this is done by copying the file to /etc/nginx/sites-available/ledgersmb.conf. On RedHat/Fedora derivatives, the copying goes to /etc/nginx/conf.d/ledgersmb.conf. After editing the file, replacing the following variables:


  • Same replacement as before
  • SSL_CERT_FILE
    Should be where your certificate file is stored; probably /etc/certs/your_host.example.com.pem
  • SSL_KEY_FILE
    Probably the same as the SSL_CERT_FILE, but with '.key' extension
  • YOUR_SERVER_NAME
    If nothing else, should be replaced by the output of the command 'hostname -f'

NOTE: by default snakeoil certificates will be used by at least our nginx sample config files.
These certificates are locally created and will normally require your browser clients to accept a "major risk" warning before they can be used.

On Debian derivatives, activate this file after it has been edited, using:

# On Debian/Ubuntu/Mint activate the virtual host
$ ln -s /etc/nginx/sites-available/ledgersmb.conf /etc/nginx/sites-enabled/

On RedHat/Fedora derivatives, no symlinking is necessary: the configuration is active immediately. Now, verify that the configuration is acceptable:

# (Re)start nginx service to make nginx reconfigure itself and validate configuration
$ sudo service nginx restart
# or, on systemd-based Linux distributions
$ sudo systemctl restart nginx

Configuring LedgerSMB

The tarball has a default LedgerSMB configuration file doc/conf/ledgersmb.yaml. Install the configuration file with:

# Install the default ledgersmb.conf configuration file
$ cp doc/conf/ledgersmb.yaml ledgersmb.yaml

That is it.

Configuring E-mail

In case the in-app e-mail feature is going to be used, check the values in the [mail] section and optionally adjust for the mail setup of the target system.

Next steps

Now follow the instructions in the "Prepare LedgerSMB for first use" guide.

ehu Sat, 12/14/2024 - 10:51 Topic Installation Release 1.12
ehu

Upgrade to LedgerSMB 1.12 (from 1.11 through 1.4)

1 week 1 day ago
Upgrade to LedgerSMB 1.12 (from 1.11 through 1.4) Upgrading tarball installations

There are two steps to upgrading a LedgerSMB 1.4.x - 1.11.x to 1.12:

  1. Upgrade the software
  2. Upgrade the company database

The last step must be executed for each company database that's set up.

Attention when upgrading from before 1.7! Due to the complexity in the upgrade related to the "multiple currency rate support" (MC support), it's of the greatest importance that you create a backup of your data before starting the upgrade. In setup.pl, for every database, you need to download a database backup and a roles backup.

These steps also apply when upgrading a 1.4 installation running Starman. To upgrade 1.4 installations not running on Starman, or to upgrade from earlier versions, please see Upgrading to Ledgersmb 1.5. Note that the default configuration for 1.4 runs CGI, not Starman.

Again, before upgrading: backup your databases.

Note that all the steps below are prefixed with the 'sudo' command, but can be executed as 'root' user directly without the sudo prefix.

Upgrading the software

These are the steps to follow, assuming an installation from tarball:

  • Stop the LedgerSMB application server (e.g. Starman) $ sudo service starman-ledgersmb stop # or, when running a systemd-based Linux distribution: $ sudo systemctl stop ledgersmb
  • Back up the old software by moving it out of the way (assuming you installed in /usr/local/ledgersmb): $ sudo mv /usr/local/ledgersmb /usr/local/ledgersmb.backup
  • Untar the tarball into /usr/local/ledgersmb: $ sudo tar xf ledgersmb-1.12.x.tar.gz --directory /usr/local
  • Copy the configuration file from the old installation: $ sudo cp /usr/local/ledgersmb.backup/ledgersmb.conf /usr/local/ledgersmb/
  • Upgrade the LedgerSMB Starman SysV or systemd scripts (the new scripts can be found in /usr/local/ledgersmb/doc/conf/systemd/ ) $ sudo cp /usr/local/ledgersmb/doc/conf/systemd/ledgersmb_starman.service \ /etc/systemd/system/ledgersmb.service $ sudo systemctl daemon-reload
  • Start the LedgerSMB application server again (Starman example given, as before): $ sudo service starman-ledgersmb start # or, when running a systemd-based Linux distribution: $ sudo systemctl start ledgersmb
Upgrading the company database

After the software has been upgraded, the company database(s) must be upgraded. Without this step, a "Database version mismatch" error will be generated on user-login.

To upgrade the company database from the Web UI, navigate to the setup.pl page (e.g. when you're hosting your LedgerSMB on https://localhost/ and normally log in through https://localhost/login.pl, navigate to https://localhost/setup.pl). Log into setup.pl with the database admin credentials (the "lsmb_dbadmin" user, if you followed the installation instructions, or "postgres" if you used the Quickstart Guide).

After login, setup.pl will show a screen with the following at the top:

 

Logged in as lsmb_dbadmin
LedgerSMB 1.11 db found
Rebuild/Upgrade?

By clicking the "Yes" button, the company database upgrade process will be executed. This is an interactive process which consists of a number of steps. Each step of the upgrade process consists of two phases. In the first phase, the application will verify that the data as available in the database has sufficient quality to be upgraded. If this isn't the case, the user will be asked for input to address quality problems. Once data has acceptable quality, the actual database upgrade will be executed. When all steps in the upgrade have been successfully executed, setup.pl will report complete migration. The database is now available for use again.

Repeat this process for all company databases.

For power-users who need to do scripted upgrades, there's a scripting API available which replaces the interactive process with pre-defined inputs. Contact the developers mailing list for more information.

 

ehu Sat, 12/14/2024 - 10:37 Topic Installation Upgrade Release 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12
ehu

1.11.19 Released

1 month 2 weeks ago
1.11.19 Released Security release No LedgerSMB_Team Sat, 11/02/2024 - 13:43 Release candidate No Download https://download.ledgersmb.org/f/Releases/1.11.19/

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.11.19

* Fix post-and-approve action failing to approve transactions (#8442)
* Fix failure to load modules using Perl 5.40 (#8468)

For installation instructions and system requirements, see
https://github.com/ledgersmb/LedgerSMB/blob/1.11.19/README.md

The release can be downloaded from our download site at
https://download.ledgersmb.org/f/Releases/1.11.19

The release can be downloaded from GitHub at
https://github.com/ledgersmb/LedgerSMB/releases/tag/1.11.19

Or pulled from the GitHub Container Registry
$ docker pull ghcr.io/ledgersmb/ledgersmb:1.11.19

Or pulled from Docker Hub using the command
$ docker pull ledgersmb/ledgersmb:1.11.19

These are the sha256 checksums of the uploaded files:

0b88b220864860adced4fdf47ab69b3dc89da44e690996a7e005384e659eb0fc ledgersmb-1.11.19.tar.gz
9c3515c6f0782c2be49788cf1c82d3de978938d07622b821f32336a6885215e1 ledgersmb-1.11.19.tar.gz.asc

Release 1.11
LedgerSMB_Team

1.11.18 Released

2 months 1 week ago
1.11.18 Released Security release No LedgerSMB_Team Sun, 10/13/2024 - 15:13 Release candidate No Download https://download.ledgersmb.org/f/Releases/1.11.18/

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.11.18

* Fix specifying an alternative database server port number (#8400)
* Fix hostname with hyphen breaks ledgersmb-admin database URI (#8415)
* Allow ledgersmb-admin to use pre-created databases, e.g. DigitalOcean (#8422)
* Fix PNL and B/S CSV output missing 'heading_account' column (#8428)

For installation instructions and system requirements, see
https://github.com/ledgersmb/LedgerSMB/blob/1.11.18/README.md

The release can be downloaded from our download site at
https://download.ledgersmb.org/f/Releases/1.11.18

The release can be downloaded from GitHub at
https://github.com/ledgersmb/LedgerSMB/releases/tag/1.11.18

Or pulled from the GitHub Container Registry
$ docker pull ghcr.io/ledgersmb/ledgersmb:1.11.18

Or pulled from Docker Hub using the command
$ docker pull ledgersmb/ledgersmb:1.11.18

These are the sha256 checksums of the uploaded files:

4ac427cab5839a555bb438ff16c05610c951dd0e48ca216ce5f2ac5f4cb69dab ledgersmb-1.11.18.tar.gz
8bc0c43abf2790ecd98bcb6c550faacc7fc09ae73f61ae6d74981737a49d366d ledgersmb-1.11.18.tar.gz.asc

Release 1.11
LedgerSMB_Team

1.10.38 Released

2 months 1 week ago
1.10.38 Released Security release No LedgerSMB_Team Sun, 10/13/2024 - 13:46 Release candidate No Download https://download.ledgersmb.org/f/Releases/1.10.38/

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.10.38

* Fix PDF generation error for the outstanding AR/AP summary report (#8377)
* Fix hostname with hyphen breaks ledgersmb-admin database URI (#8415)
* Allow ledgersmb-admin to use pre-created databases, e.g. DigitalOcean (#8422)

Please note that the 1.10 series is End-of-Life (EOL) as of October 8 2024,
meaning that this is the last release in the series.

For installation instructions and system requirements, see
https://github.com/ledgersmb/LedgerSMB/blob/1.10.38/README.md

The release can be downloaded from our download site at
https://download.ledgersmb.org/f/Releases/1.10.38

The release can be downloaded from GitHub at
https://github.com/ledgersmb/LedgerSMB/releases/tag/1.10.38

Or pulled from the GitHub Container Registry
$ docker pull ghcr.io/ledgersmb/ledgersmb:1.10.38

Or pulled from Docker Hub using the command
$ docker pull ledgersmb/ledgersmb:1.10.38

These are the sha256 checksums of the uploaded files:

d8c679917a28ab8d052da6619f00cd20e7ede163ac59fbbfcaf5c35f52dfd843 ledgersmb-1.10.38.tar.gz
fda36ee99cc99d6275e3b78b498f6e8b0547dfb40052741738bf3e74e75bd6ee ledgersmb-1.10.38.tar.gz.asc

Release 1.10
LedgerSMB_Team

1.11.17 Released

3 months 2 weeks ago
1.11.17 Released Security release No LedgerSMB_Team Fri, 09/06/2024 - 08:25 Release candidate No Download https://download.ledgersmb.org/f/Releases/1.11.17/

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.11.17

* Fix negative COGS for assemblies [*only* assemblies affected] (#8351)
for more info see https://ledgersmb.org/content/cogs-assembly-fix
* Fix saved orders and quotes showing as read-only [Part 2] (#8348)

Important! Only users of assemblies are affected by the COGS bug fixed
in this release. This fix - due to its extent - will **not** be
released for 1.10, as there's only one month of community support left
until end-of-life. Those using assemblies are urged to upgrade to
1.11.17 to benefit from the fix.

For installation instructions and system requirements, see
https://github.com/ledgersmb/LedgerSMB/blob/1.11.17/README.md

The release can be downloaded from our download site at
https://download.ledgersmb.org/f/Releases/1.11.17

The release can be downloaded from GitHub at
https://github.com/ledgersmb/LedgerSMB/releases/tag/1.11.17

Or pulled from the GitHub Container Registry
$ docker pull ghcr.io/ledgersmb/ledgersmb:1.11.17

Or pulled from Docker Hub using the command
$ docker pull ledgersmb/ledgersmb:1.11.17

These are the sha256 checksums of the uploaded files:

f0da3f804e5d32c33dbc307c3a9fed9a0a25f16716d64a569e53cd4ed8af65d9 ledgersmb-1.11.17.tar.gz
289551a802ca18cd8cd0744de80e208f3b19617883872bfe549001067e47257a ledgersmb-1.11.17.tar.gz.asc

Release 1.11
LedgerSMB_Team
Subscribe to LedgerSMB.org Site Feed feed