Skip to content

Commit

Permalink
release: LWJGL 3.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Dec 16, 2024
1 parent b1bc16e commit d6a8340
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/routes/customize/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import lwjgl_331 from './versions/3.3.1';
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_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 @@ -347,6 +348,7 @@ function getInitialConfig(): BuildStore {
lwjgl_332,
lwjgl_333,
lwjgl_334,
lwjgl_335,
lwjgl_nightly,
].reduce((previousBuild: BuildBindings, nextBuildConfig: BuildBindingsReducer) => {
const build = nextBuildConfig(previousBuild);
Expand Down
10 changes: 10 additions & 0 deletions client/routes/customize/versions/3.3.5.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.LWJGL335,
byId: {
...prev.byId,
},
});

0 comments on commit d6a8340

Please sign in to comment.