Skip to content

Commit

Permalink
Merge pull request #8 from globaldyne/v2.5
Browse files Browse the repository at this point in the history
V2.5
  • Loading branch information
globaldyne authored Jan 25, 2021
2 parents 9b31130 + 4625f02 commit 85f8913
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# CHANGELOG
### Version 2.5
- FIX: Docker helper tag (set to :latest)
- FIX: Docker helper to remove PV2 container before start
- FIX: Issue preventing to add new ingredients

### Version 2.4
- ADD: PubChem - exclude Mixtures and Blends
- ADD: PubChem - exclude Mixtures and Blends
- ADD: Default purity value '100' in ingredient management
- ADD: Favicon added!
- CHG: Add new formula page now opens as a modal window
Expand Down
2 changes: 1 addition & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4
2.5
2 changes: 1 addition & 1 deletion db/schema.ver
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4
2.5
1 change: 1 addition & 0 deletions db/updates/update_2.4-2.5.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `ingredients` CHANGE `usage_type` `usage_type` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_bin NULL;
8 changes: 6 additions & 2 deletions helpers/run_pvault.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
#
# Run Perfumer's Vault
# Script Version: v1.1
# Script Version: v1.2
# Author: John Belekios <john@globaldyne.co.uk>
#
#
Expand All @@ -27,8 +27,12 @@ if [[ $? -eq 0 ]]; then
echo "$PVDIR not exists, creating it..."
mkdir -p $PVDIR
fi

echo "Trying to remove an already running container..."
$DOCKER_BIN rm PV2 --force

echo "Pull the image and start it...Please wait, this might take a while..."
$DOCKER_BIN run --name PV2 -p 8080:80 -v $PVDIR/config:/config -v $PVDIR/db:/var/lib/mysql -v $PVDIR/uploads:/var/www/html/uploads globaldyne/jbvault:$1
$DOCKER_BIN run --name PV2 -p 8080:80 -v $PVDIR/config:/config -v $PVDIR/db:/var/lib/mysql -v $PVDIR/uploads:/var/www/html/uploads globaldyne/jbvault:latest

else
clear
Expand Down
5 changes: 1 addition & 4 deletions releasenotes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
Whats New:
----------------------
- The new formula page, now opens as a modal window
- Ingredient profile isn't displayed any longer in formula, if group enabled.
This will provide a better and cleaner view.
- Various bug fixes and improvements
This is a bug fix release

0 comments on commit 85f8913

Please sign in to comment.