Skip to content

Commit 5d48c7b

Browse files
Merge branch 'main' into feat/lxc_backups
2 parents 5be88d3 + 81c00f5 commit 5d48c7b

File tree

437 files changed

+2688
-2857
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

437 files changed

+2688
-2857
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.10.2
1+
0.4.11

package-lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@
7171
"@types/jsonwebtoken": "^9.0.10",
7272
"@types/node": "^24.9.1",
7373
"@types/node-cron": "^3.0.11",
74-
"@types/react": "^19.0.0",
74+
"@types/react": "^19.2.4",
7575
"@types/react-dom": "^19.2.2",
7676
"@vitejs/plugin-react": "^5.1.0",
7777
"@vitest/coverage-v8": "^3.2.4",
7878
"@vitest/ui": "^3.2.4",
7979
"eslint": "^9.38.0",
8080
"eslint-config-next": "^15.1.6",
81-
"jsdom": "^27.1.0",
81+
"jsdom": "^27.2.0",
8282
"postcss": "^8.5.3",
8383
"prettier": "^3.5.3",
8484
"prettier-plugin-tailwindcss": "^0.7.1",
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
-- CreateTable
2+
CREATE TABLE "repositories" (
3+
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
4+
"url" TEXT NOT NULL,
5+
"enabled" BOOLEAN NOT NULL DEFAULT true,
6+
"is_default" BOOLEAN NOT NULL DEFAULT false,
7+
"is_removable" BOOLEAN NOT NULL DEFAULT true,
8+
"priority" INTEGER NOT NULL DEFAULT 0,
9+
"created_at" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
10+
"updated_at" DATETIME NOT NULL
11+
);
12+
13+
-- CreateIndex
14+
CREATE UNIQUE INDEX "repositories_url_key" ON "repositories"("url");

prisma/schema.prisma

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,16 @@ model PBSStorageCredential {
133133
@@index([server_id])
134134
@@map("pbs_storage_credentials")
135135
}
136+
137+
model Repository {
138+
id Int @id @default(autoincrement())
139+
url String @unique
140+
enabled Boolean @default(true)
141+
is_default Boolean @default(false)
142+
is_removable Boolean @default(true)
143+
priority Int @default(0)
144+
created_at DateTime @default(now())
145+
updated_at DateTime @updatedAt
146+
147+
@@map("repositories")
148+
}

scripts/json/2fauth.json

Lines changed: 0 additions & 44 deletions
This file was deleted.

scripts/json/actualbudget.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@
3131
"username": null,
3232
"password": null
3333
},
34-
"notes": []
34+
"notes": [],
35+
"repository_url": "https://github.com/community-scripts/ProxmoxVE"
3536
}

scripts/json/add-iptag.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@
4848
"text": "You can execute the ip tool manually with `iptag-run`",
4949
"type": "info"
5050
}
51-
]
51+
],
52+
"repository_url": "https://github.com/community-scripts/ProxmoxVE"
5253
}

scripts/json/add-netbird-lxc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@
4444
"text": "The script only works in Debian/Ubuntu, not in Alpine!",
4545
"type": "warning"
4646
}
47-
]
47+
],
48+
"repository_url": "https://github.com/community-scripts/ProxmoxVE"
4849
}

scripts/json/add-tailscale-lxc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@
4040
"text": "Execute within the Proxmox host shell",
4141
"type": "info"
4242
}
43-
]
43+
],
44+
"repository_url": "https://github.com/community-scripts/ProxmoxVE"
4445
}

0 commit comments

Comments
 (0)