Add version check page with changelog for global admins - #1006
Merged
Conversation
Queries the GitHub Releases API to show available updates with changelogs. Read-only, no file writes or self-update functionality. Degrades to a GitHub releases link if HTTP requests are blocked.
7 tasks
There was a problem hiding this comment.
Pull request overview
Adds an admin-only “Update Check” page that queries GitHub Releases and shows newer versions and release notes, plus navigation links for global admins to access it.
Changes:
- Added
public/update-check.phpto fetch GitHub releases, compare against the running version, and pass update/changelog data to Smarty. - Added
templates/update-check.tplto render current version, update availability, and a changelog list. - Wired the page into the UI via admin menu + footer link, and introduced new English language strings.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
public/update-check.php |
Implements GitHub Releases API fetch + version comparison and passes results to the template. |
templates/update-check.tpl |
Renders update status, links to GitHub, and changelog output. |
templates/menu.tpl |
Adds “Update Check” nav entry for global admins. |
templates/index.tpl |
Routes footer “check update” link to the in-app page for global admins. |
configs/menu.conf |
Adds url_update_check mapping used by menu template. |
languages/en.lang |
Adds English UI strings for the update-check page. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…m modeline, comment on postfxadmin typo
DavidGoodwin
approved these changes
Apr 3, 2026
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 40 out of 40 changed files in this pull request and generated 2 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
Member
|
thanks @knofte |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Adds a read-only version check page for global admins that queries the GitHub Releases API and displays available updates with changelogs.
Split out from #1000 based on review feedback - this PR contains only the version check, no self-update functionality.
What it does:
$CONF['version']against GitHub releasesWhat it doesn't do:
Review feedback addressed from #1000:
|default:fallbacksTwo commits for easy review.