Skip to content

Commit

Permalink
release: LWJGL 3.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Jan 4, 2025
1 parent d6a8340 commit f37f499
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
2 changes: 2 additions & 0 deletions client/routes/customize/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions client/routes/customize/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
}

Expand Down
10 changes: 10 additions & 0 deletions client/routes/customize/versions/3.3.6.ts
Original file line number Diff line number Diff line change
@@ -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,
},
});
2 changes: 1 addition & 1 deletion client/routes/customize/versions/nightly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit f37f499

Please sign in to comment.