8c3a8c8281
- Redirect Hosts' "Create your first redirect" panel now hides during the loading window on refresh, matching Hosted Sites/Proxy Hosts instead of staying visible the whole time (or briefly showing the wrong empty state when redirects do exist) - Fix a crash when any dialog (Hosted Site, Proxy Host, User, Password, or the shared settings dialog) is submitted implicitly, e.g. by pressing Enter in a field instead of clicking the button. event.submitter is null in that case, which threw on `button.disabled = true` before the save request was ever sent, silently dropping the whole save with no visible error. Added a resolveSubmitter() fallback that finds the dialog's real submit button when event.submitter is null. - Bump version to 0.11.32
20 lines
540 B
JSON
20 lines
540 B
JSON
{
|
|
"name": "site-gateway",
|
|
"version": "0.11.32",
|
|
"private": true,
|
|
"description": "Site Gateway: simple self-hosted website publishing, reverse proxying, and automatic HTTPS.",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node src/server.js",
|
|
"check": "node --check src/server.js && node --check src/storage.js && node --check src/public/app.js && node --check src/public/features.js"
|
|
},
|
|
"dependencies": {
|
|
"adm-zip": "0.5.16",
|
|
"express": "5.1.0",
|
|
"multer": "2.0.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
}
|
|
}
|