Skip to content

Commit fb94c20

Browse files
authored
Merge pull request #178 from iMattPro/develop
Version bump patch
2 parents dd92ffe + 3439869 commit fb94c20

File tree

4 files changed

+49
-29
lines changed

4 files changed

+49
-29
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# QuickInstall Changelog
22

3+
## Version 1.6.2
4+
- [Feature] Dark mode added. When your OS or browser is in dark mode, QI will display its dark mode theme.
5+
- [Change] Added a wait time message to the "We're working on it" modal while building boards.
6+
- [Change] QI's error handling improved. Only one internal error handler now (using trigger_error).
7+
- [Change] QI's error page will have the same Navbar as the rest of QI, and will work as expected in responsive views.
8+
- [Change] QI will no longer pass any error messages to the user via URL parameters. Instead, AJAX will be used to handle certain error messages.
9+
- [Change] QI will no longer display backtraces in minor error notices. Backtraces will only be shown for serious errors and warnings.
10+
- [Change] QI's internal language translation system has been updated to support substitution variables.
11+
- [Change] Moved QI's NPM development files to the project/repository root.
12+
- [Change] A small batch of optimisations and code improvements.
13+
- [Fix] Fixed CSS mapping to source files (for development). Maps are no longer embedded in the minified CSS either.
14+
- [Fix] Minor alignment tweaks to the icons and phpBB board version number badge in the "My Boards" sidebar.
15+
316
## Version 1.6.1
417
- [Fix] Fixed problems that prevented phpBB 4.0.0-alpha builds from successfully installing.
518
- [Fix] Fixed unintended side effects on styling of the sidebar after updating Bootstrap 5 from the beta-3 version.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "phpbb/quickinstall",
33
"description": "QuickInstall is a developer tool used to create multiple phpBB3 installations.",
44
"homepage": "https://www.phpbb.com/customise/db/official_tool/phpbb3_quickinstall",
5-
"version": "1.6.1",
5+
"version": "1.6.2",
66
"license": "GPL-2.0-only",
77
"authors": [
88
{

package-lock.json

Lines changed: 30 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quickinstall",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"license": "GPL-2.0-only",
55
"dependencies": {
66
"autoprefixer": "^10.2.5",
@@ -25,7 +25,10 @@
2525
"copy-bs-icons": "copyfiles --flat node_modules/bootstrap-icons/bootstrap-icons.svg style/assets/img",
2626
"copy-bs-dark": "copyfiles --flat node_modules/bootstrap-dark-5/dist/css/bootstrap-nightfall.min.css style/assets/css",
2727
"all": "npm-run-all css copy",
28-
"test": "eslint style/assets/js/scripts.js"
28+
"test": "eslint style/assets/js/scripts.js",
29+
"bump-major": "npm version major --git-tag-version=false",
30+
"bump-minor": "npm version minor --git-tag-version=false",
31+
"bump-patch": "npm version patch --git-tag-version=false"
2932
},
3033
"eslintConfig": {
3134
"ignorePatterns": [

0 commit comments

Comments
 (0)