Version 1.2.0
- Added color customization system
- Added system updater. No more manual updates after this update! :)
- Renamed project to CocktailPi
- Standard UI
- Recipes are now displayed over 2 columns on wide screens.
The project was renamed to CocktailPi!
The previous name was there, because this project started as a university project that was never intended for public release. However, as the project has evolved far beyond its initial scope, it has been bestowed with a fresh identity. Accompanying this rebranding is the official CocktailPi website. Visit it at https://cocktailpi.org/
Important!:
When upgrading to this version you will need to rename your database from cocktailmaker-data.db
to cocktailpi-data.db
.
Navigate into your installation folder of CocktailPi (former CocktailMaker) and execute the command mv cocktailmaker-data.db cocktailpi-data.db
. Make sure your application is stopped before changing the name.
Upgrade guide:
As mentioned in the 1.0.0 release, when upgrading from a version older than 1.0.0 you have to reinstall your complete system. Please use the installation instructions at https://cocktailpi.org/install/ as a reinstallation guide.
Please do the following when upgrading from a version newer or equal to 1.0.0:
Connect via ssh to your pi log in as root user. When logging in with the pi user use sudo -i
to become root. Afterwards execute:
service cocktailmaker stop
mv /root/cocktailmaker /root/cocktailpi
cd /root/cocktailpi
rm cocktailmaker.jar
rm /etc/init.d/cocktailmaker
wget https://github.com/alex9849/CocktailPi/releases/latest/download/server.jar -O cocktailpi.jar
mv cocktailmaker-data.db cocktailpi-data.db
chmod +x cocktailpi.jar
ln -s /root/cocktailpi/cocktailpi.jar /etc/init.d/cocktailpi
systemctl daemon-reload
update-rc.d cocktailpi defaults
service cocktailpi start
Thank you for using CocktailPi! :)