leihs 2.9.6 available via SourceForge and git

leihs 2.9.6 is now available as .zip and as .tar.gz package, as usual at SourceForge, the portal for free and open source software: Download leihs 2.9.6 packagesChanges since version 2.9.5:

  1. Fixed the category editor (children and parents of categories can be added/removed and edited again)
  2. Dozens of bugs fixed!

Have fun and let us know if there are any problems!

Installing/upgrading via git

The latest stable commit is tagged 2.9.6 on the master branch. If you’ve never cloned leihs via Git, you can get a fresh copy like this:

git clone git://github.com/psy-q/leihs.git leihs cd leihs git checkout -b my_leihs 2.9.6

If you already have a “leihs” directory with a Git clone of leihs, you can update your version like this, inside your leihs directoryMake sure to have a backup copy of your configuration files before starting this (config/database.yml, config/environment.rb, config/LDAP.yml).Alternatively, you could just store those files outside your leihs directory and symlink them into it, so that git mostly ignores them.

git fetch git checkout my_leihs git merge 2.9.6 RAILS_ENV=production rake db:migrate

This is for a production environment. If your copy of leihs is in development mode, you can leave off the RAILS_ENV=production. Please let us know if you run into problems with these instructions.

Comments are closed.