* Add electron-updater auto-update support - Install electron-updater package - Configure GitHub releases publish settings - Create AppUpdater class with full update lifecycle - Integrate auto-update into main.js - Add comprehensive documentation (AUTO-UPDATES.md, TESTING-UPDATES.md) - Set up dev-app-update.yml for testing * Add cache clearing documentation for electron-updater - Introduced CLEAR-UPDATE-CACHE.md to guide users on clearing the electron-updater cache across macOS, Windows, and Linux. - Added programmatic method for cache clearing in JavaScript. - Enhanced update handling in main.js and preload.js to support new update events. - Updated GUI styles for download buttons and progress indicators in update.js and style.css. * Update auto-update UI and configuration - Fix version display (newVersion field) - Add download progress bar with real-time updates - Reorder buttons: Install & Restart (primary), Manually Download (secondary) - Update dev-app-update.yml to point to fork - Update package.json version to 2.0.2 * Add installation effects and draggable progress bar Introduces animated installation effects overlay and makes the progress bar draggable. Adds maximize window support, improves window controls styling, and enforces a single app instance. Removes the unused Skins page and related translations. Refines various UI details for a more polished user experience. * Adjust news card aspect ratio and add Play tab style Set a default aspect ratio for .news-card and add a specific style for the LATEST NEWS section in the Play tab to override the aspect ratio and use full height. * Add splash screen to launcher startup Introduced a new splash screen (splash.html) and updated main.js to display it on startup before loading the main window. The splash screen is shown for 2.5 seconds as a placeholder for future loading logic, improving user experience during application launch. * Display launcher version in UI Adds a version display element to the bottom right of the UI, fetching the version from package.json via a new IPC handler. Updates main.js, preload.js, and ui.js to support retrieving and displaying the version, and adds relevant styles in style.css. * Custom Mod loading fix (#92) * feat: Add Repair Game functionality including UserData backup and cache clearing * feat: Add In-App Logs Viewer and Logs Folder shortcut * feat: Add Open Logs feature * disable dev tools * Fix Settings UI * Implement custom mod loading, autoimport, auto repair * Fixed Custom Mod loading issues and merge issues * feat: Externalize sensitive API keys and Discord client ID into environment variables using dotenv. * feat(mods): add profile-based mod management and auto-repair * feat: add 'Close launcher on game start' option and improve app termination behavior (#93) * update main branch to release/v2.0.2b (#86) * add more linux pkgs, create auto-release and pre-release feature for Github Actions * removed package-lock from gitignore * update .gitignore for local build * add package-lock.json to maintain stability development * update version to 2.0.2b also add deps for rpm and arch * update 2.0.2b: add arm64 support, product and executable name, maintainers; remove snap; * update 2.0.2b: add latest.yml for win & linux, arm64 support; remove snap * fix release build naming * Prepare release v2.0.2b * feat: add 'Close launcher on game start' option and improve app termination behavior - Added 'Close launcher on game start' setting in GUI and backend. - Implemented automatic app quit after game launch if setting is enabled. - Added Cmd+Q (Mac) and Ctrl+Q/Alt+F4 (Win/Linux) shortcuts to quit the app. - Updated 'window-close' handler to fully quit the app instead of just closing the window. - Added i18n support for the new setting in English, Spanish, and Portuguese. --------- Co-authored-by: Fazri Gading <fazrigading@gmail.com> Co-authored-by: Arnav Singh <hi.arnavsingh3@gmail.com> * Update publish config to point to chasem-dev fork * Fix Linux metadata files in workflow and improve error handling * Bump version to 2.0.5 * Bump version to 2.0.6 * Fix update popup showing for same version - add version comparison checks * Bump version to 2.0.7 * Fix SHA512 checksum mismatch handling - clear cache and retry automatically * Bump version to 2.0.8 * Bump version to 2.0.9 * Fix: Use explicit latest-linux.yml to prevent yml file collision The glob pattern latest*.yml was matching both latest-linux.yml AND latest.yml from the Linux build, causing the Windows latest.yml to be overwritten with incorrect checksums. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * Bump version to 2.0.10 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * Fix: Remove portable target to fix SHA512 checksum mismatch The portable and nsis targets both produced x64.exe files with the same name, causing one to overwrite the other. The latest.yml contained the checksum from one build while the actual file was from the other build. Removed portable target - nsis installer is sufficient. Bump version to 2.0.11 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * Remove outdated documentation files related to auto-updates, build instructions, and testing updates. Update `dev-app-update.yml` and `package.json` to reflect the correct GitHub owner. This cleanup streamlines the project and ensures accurate configuration for future updates. * Add semantic versioning policy documentation - numerical versions only * Update package-lock.json to include new dependencies and versions, enhancing project stability and compatibility. * fixed imgur restriction for UK * fix: adds EGL env var to detect installed NVIDIA GPU * Update release.yml * patch v2.0.11-beta: fix env issue in GA release, warn Intel Mac users, add com templates. (#115) * fix: throw error for Intel Mac user * docs: first draft of issue and PR template * fix: env of curseforge API key and discord client ID * implemented late patch should be in #115 * Final patch for release.yml v2.0.11 --------- Co-authored-by: chasem-dev <myers.a.chase@gmail.com> Co-authored-by: AMIAY <letudiantenrap.collab@gmail.com> Co-authored-by: Rahul Sahani <110347707+Rahul-Sahani04@users.noreply.github.com> Co-authored-by: Arnav Singh <72737311+ArnavSingh77@users.noreply.github.com> Co-authored-by: Arnav Singh <hi.arnavsingh3@gmail.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
9.6 KiB
Auto-Updates System
This document explains how the automatic update system works in the Hytale F2P Launcher.
Overview
The launcher uses electron-updater to automatically check for, download, and install updates. When a new version is available, users are notified and the update is downloaded in the background.
How It Works
1. Update Checking
- Automatic Check: The app automatically checks for updates 3 seconds after startup
- Manual Check: Users can manually check for updates through the UI
- Update Source: Updates are fetched from GitHub Releases
2. Update Process
- Check for Updates: The app queries GitHub Releases for a newer version
- Notify User: If an update is available, the user is notified via the UI
- Download: The update is automatically downloaded in the background
- Progress Tracking: Download progress is shown to the user
- Install: When the download completes, the user can choose to install immediately or wait until the app restarts
3. Installation
- Updates are installed when the app quits (if
autoInstallOnAppQuitis enabled) - Users can also manually trigger installation through the UI
- The app will restart automatically after installation
Version Detection & Comparison
Current Version Source
The app's current version is read from package.json:
{
"version": "2.0.2b"
}
This version is embedded into the built application and is accessible via app.getVersion() in Electron. When the app is built, electron-builder also creates an internal app-update.yml file in the app's resources that contains this version information.
How Version Detection Works
-
Current Version: The app knows its own version from
package.json, which is:- Read at build time
- Embedded in the application binary
- Stored in the app's metadata
-
Fetching Latest Version: When checking for updates, electron-updater:
- Queries the GitHub Releases API:
https://api.github.com/repos/amiayweb/Hytale-F2P/releases/latest - Or reads the update metadata file:
https://github.com/amiayweb/Hytale-F2P/releases/download/latest/latest.yml(orlatest-mac.ymlfor macOS) - The metadata file contains:
version: 2.0.3 releaseDate: '2024-01-15T10:30:00.000Z' path: Hytale-F2P-Launcher-2.0.3-x64.exe sha512: ...
- Queries the GitHub Releases API:
-
Version Comparison: electron-updater uses semantic versioning comparison:
- Compares the current version (from
package.json) with the latest version (from GitHub Releases) - Uses semantic versioning rules:
major.minor.patch(e.g.,2.0.2vs2.0.3) - An update is available if the remote version is greater than the current version
- Examples:
- Current:
2.0.2→ Remote:2.0.3✅ Update available - Current:
2.0.2→ Remote:2.0.2❌ No update (same version) - Current:
2.0.3→ Remote:2.0.2❌ No update (current is newer) - Current:
2.0.2b→ Remote:2.0.3✅ Update available (prerelease tags are handled)
- Current:
- Compares the current version (from
-
Version Format Handling:
- Semantic versions (e.g.,
1.0.0,2.1.3) are compared numerically - Prerelease versions (e.g.,
2.0.2b,2.0.2-beta) are compared with special handling - Non-semantic versions may cause issues - it's recommended to use semantic versioning
- Semantic versions (e.g.,
Update Metadata Files
When you build and publish a release, electron-builder generates platform-specific metadata files:
Windows/Linux (latest.yml):
version: 2.0.3
files:
- url: Hytale-F2P-Launcher-2.0.3-x64.exe
sha512: abc123...
size: 12345678
path: Hytale-F2P-Launcher-2.0.3-x64.exe
sha512: abc123...
releaseDate: '2024-01-15T10:30:00.000Z'
macOS (latest-mac.yml):
version: 2.0.3
files:
- url: Hytale-F2P-Launcher-2.0.3-arm64-mac.zip
sha512: def456...
size: 23456789
path: Hytale-F2P-Launcher-2.0.3-arm64-mac.zip
sha512: def456...
releaseDate: '2024-01-15T10:30:00.000Z'
These files are:
- Automatically generated during build
- Uploaded to GitHub Releases
- Fetched by electron-updater to check for updates
- Used to determine if an update is available and what to download
The Check Process in Detail
When appUpdater.checkForUpdatesAndNotify() is called:
- Read Current Version: Gets version from
app.getVersion()(which reads frompackage.json) - Fetch Update Info:
- Makes HTTP request to GitHub Releases API or reads
latest.yml - Gets the version number from the metadata
- Makes HTTP request to GitHub Releases API or reads
- Compare Versions:
- Uses semantic versioning comparison (e.g.,
semver.gt(remoteVersion, currentVersion)) - If remote > current: update available
- If remote <= current: no update
- Uses semantic versioning comparison (e.g.,
- Emit Events:
update-availableif newer version foundupdate-not-availableif already up to date
- Download if Available: If
autoDownloadis enabled, starts downloading automatically
Example Flow
App Version: 2.0.2 (from package.json)
↓
Check GitHub Releases API
↓
Latest Release: 2.0.3
↓
Compare: 2.0.3 > 2.0.2? YES
↓
Emit: 'update-available' event
↓
Download update automatically
↓
Emit: 'update-downloaded' event
↓
User can install on next restart
Components
AppUpdater Class (backend/appUpdater.js)
The main class that handles all update operations:
checkForUpdatesAndNotify(): Checks for updates and shows a system notification if availablecheckForUpdates(): Manually checks for updates (returns a promise)quitAndInstall(): Quits the app and installs the downloaded update
Events
The AppUpdater emits the following events that the UI can listen to:
update-checking: Update check has startedupdate-available: A new update is availableupdate-not-available: App is up to dateupdate-download-progress: Download progress updatesupdate-downloaded: Update has finished downloadingupdate-error: An error occurred during the update process
Configuration
Package.json
The publish configuration in package.json tells electron-builder where to publish updates:
"publish": {
"provider": "github",
"owner": "amiayweb",
"repo": "Hytale-F2P"
}
This means updates will be fetched from GitHub Releases for the amiayweb/Hytale-F2P repository.
Publishing Updates
For Developers
-
Update Version: Bump the version in
package.json(e.g.,2.0.2b→2.0.3) -
Build the App: Run the build command for your platform:
npm run build:win # Windows npm run build:mac # macOS npm run build:linux # Linux -
Publish to GitHub: When building with electron-builder, it will:
- Generate update metadata files (
latest.yml,latest-mac.yml, etc.) - Upload the built files to GitHub Releases (if configured with
GH_TOKEN) - Make them available for auto-update
- Generate update metadata files (
-
Release on GitHub: Create a GitHub Release with the new version tag
Important Notes
- macOS Code Signing: macOS apps must be code-signed for auto-updates to work
- Version Format: Use semantic versioning (e.g.,
1.0.0,2.0.1) for best compatibility - Update Files: electron-builder automatically generates the required metadata files (
latest.yml, etc.)
Testing Updates
Development Mode
To test updates during development, create a dev-app-update.yml file in the project root:
owner: amiayweb
repo: Hytale-F2P
provider: github
Then enable dev mode in the code:
autoUpdater.forceDevUpdateConfig = true;
Local Testing
For local testing, you can use a local server (like Minio) or a generic HTTP server to host update files.
User Experience
What Users See
- On Startup: The app silently checks for updates in the background
- Update Available: A notification appears if an update is found
- Downloading: Progress bar shows download status
- Ready to Install: User is notified when the update is ready
- Installation: Update installs on app restart or when user clicks "Install Now"
User Actions
- Users can manually check for updates through the settings/update menu
- Users can choose to install immediately or wait until next app launch
- Users can continue using the app while updates download in the background
Troubleshooting
Updates Not Working
- Check GitHub Releases: Ensure releases are published on GitHub
- Check Version: Make sure the version in
package.jsonis higher than the current release - Check Logs: Check the app logs for update-related errors
- Code Signing (macOS): Verify the app is properly code-signed
Common Issues
- "Update not available": Version in
package.jsonmay not be higher than the current release - "Download failed": Network issues or GitHub API rate limits
- "Installation failed": Permissions issue or app is running from an unsupported location
Technical Details
Supported Platforms
- Windows: NSIS installer (auto-update supported)
- macOS: DMG + ZIP (auto-update supported, requires code signing)
- Linux: AppImage, DEB, RPM, Pacman (auto-update supported)
Update Files Generated
When building, electron-builder generates:
latest.yml(Windows/Linux)latest-mac.yml(macOS)latest-linux.yml(Linux)
These files contain metadata about the latest release and are automatically uploaded to GitHub Releases.