@@ -164,7 +164,7 @@ public static boolean update(JSONObject json, String postfix, boolean lwjglCompa
164164 updated |= mergePreset (preset_paulscode , json );
165165 }
166166 if (time .compareTo (LWJGL2_TIME ) > 0 ) {
167- if (!lwjgl3Blacklist .contains (id )) {
167+ if (!lwjgl3Blacklist .contains (id ) && time . compareTo ( LWJGL34_TIME ) < 0 ) {
168168 JSONObject preset_lwjgl3 = getPreset ("lwjgl3" );
169169 updated |= mergePreset (preset_lwjgl3 , json );
170170 if (lwjglCompat ) {
@@ -178,6 +178,13 @@ public static boolean update(JSONObject json, String postfix, boolean lwjglCompa
178178 updated |= removeLibrary (verLibs , "org.lwjgl.lwjgl" , "lwjgl" );
179179 updated |= removeLibrary (verLibs , "org.lwjgl.lwjgl" , "lwjgl_util" );
180180 updated |= removeLibrary (verLibs , "org.lwjgl.lwjgl" , "lwjgl-platform" );
181+ // updated |= removeLibrary(verLibs, "org.lwjgl", "lwjgl");
182+ // updated |= removeLibrary(verLibs, "org.lwjgl", "lwjgl-opengl");
183+ // updated |= removeLibrary(verLibs, "org.lwjgl", "lwjgl-openal");
184+ // updated |= removeLibrary(verLibs, "org.lwjgl", "lwjgl-glfw");
185+ // updated |= removeLibrary(verLibs, "org.lwjgl", "lwjgl-jemalloc");
186+ // updated |= removeLibrary(verLibs, "org.lwjgl", "lwjgl-stb");
187+ // updated |= removeLibrary(verLibs, "org.lwjgl", "lwjgl-freetype");
181188 updated |= mergePreset (preset_lwjgl3compat , json );
182189 updated |= mergePreset (preset_lwjgl3 , json );
183190 } else {
0 commit comments