Compare commits

...

3 Commits

Author SHA1 Message Date
github-actions[bot]
97de256ef0 chore: update github-versions.json 2026-03-12 12:11:02 +00:00
community-scripts-pr-app[bot]
51418f0d99 Update CHANGELOG.md (#12809)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-03-12 11:21:56 +00:00
CanbiZ (MickLesk)
3601388abe core: add mode=generated for unattended frontend installs (#12807) 2026-03-12 12:21:28 +01:00
3 changed files with 17 additions and 7 deletions

View File

@@ -438,6 +438,7 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
- #### ✨ New Features
- core: add mode=generated for unattended frontend installs [@MickLesk](https://github.com/MickLesk) ([#12807](https://github.com/community-scripts/ProxmoxVE/pull/12807))
- core: validate storage availability when loading defaults [@MickLesk](https://github.com/MickLesk) ([#12794](https://github.com/community-scripts/ProxmoxVE/pull/12794))
- #### 🔧 Refactor

View File

@@ -1,5 +1,5 @@
{
"generated": "2026-03-12T06:19:33Z",
"generated": "2026-03-12T12:11:02Z",
"versions": [
{
"slug": "2fauth",
@@ -158,9 +158,9 @@
{
"slug": "bookstack",
"repo": "BookStackApp/BookStack",
"version": "v25.12.8",
"version": "v25.12.9",
"pinned": false,
"date": "2026-02-27T10:33:14Z"
"date": "2026-03-12T11:04:45Z"
},
{
"slug": "byparr",
@@ -284,9 +284,9 @@
{
"slug": "discopanel",
"repo": "nickheyer/discopanel",
"version": "v2.0.3",
"version": "v2.0.4",
"pinned": false,
"date": "2026-03-11T07:29:10Z"
"date": "2026-03-12T07:10:41Z"
},
{
"slug": "dispatcharr",
@@ -1621,9 +1621,9 @@
{
"slug": "tududi",
"repo": "chrisvel/tududi",
"version": "v0.88.5",
"version": "v0.89.0",
"pinned": false,
"date": "2026-02-13T13:54:14Z"
"date": "2026-03-12T09:36:27Z"
},
{
"slug": "tunarr",

View File

@@ -3063,6 +3063,15 @@ install_script() {
header_info
CHOICE=""
;;
generated | GENERATED)
header_info
echo -e "${DEFAULT}${BOLD}${BL}Using Generated Settings on node $PVEHOST_NAME${CL}"
VERBOSE="no"
METHOD="generated"
base_settings "$VERBOSE"
echo_default
break
;;
*)
msg_error "Invalid option: $CHOICE"
exit 112