Skip to content

Commit d393c67

Browse files
authored
Merge pull request #214 from iMattPro/develop
Update for version 1.6.5
2 parents ee16a49 + b6651ed commit d393c67

26 files changed

+80
-76
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# QuickInstall Changelog
22

3+
## Version 1.6.5
4+
- [Feature] Added support for browser interface theme-color, currently used in Safari 15.
5+
- [Fix] Fixed an issue where refreshing the Settings, Docs or PHP info pages would result in the sidebar not correctly highlighting the current section being viewed.
6+
- [Fix] Fixed an issue to ensure new versions of QI will load the newest JS and CSS instead of older cached files.
7+
- [Change] Updated the date-time format for new boards to use phpBB's default format instead of a custom format.
8+
- [Change] Updated Bootstrap to 5.1.1 and other internal dependencies.
9+
310
## Version 1.6.4
411
- [Fix] Switched AJAX from `onload` to `loadend` to _hopefully_ prevent potential hangs when creating a board.
512
- [Change] Redesigned appearance of the navigation bar for a more streamlined look.
@@ -166,7 +173,7 @@
166173
- [Fix] Issue #38 Subsilver2 was not installed for 3.1.x boards.
167174
- [Fix] The "boards" tab was not hidden when there were errors in submitting first/only config.
168175
- [Fix] QI tried to write to the `settings` folder even if it was not writable.
169-
- [Fix] The explanation text for the Boards tab was not up to date.
176+
- [Fix] The explanation text for the Boards tab was not up-to-date.
170177
- [Fix] Issue #42 the installation note box got more or less unreadable in some screen resolutions.
171178
- [Fix] "schema.json" was removed in phpBB 3.1.3. QI used it to create the 3.1 DB. Now install of 3.1.x works again.
172179
- [Fix] Ticket #44 QI removed uppercase letters from directory names due to a missing Hyphen "-".

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ phpBB boards require a web server running PHP and one of the following database
4242

4343
| phpBB | PHP | MySQL | MariaDB | PostgreSQL | SQLite | MS SQL |
4444
| -------------- | ------------- |------- |-------- |----------- |--------------- |------------- |
45-
| 3.0.x | 5.4.7 - 5.6.x | 3.23+ | - | 7.x | SQLite 2 | Server 2000 |
46-
| 3.1.x | 5.4.7 - 5.6.x | 3.23+ | 5.1+ | 8.3+ | SQLite 2 or 3 | Server 2000+ |
47-
| 3.2.0 - 3.2.1 | 5.4.7 - 7.1.x | 3.23+ | 5.1+ | 8.3+ | SQLite 3.6.15+ | Server 2000+ |
48-
| 3.2.2 - 3.2.x | 5.4.7 - 7.2.x | 3.23+ | 5.1+ | 8.3+ | SQLite 3.6.15+ | Server 2000+ |
49-
| 3.3.x | 7.1.3 - 8.x | 4.1.3+ | 5.1+ | 8.3+ | SQLite 3.6.15+ | Server 2000+ |
5045
| 4.0.x (alpha) | 7.3.0 - 8.x | 4.1.3+ | 5.1+ | 8.3+ | SQLite 3.6.15+ | Server 2000+ |
46+
| 3.3.x | 7.1.3 - 8.x | 4.1.3+ | 5.1+ | 8.3+ | SQLite 3.6.15+ | Server 2000+ |
47+
| 3.2.2 - 3.2.x | 5.4.7 - 7.2.x | 3.23+ | 5.1+ | 8.3+ | SQLite 3.6.15+ | Server 2000+ |
48+
| 3.2.0 - 3.2.1 | 5.4.7 - 7.1.x | 3.23+ | 5.1+ | 8.3+ | SQLite 3.6.15+ | Server 2000+ |
49+
| 3.1.x | 5.4.7 - 5.6.x | 3.23+ | 5.1+ | 8.3+ | SQLite 2 or 3 | Server 2000+ |
50+
| 3.0.x | 5.4.7 - 5.6.x | 3.23+ | - | 7.x | SQLite 2 | Server 2000 |
5151

5252
## 🐞 Support
5353
You can receive support at the [phpBB3 QuickInstall Discussion/Support](https://www.phpbb.com/customise/db/official_tool/phpbb3_quickinstall/support) forum.

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

composer.lock

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

includes/qi_version_helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public function force_stability($stability)
115115
* @param string $version2 Second version number
116116
* @param string $operator Comparison operator (optional)
117117
*
118-
* @return mixed Boolean (true, false) if comparison operator is specified.
118+
* @return bool|int Boolean (true, false) if comparison operator is specified.
119119
* Integer (-1, 0, 1) otherwise.
120120
*/
121121
public function compare($version1, $version2, $operator = null)

includes/settings.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public function validate()
131131

132132
$validation_errors = [];
133133

134-
// Lets check simple required string settings...
134+
// Let's check simple required string settings...
135135
foreach (['cache_dir', 'boards_dir', 'boards_url', 'dbms', 'dbhost', 'table_prefix', 'qi_lang', 'qi_tz', 'db_prefix', 'admin_email', 'email_domain', 'site_name', 'server_name', 'server_port', 'board_email', 'default_lang'] as $setting)
136136
{
137137
if ($this->settings[$setting] === '')
@@ -422,7 +422,7 @@ public function set_settings($data)
422422
}
423423

424424
/**
425-
* Get the boards directory path
425+
* Get the board's directory path
426426
*
427427
* @return string Board directory path from settings, otherwise QI's default
428428
*/
@@ -458,7 +458,7 @@ public function get_cache_dir()
458458
*/
459459
public function get_server_protocol()
460460
{
461-
//There is no setting for server_protocol ATM, but there might be in the future so let's keep this for now.
461+
// There is no setting for server_protocol ATM, but there might be in the future so let's keep this for now.
462462
return empty($this->settings['server_protocol']) ? 'http://' : $this->settings['server_protocol'];
463463
}
464464

includes/twig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function display($templateFile, $templateExt = 'twig')
8787
/**
8888
* Assign a single scalar value to a single key.
8989
*
90-
* Value can be a string, an integer or a boolean.
90+
* Value can be a string, an integer or boolean.
9191
*
9292
* @param string $varname Variable name
9393
* @param string $varval Value to assign to variable

language/en/phpbb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383
// The default dateformat which will be used on new installs in this language
8484
// Translators should change this if a the usual date format is different
85-
'default_dateformat' => 'M jS, ’y, H:i', // Mon Jan 01, 2007 1:37 pm
85+
'default_dateformat' => 'D M d, Y g:i a', // Mon Jan 01, 2007 1:37 pm
8686

8787
// From phpBB 3.1.2 language/en/common.php
8888
// Timezones can be translated. We use this for the Etc/GMT timezones here,

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quickinstall",
3-
"version": "1.6.4",
3+
"version": "1.6.5",
44
"license": "GPL-2.0-only",
55
"dependencies": {
66
"autoprefixer": "^10.3.4",
@@ -19,7 +19,7 @@
1919
"css-compile": "sass scss/qi_bootstrap.scss scss/qi_bootstrap.css",
2020
"css-prefix": "postcss --use autoprefixer --replace scss/qi_bootstrap.css",
2121
"css-minify": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output scss/qi_bootstrap.min.css scss/qi_bootstrap.css",
22-
"copy": "npm-run-all copy-bs-css copy-bs-js copy-bs-icons copy-bs-dark",
22+
"copy": "npm-run-all --parallel copy-*",
2323
"copy-bs-css": "copyfiles --flat scss/qi_bootstrap.min.css scss/qi_bootstrap.min.css.map style/assets/css",
2424
"copy-bs-js": "copyfiles --flat node_modules/bootstrap/dist/js/bootstrap.min.js node_modules/bootstrap/dist/js/bootstrap.min.js.map style/assets/js",
2525
"copy-bs-icons": "copyfiles --flat node_modules/bootstrap-icons/bootstrap-icons.svg style/assets/img",

0 commit comments

Comments
 (0)