-
Notifications
You must be signed in to change notification settings - Fork 848
feat: Ornithe 自动安装 #5875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat: Ornithe 自动安装 #5875
Changes from all commits
b7451ea
d7ccabc
2549445
567b5b1
d3cc805
b63ba39
e734da4
ca8eed5
fc57b8a
1c08b53
320cd8c
413815d
167ddd7
5293513
85066a1
53e5e06
18af318
5a2b03d
1a8b236
e232894
cdef2d4
84f8db2
821aaa0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -158,6 +158,10 @@ private void updateSupportedLoaders(ModManager modManager) { | |||||
| supportedLoaders.add(ModLoaderType.FABRIC); | ||||||
| } | ||||||
|
|
||||||
| if (analyzer.has(LibraryAnalyzer.LibraryType.ORNITHE)) { | ||||||
| supportedLoaders.add(ModLoaderType.FABRIC); | ||||||
|
||||||
| supportedLoaders.add(ModLoaderType.FABRIC); | |
| supportedLoaders.add(ModLoaderType.ORNITHE); |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -743,12 +743,14 @@ install.installer.install=Installing %s | |||||
| install.installer.install_offline=Install/Update from Local File | ||||||
| install.installer.install_offline.tooltip=We support using the local (Neo)Forge, Cleanroom, and OptiFine installer. | ||||||
| install.installer.install_online=Online Install | ||||||
| install.installer.install_online.tooltip=We currently support Forge, NeoForge, Cleanroom, OptiFine, Fabric, Legacy Fabric, Quilt, and LiteLoader. | ||||||
| install.installer.install_online.tooltip=We currently support Forge, NeoForge, Cleanroom, OptiFine, Fabric, Legacy Fabric, Ornithe, Quilt, and LiteLoader. | ||||||
| install.installer.liteloader=LiteLoader | ||||||
| install.installer.not_installed=Not installed | ||||||
| install.installer.optifine=OptiFine | ||||||
| install.installer.quilt=Quilt | ||||||
| install.installer.quilt-api=QSL/QFAPI | ||||||
| install.installer.ornithe=Ornithe | ||||||
| install.installer.ornithe-osl=Ornithe OSL | ||||||
| install.installer.version=%s | ||||||
| install.installer.external_version=%s (Installed by external process, which cannot be configured) | ||||||
| install.installing=Installing | ||||||
|
|
@@ -1114,7 +1116,7 @@ mods.mcmod.page=MCMod Page | |||||
| mods.mcmod.search=Search in MCMod | ||||||
| mods.modrinth=Modrinth | ||||||
| mods.name=Name | ||||||
| mods.not_modded=You must install a modloader (Forge, NeoForge, Fabric, Legacy Fabric, Quilt, or LiteLoader) first to manage your mods! | ||||||
| mods.not_modded=You must install a modloader (Forge, NeoForge, Fabric, Legacy Fabric, Ornithe, Quilt, or LiteLoader) first to manage your mods! | ||||||
| mods.restore=Restore | ||||||
| mods.url=Official Page | ||||||
| mods.update_modpack_mod.warning=Updating mods in a modpack can lead to irreparable results, possibly corrupting the modpack so that it cannot launch. Are you sure you want to update? | ||||||
|
|
@@ -1317,15 +1319,8 @@ settings.advanced.custom_commands.hint=The following environment variables are p | |||||
| \ · $INST_ID: instance name.\n\ | ||||||
| \ · $INST_DIR: absolute path of the instance working directory.\n\ | ||||||
| \ · $INST_MC_DIR: absolute path of the game directory.\n\ | ||||||
| \ · $INST_JAVA: java binary used for launch.\n\ | ||||||
| \ · $INST_FORGE: set if Forge is installed.\n\ | ||||||
| \ · $INST_NEOFORGE: set if NeoForge is installed.\n\ | ||||||
| \ · $INST_CLEANROOM: set if Cleanroom is installed.\n\ | ||||||
| \ · $INST_LITELOADER: set if LiteLoader is installed.\n\ | ||||||
| \ · $INST_OPTIFINE: set if OptiFine is installed.\n\ | ||||||
| \ · $INST_FABRIC: set if Fabric is installed.\n\ | ||||||
| \ · $INST_LEGACYFABRIC: set if Legacy Fabric is installed.\n\ | ||||||
| \ · $INST_QUILT: set if Quilt is installed. | ||||||
| \ · $INST_JAVA: java binary used for launch. | ||||||
| settings.advanced.custon_commands.env= \ · $INST_%s: set if %s is installed.; | ||||||
|
||||||
| settings.advanced.custon_commands.env= \ · $INST_%s: set if %s is installed.; | |
| settings.advanced.custon_commands.env= \ · $INST_%s: set if %s is installed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The i18n key name
settings.advanced.custon_commands.envappears to have a typo (“custon” vs “custom”). Since this is newly introduced, consider renaming it (and the corresponding properties entries) now to avoid propagating the misspelling across locales and future references.