MISC: Remove APIs that were deprecated a long time ago (#2088)

This commit is contained in:
catloversg
2025-05-11 12:10:48 +07:00
committed by GitHub
parent 1a6c037c00
commit b53180ff1e
13 changed files with 151 additions and 193 deletions
+4
View File
@@ -30,6 +30,7 @@ import { exportMaterial } from "../Corporation/Actions";
import { getGoSave, loadGo } from "../Go/SaveLoad";
import { showAPIBreaks } from "./APIBreaks/APIBreak";
import { breakInfos261 } from "./APIBreaks/2.6.1";
import { breakInfos300 } from "./APIBreaks/3.0.0";
/** Function for performing a series of defined replacements. See 0.58.0 for usage */
function convert(code: string, changes: [RegExp, string][]): string {
@@ -545,4 +546,7 @@ Error: ${e}`,
}
if (found) Terminal.error("Filenames with whitespace found and corrected, see console for details.");
}
if (ver < 44) {
showAPIBreaks("3.0.0", ...breakInfos300);
}
}