Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cli-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.1', '8.2', '8.3', '8.4']
php: ['8.1', '8.2', '8.3', '8.4', '8.5']

steps:
- name: Checkout
Expand Down
19 changes: 13 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
# QuickInstall Changelog

## Version 1.8.0-dev

- [Feature] Added a new local “Dashboard UI” (browser-based) workflow for the QuickInstall CLI.
- [Feature] Added new QI update available notifications in the CLI and Dashboard UI.
- [Feature] Added a new `doctor` command to diagnose host requirements.
- [Change] Improved workspace safety and Windows compatibility.
## Version 1.8.0

- [Feature] Added a local “Dashboard UI” (browser-based) workflow for the QuickInstall CLI. Start it with `php bin/qi ui:start`.
- [Feature] Added a richer `development` seed preset for testing extensions and styles. The old `extension-dev` preset is now deprecated.
- [Feature] Added `tiny` and `development` seed preset support for SQLite boards.
- [Feature] Added update notifications to the CLI and Dashboard UI.
- [Feature] Added a `doctor` command to check local requirements and help diagnose setup problems.
- [Change] Seed replacement and reset now remove only content created by the selected preset and seed.
- [Change] Added native Windows CLI support with a `qi.cmd` launcher and improved cross-platform path and command handling.
- [Change] New boards now use the host's timezone, offer to start after creation, and open in the default browser when ready.
- [Change] Extension and style unmounting now safely removes installed customisations from phpBB and refreshes the board cache.
- [Fix] Improved workspace safety during simultaneous CLI and Dashboard actions, board replacement, and source downloads.
- [Fix] Fixed stale source caches and several extension and style remounting issues.

## Version 1.7.0

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "phpbb/quickinstall",
"description": "QuickInstall is a developer tool used to create multiple phpBB installations.",
"homepage": "https://www.phpbb.com/customise/db/official_tool/phpbb3_quickinstall",
"version": "1.8.0-dev",
"version": "1.8.0",
"license": "GPL-2.0-only",
"authors": [
{
Expand All @@ -18,7 +18,7 @@
"role": "Maintained from March 2010 to March 2015"
},
{
"name": "vinny",
"name": "Vinny",
"role": "Created phpBB Style Tester, which inspired the QuickInstall development seed preset"
}
],
Expand Down
10 changes: 10 additions & 0 deletions docs/sandbox-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,16 @@ Or recreate it in one command:
php bin/qi board:create demo --phpbb 3.3 --db mariadb --port 8081 --populate tiny --replace
```

Run a board's own `bin/phpbbcli.php` inside its `web` container from the QuickInstall project root:

```bash
docker compose -f .qi/runtime/demo/compose.yml exec web php bin/phpbbcli.php list
docker compose -f .qi/runtime/demo/compose.yml exec web php bin/phpbbcli.php cache:purge
docker compose -f .qi/runtime/demo/compose.yml exec web php bin/phpbbcli.php extension:show
```

Do not run `php bin/phpbbcli.php` directly from `.qi/boards/<name>`. The generated phpBB database configuration uses the Compose service hostname `db`, which resolves only inside the board's Docker network. Running inside `web` also uses the PHP version and extensions selected for that board.

## Fixture Presets

Fixture seeding populates a board with repeatable test data. The `development` preset favors meaningful phpBB states over raw volume; use `load-test` when topic and post volume is the primary goal.
Expand Down