From f37f49967dd545285317ce406d68ee9d64aaac6c Mon Sep 17 00:00:00 2001 From: Ioannis Tsakpinis Date: Sat, 4 Jan 2025 22:40:09 +0200 Subject: [PATCH] release: LWJGL 3.3.6 --- client/routes/customize/config.ts | 2 ++ client/routes/customize/types.ts | 1 + client/routes/customize/versions/3.3.6.ts | 10 ++++++++++ client/routes/customize/versions/nightly.ts | 2 +- 4 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 client/routes/customize/versions/3.3.6.ts diff --git a/client/routes/customize/config.ts b/client/routes/customize/config.ts index b84a73d3..7c9d9dfc 100644 --- a/client/routes/customize/config.ts +++ b/client/routes/customize/config.ts @@ -16,6 +16,7 @@ import lwjgl_332 from './versions/3.3.2'; import lwjgl_333 from './versions/3.3.3'; import lwjgl_334 from './versions/3.3.4'; import lwjgl_335 from './versions/3.3.5'; +import lwjgl_336 from './versions/3.3.6'; import lwjgl_nightly from './versions/nightly'; import { Native, BuildType, Mode, Version, Language, Preset, NATIVE_ALL, Addon } from './types'; import { getUserAgentData } from '~/services/userAgentData'; @@ -349,6 +350,7 @@ function getInitialConfig(): BuildStore { lwjgl_333, lwjgl_334, lwjgl_335, + lwjgl_336, lwjgl_nightly, ].reduce((previousBuild: BuildBindings, nextBuildConfig: BuildBindingsReducer) => { const build = nextBuildConfig(previousBuild); diff --git a/client/routes/customize/types.ts b/client/routes/customize/types.ts index 6060bf4e..c65bd8b9 100644 --- a/client/routes/customize/types.ts +++ b/client/routes/customize/types.ts @@ -17,6 +17,7 @@ export enum Version { LWJGL333 = '3.3.3', LWJGL334 = '3.3.4', LWJGL335 = '3.3.5', + LWJGL336 = '3.3.6', Nightly = 'nightly', } diff --git a/client/routes/customize/versions/3.3.6.ts b/client/routes/customize/versions/3.3.6.ts new file mode 100644 index 00000000..34ed6678 --- /dev/null +++ b/client/routes/customize/versions/3.3.6.ts @@ -0,0 +1,10 @@ +import { Version } from '../types'; +import type { BuildBindings } from '../types'; + +export default (prev: BuildBindings): BuildBindings => ({ + ...prev, + version: Version.LWJGL336, + byId: { + ...prev.byId, + }, +}); diff --git a/client/routes/customize/versions/nightly.ts b/client/routes/customize/versions/nightly.ts index 3b24a133..c56f79cd 100644 --- a/client/routes/customize/versions/nightly.ts +++ b/client/routes/customize/versions/nightly.ts @@ -2,7 +2,7 @@ import { BuildBindings, Version } from '../types'; export default (prev: BuildBindings): BuildBindings => ({ ...prev, - version: Version.LWJGL335, + version: Version.LWJGL336, alias: Version.Nightly, byId: { ...prev.byId,