-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #354 from xibosignage/release18
Release 1.8.8
- Loading branch information
Showing
193 changed files
with
17,096 additions
and
5,301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
# A simple helper script to run composer | ||
# useful if your dev host environment doesn't have PHP | ||
# on windows replace $PWD with your working repo root folder | ||
docker run --rm \ | ||
--volume $PWD:/app \ | ||
composer install --ignore-platform-reqs --optimize-autoloader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"dbVersion": 139, | ||
"appVersion": "1.8.8", | ||
"steps": [ | ||
{ | ||
"step": "Add widget created/modified dates", | ||
"action": "ALTER TABLE widget ADD createdDt INT NULL;ALTER TABLE widget ADD modifiedDt INT NULL;" | ||
}, | ||
{ | ||
"step": "Add index to the media table", | ||
"action": "CREATE INDEX media_editedMediaID_index ON media (editedMediaID);" | ||
}, | ||
{ | ||
"step": "Update help text on MAINTENANCE_LOG_MAXAGE", | ||
"action": "UPDATE `setting` SET helpText = 'Maximum age for log entries in days. Set to 0 to keep logs indefinitely.' WHERE setting = 'MAINTENANCE_LOG_MAXAGE' LIMIT 1" | ||
}, | ||
{ | ||
"step": "Update help text on MAINTENANCE_STAT_MAXAGE", | ||
"action": "UPDATE `setting` SET helpText = 'Maximum age for statistics entries in days. Set to 0 to keep statistics indefinitely.' WHERE setting = 'MAINTENANCE_STAT_MAXAGE' LIMIT 1" | ||
}, | ||
{ | ||
"step": "Remove loggedin column from user table", | ||
"action": "ALTER TABLE user DROP COLUMN loggedin;" | ||
} | ||
] | ||
} |
Oops, something went wrong.