Make it easier for releasing versions
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
-- https://www.phpmyadmin.net/
|
-- https://www.phpmyadmin.net/
|
||||||
--
|
--
|
||||||
-- Host: localhost
|
-- Host: localhost
|
||||||
-- Generation Time: Feb 04, 2026 at 12:40 AM
|
-- Generation Time: Feb 10, 2026 at 07:51 PM
|
||||||
-- Server version: 12.1.2-MariaDB
|
-- Server version: 12.1.2-MariaDB
|
||||||
-- PHP Version: 8.5.2
|
-- PHP Version: 8.5.2
|
||||||
|
|
||||||
@@ -62,6 +62,7 @@ CREATE TABLE `launcherversionmanifest` (
|
|||||||
`id` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
`id` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
||||||
`displayName` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
`displayName` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
||||||
`releaseDate` bigint(20) NOT NULL,
|
`releaseDate` bigint(20) NOT NULL,
|
||||||
|
`downloadUrlVersion` text NOT NULL,
|
||||||
`downloadUrls` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
`downloadUrls` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
||||||
`platforms` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
`platforms` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
||||||
`executables` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
`executables` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ export const launcherVersionManifest = mysqlTable('launcherversionmanifest', {
|
|||||||
id: varchar('id', { length: 24 }).primaryKey().notNull(),
|
id: varchar('id', { length: 24 }).primaryKey().notNull(),
|
||||||
displayName: text('displayName').notNull(),
|
displayName: text('displayName').notNull(),
|
||||||
releaseDate: bigint('releaseDate', { mode: 'number' }).notNull(),
|
releaseDate: bigint('releaseDate', { mode: 'number' }).notNull(),
|
||||||
|
downloadUrlVersion: text('downloadUrlVersion').notNull(),
|
||||||
downloadUrls: text('downloadUrls').notNull(),
|
downloadUrls: text('downloadUrls').notNull(),
|
||||||
platforms: text('platforms').notNull(),
|
platforms: text('platforms').notNull(),
|
||||||
executables: text('executables').notNull(),
|
executables: text('executables').notNull(),
|
||||||
|
|||||||
@@ -78,6 +78,7 @@ export const handler = async (context: Context) => {
|
|||||||
displayName: launcherVersionManifest.displayName,
|
displayName: launcherVersionManifest.displayName,
|
||||||
releaseDate: launcherVersionManifest.releaseDate,
|
releaseDate: launcherVersionManifest.releaseDate,
|
||||||
game: launcherVersionManifest.game,
|
game: launcherVersionManifest.game,
|
||||||
|
downloadUrlVersion: launcherVersionManifest.downloadUrlVersion,
|
||||||
downloadUrls: launcherVersionManifest.downloadUrls,
|
downloadUrls: launcherVersionManifest.downloadUrls,
|
||||||
platforms: launcherVersionManifest.platforms,
|
platforms: launcherVersionManifest.platforms,
|
||||||
executables: launcherVersionManifest.executables,
|
executables: launcherVersionManifest.executables,
|
||||||
@@ -99,11 +100,14 @@ export const handler = async (context: Context) => {
|
|||||||
const versions = versionsRaw
|
const versions = versionsRaw
|
||||||
.map(v => ({
|
.map(v => ({
|
||||||
...v,
|
...v,
|
||||||
downloadUrls: JSON.parse(v.downloadUrls),
|
downloadUrls: JSON.parse(
|
||||||
|
v.downloadUrls.replaceAll('%version%', v.downloadUrlVersion)
|
||||||
|
),
|
||||||
platforms: JSON.parse(v.platforms),
|
platforms: JSON.parse(v.platforms),
|
||||||
executables: JSON.parse(v.executables),
|
executables: JSON.parse(v.executables),
|
||||||
sha512sums: JSON.parse(v.sha512sums),
|
sha512sums: JSON.parse(v.sha512sums),
|
||||||
sizes: JSON.parse(v.sizes),
|
sizes: JSON.parse(v.sizes),
|
||||||
|
downloadUrlVersion: undefined,
|
||||||
downloadUrl: undefined as string | undefined,
|
downloadUrl: undefined as string | undefined,
|
||||||
executable: undefined as string | undefined,
|
executable: undefined as string | undefined,
|
||||||
sha512sum: undefined as string | undefined,
|
sha512sum: undefined as string | undefined,
|
||||||
@@ -111,6 +115,7 @@ export const handler = async (context: Context) => {
|
|||||||
wine: undefined as boolean | undefined
|
wine: undefined as boolean | undefined
|
||||||
}))
|
}))
|
||||||
.filter(v => {
|
.filter(v => {
|
||||||
|
delete v.downloadUrlVersion
|
||||||
if (showAll || !platString) {
|
if (showAll || !platString) {
|
||||||
delete v.downloadUrl
|
delete v.downloadUrl
|
||||||
delete v.executable
|
delete v.executable
|
||||||
|
|||||||
Reference in New Issue
Block a user