Skip to content

Commit e3ec620

Browse files
authored
Merge pull request #184 from iMattPro/develop
Prep release 1.6.3
2 parents 99b6037 + c75d417 commit e3ec620

File tree

7 files changed

+45
-73
lines changed

7 files changed

+45
-73
lines changed

CHANGELOG.md

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

3+
## Version 1.6.3
4+
- [Fix] Fixed a problem where boards would not populate when using PHP 8.
5+
- [Fix] Clarified how the option to install additional styles should be used.
6+
- [Fix] Fixed an issue where “Additional board config settings“ would be ignored if they tried to set a config to a value of 0, false or an empty string.
7+
- [Fix] Fixed a few more issues in the code base which could pose problems with future versions of PHP and phpBB.
8+
- [Change] Small internal change to QI's SCSS file, moved away from using division to avoid issues with SASS 1.33.
9+
310
## Version 1.6.2
411
- [Feature] Dark mode added. When your OS or browser is in dark mode, QI will display its dark mode theme.
512
- [Change] Added a wait time message to the "We're working on it" modal while building boards.
613
- [Change] QI's error handling improved. Only one internal error handler now (using trigger_error).
714
- [Change] QI's error page will have the same Navbar as the rest of QI, and will work as expected in responsive views.
815
- [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.
916
- [Change] QI will no longer display backtraces in warnings or notices. Backtraces will only be shown for errors.
10-
- [Change] QI's internal language translation system has been updated to support substitution variables.
17+
- [Change] QI's internal language system has been updated to support substitution variables.
1118
- [Change] Moved QI's NPM development files to the project/repository root.
1219
- [Change] A small batch of optimisations and code improvements.
1320
- [Fix] Fixed CSS mapping to source files (for development). Maps are no longer embedded in the minified CSS either.
@@ -64,7 +71,7 @@
6471
- [Change] Dropped support for installing AutoMOD into 3.0.x boards from QuickInstall. AutoMOD can still be installed manually for 3.0.x boards.
6572
- [Change] Dropped the *subsilver2 only* option from the 'Install additional styles' setting.
6673
- [Change] Added a `DEBUG` constant to `qi_constants.php`. Contributors can un-comment it while developing QI to disable template caching.
67-
- [Fix] Fixed an issue with the migration schema generator that blocked QI from working with phpBB 4.0.0-dev.
74+
- [Fix] Fixed an issue with the migration-schema generator that blocked QI from working with phpBB 4.0.0-dev.
6875
- [Fix] Fixed some issues with language vars not working on error pages.
6976

7077
## Version 1.3.7
@@ -198,7 +205,7 @@
198205
- [Change] No need to add session and `$user` to only store language keys. Changed `$user->lang[]` to `qi::lang()`.
199206
- [Change] Removed "powered by phpBB" from the footer. That would not be true anymore.
200207
- [Change] Suppress E_DEPRECATED from php >=5.5.0 to still work with php 4
201-
- [Change] Removed CSS hack for Mac IE since the last version was released in 2003
208+
- [Change] Removed CSS hacks for Mac and IE, since the last version was released in 2003
202209
- [Change] Added CSS hack for Opera.
203210
- [Change] Removed the "Manage boards" tab and moved board delete to the main tab, which where renamed to "Manage boards".
204211
- [Change] Made some modifications to the settings tab and changed some wording.
@@ -299,7 +306,7 @@
299306
- [Feature] Added option so set how many users, forums, topics and posts that will be created.
300307

301308
## Version 1.1.5
302-
- [Fix] Set the new board language directory as a custom language path.
309+
- [Fix] Set the new board-language directory as a custom language path.
303310
- [Change] Moved to GitHub.
304311
- [Change] Deleted phpBB from the `sources` dir. It now needs to be downloaded from http://www.phpbb.com/.
305312

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.2",
5+
"version": "1.6.3",
66
"license": "GPL-2.0-only",
77
"authors": [
88
{

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quickinstall",
3-
"version": "1.6.2",
3+
"version": "1.6.3",
44
"license": "GPL-2.0-only",
55
"dependencies": {
66
"autoprefixer": "^10.2.5",

scss/qi_bootstrap.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scss/qi_bootstrap.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,20 @@ $enable-gradients: true;
3333
margin: $spacer 0;
3434
border-radius: $border-radius;
3535
border: $border-width solid $gray-200;
36-
border-left-width: $spacer / 4;
37-
border-radius: $spacer / 4;
36+
border-left-width: $spacer * .25;
37+
border-radius: $spacer * .25;
3838
}
3939

4040
.callout h4 {
41-
margin-bottom: $spacer / 4;
41+
margin-bottom: $spacer * .25;
4242
}
4343

4444
.callout p:last-child {
4545
margin-bottom: 0;
4646
}
4747

4848
.callout + .callout {
49-
margin-top: -($spacer / 4);
49+
margin-top: -($spacer * .25);
5050
}
5151

5252
.callout-primary {

style/assets/css/qi_bootstrap.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)