Compare commits
69 Commits
cfe107d42c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41fd0789b6 | ||
|
|
cb6560f51a | ||
|
|
2313b6e28e | ||
|
|
1494fe4845 | ||
|
|
bff41a6a4d | ||
|
|
a96062a39d | ||
|
|
2f729dba08 | ||
|
|
03d236dcab | ||
|
|
a089cfae6c | ||
|
|
8ef90810d9 | ||
|
|
8f48e95abf | ||
|
|
05d27f96bb | ||
|
|
63790a38ff | ||
|
|
e111ee41c8 | ||
|
|
725b24fd51 | ||
|
|
a2c4f8b76f | ||
|
|
e1eede5a3e | ||
|
|
7505c63d45 | ||
|
|
2dd939b289 | ||
|
|
37ddf8fa5f | ||
|
|
8b55c06e9b | ||
|
|
5520bbfff8 | ||
|
|
75d7665647 | ||
|
|
76fde5202a | ||
|
|
283896a9ea | ||
|
|
d1f6e768b0 | ||
|
|
5c1ed97bf3 | ||
|
|
ccd88c4fec | ||
|
|
79c4864167 | ||
|
|
51eb9e415c | ||
|
|
98d961b348 | ||
|
|
ac656d6212 | ||
|
|
89e84dc8d3 | ||
|
|
f79df34424 | ||
|
|
18a589362f | ||
|
|
02e6c60318 | ||
|
|
d217e8e907 | ||
|
|
21f6b77636 | ||
|
|
f5909c48d7 | ||
|
|
9daf41d2fb | ||
|
|
68a1dd779c | ||
|
|
1554fd8c15 | ||
|
|
0d6a91bbfd | ||
|
|
69c8901641 | ||
|
|
cc7552b000 | ||
|
|
8af83dc44c | ||
|
|
8b913d89b6 | ||
|
|
21704b06a2 | ||
|
|
cdc8b19554 | ||
|
|
f461d26c07 | ||
|
|
b0bc5c441b | ||
|
|
6508891664 | ||
|
|
1c0618e055 | ||
|
|
40268bef5a | ||
|
|
c1cf52d9ce | ||
|
|
a0b0c3788a | ||
|
|
70bf446471 | ||
|
|
3f44ba8943 | ||
|
|
1009751f67 | ||
|
|
8bbc78b6d7 | ||
|
|
d111c3fd71 | ||
|
|
2097c0bde4 | ||
|
|
78ec06ef26 | ||
|
|
ca612d483e | ||
|
|
fcb72efb23 | ||
|
|
bd6a364a72 | ||
|
|
060ca7deb7 | ||
|
|
524e58c05d | ||
|
|
d8acd2db73 |
@@ -85,10 +85,6 @@ jobs:
|
||||
- name: Validate Manifest
|
||||
run: npx tsx tools/manifest/validate.ts "${{ matrix.manifest }}"
|
||||
|
||||
- name: Generate Changelog
|
||||
id: changelog
|
||||
run: npx tsx tools/changelog/generate-changelog.ts "${{ matrix.manifest }}"
|
||||
|
||||
- name: Cache Publisher Binary
|
||||
id: cache-publisher
|
||||
uses: actions/cache@v4
|
||||
@@ -133,6 +129,10 @@ jobs:
|
||||
mkdir -p ./builder-bin
|
||||
cp src/actions/builder/target/release/minify-json ./builder-bin/minify-json
|
||||
|
||||
- name: Generate Changelog
|
||||
id: changelog
|
||||
run: npx tsx tools/changelog/generate-changelog.ts "${{ matrix.manifest }}"
|
||||
|
||||
- name: Cache Packwiz Binaries
|
||||
id: cache-go
|
||||
uses: actions/cache@v4
|
||||
@@ -166,10 +166,8 @@ jobs:
|
||||
run: |
|
||||
set -eu
|
||||
chmod +x ./builder-bin/minify-json
|
||||
|
||||
MANIFEST='${{ matrix.manifest }}'
|
||||
PACK_DIR="$(dirname "$MANIFEST")"
|
||||
|
||||
if [[ "$MANIFEST" == datapacks/* ]]; then
|
||||
TARGET="${PACK_DIR}/content"
|
||||
if [ -d "$TARGET" ]; then
|
||||
@@ -199,7 +197,6 @@ jobs:
|
||||
set -eu
|
||||
MANIFEST='${{ matrix.manifest }}'
|
||||
PACK_DIR="$(dirname "$MANIFEST")"
|
||||
|
||||
if [[ "$MANIFEST" == datapacks/* ]]; then
|
||||
TARGET="${PACK_DIR}/content"
|
||||
if [ -d "${TARGET}.original" ]; then
|
||||
@@ -217,16 +214,27 @@ jobs:
|
||||
done
|
||||
fi
|
||||
|
||||
- name: Upload to Platforms
|
||||
if: "steps.meta.outputs.mr_id != '' || steps.meta.outputs.cf_id != ''"
|
||||
- name: Upload to Modrinth
|
||||
if: steps.meta.outputs.mr_id != ''
|
||||
uses: https://github.com/Kir-Antipov/mc-publish@v3.3
|
||||
with:
|
||||
modrinth-id: ${{ steps.meta.outputs.mr_id }}
|
||||
modrinth-token: ${{ secrets.MR }}
|
||||
modrinth-files: "${{ github.workspace }}/${{ steps.meta.outputs.path }}/artifacts/*.mrpack"
|
||||
files: "${{ github.workspace }}/${{ steps.meta.outputs.path }}/artifacts/*.mrpack"
|
||||
name: "${{ steps.meta.outputs.name }}"
|
||||
version: "${{ steps.meta.outputs.ver }}"
|
||||
version-type: ${{ steps.meta.outputs.release_type }}
|
||||
changelog: "${{ steps.changelog.outputs.notes }}"
|
||||
loaders: ${{ steps.meta.outputs.type == 'modpack' && steps.meta.outputs.loader || 'minecraft' }}
|
||||
game-versions: "${{ steps.meta.outputs.mc }}"
|
||||
|
||||
- name: Upload to CurseForge
|
||||
if: steps.meta.outputs.cf_id != ''
|
||||
uses: https://github.com/Kir-Antipov/mc-publish@v3.3
|
||||
with:
|
||||
curseforge-id: ${{ steps.meta.outputs.cf_id }}
|
||||
curseforge-token: ${{ secrets.CF }}
|
||||
curseforge-files: "${{ github.workspace }}/${{ steps.meta.outputs.path }}/artifacts/*.zip"
|
||||
files: "${{ github.workspace }}/${{ steps.meta.outputs.path }}/artifacts/*.zip"
|
||||
name: "${{ steps.meta.outputs.name }}"
|
||||
version: "${{ steps.meta.outputs.ver }}"
|
||||
version-type: ${{ steps.meta.outputs.release_type }}
|
||||
|
||||
@@ -70,9 +70,19 @@ file = "mods/iris.pw.toml"
|
||||
hash = "51fa2c64e9cf2d5558a2f1e575960a0a9f9f27f73486d0d679c2bc695eb11026"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/legacy4j.pw.toml"
|
||||
hash = "352614aff968bff29ac30e194a438c89b71e3a8ae859262c81bf525c5909bdef"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/moderner-beta.pw.toml"
|
||||
hash = "34a2a4fa550f2bbd2c478ebae50667e84c52bb6cae2575922de606173df5001c"
|
||||
hash = "6ec7169d17308e21df34afc3b1a8a9fabcb3eb8e2068d9ea427b8bb3dbcb1350"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/preferred-gamerules.pw.toml"
|
||||
hash = "985ecc4a35a2feab6d51b6cd6b95e7efa3f6b49aa5f549c132f59217b7a2a5a5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
|
||||
13
modpacks/2k/26.1.2-mr/mods/legacy4j.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Legacy4J"
|
||||
filename = "Legacy4J-26.1.2-1.9-pre-1-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gHvKJofA/versions/ki7nwBNI/Legacy4J-26.1.2-1.9-pre-1-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "15157c45a41d618990bfa8cd67effa942e3c86075201d7c0244a6de3fac4dd8188cc4fc650f579f6eefefadda6a07b8c8d8a3da31567ea57d912070d3c2b6d0b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gHvKJofA"
|
||||
version = "ki7nwBNI"
|
||||
@@ -1,13 +1,13 @@
|
||||
name = "Moderner Beta"
|
||||
filename = "moderner-beta-fabric-4.1.2+26.1.jar"
|
||||
filename = "moderner-beta-fabric-4.1.3+26.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/xkrdwmh2/versions/Eti6GsSk/moderner-beta-fabric-4.1.2%2B26.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/xkrdwmh2/versions/TEDqQ2dV/moderner-beta-fabric-4.1.3%2B26.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6a76eef6f23025afffe0b2879e8bb7251786730857a34df32db0a32254d70e14b5d441181669ab98856ba34ac1c230b767d708016a2fbe0fc1998e18412de858"
|
||||
hash = "e81f2153a14ead22bb9737d5fbe6ca01b8f2cd6315cb2393c3a9e2293dcc7a3d7f2106f1424e6be31c8d3c24fd889655afe4dd8d2b1c3d8aa61fe6902cc0a1a6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "xkrdwmh2"
|
||||
version = "Eti6GsSk"
|
||||
version = "TEDqQ2dV"
|
||||
|
||||
13
modpacks/2k/26.1.2-mr/mods/preferred-gamerules.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Preferred Gamerules"
|
||||
filename = "preferred-gamerules-1.1.1+1.19.4.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/kKib77nY/versions/WEWDEB3T/preferred-gamerules-1.1.1%2B1.19.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e3fc77d9ca08a7f882ced44fbf54108fe01e5e7c5021a705f018ccee3263ab6e07ce7b17c7ee030f542212127fa08a1f1b888616c9a08f2a2c6894f036ee3411"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "kKib77nY"
|
||||
version = "WEWDEB3T"
|
||||
@@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "b708f30b77ae43f9a37b4850a52f7e8e60094afcd2510557cf2f5c68b48d9267"
|
||||
hash = "27153bd248290efcb0da0662b2ad9bd1bbdd2028d25b911f032a17dfe30d4330"
|
||||
|
||||
[versions]
|
||||
fabric = "0.19.2"
|
||||
|
||||
@@ -184,7 +184,7 @@
|
||||
"legacy.options.controlType.wii_u": "Nintendo Switch Pro Controller",
|
||||
"legacy.options.controlType.xbox_360": "Xbox Controller S",
|
||||
"legacy.options.controlType.xbox_one": "Xbox One Controller",
|
||||
"legacy.options.controllerVirtualCursor": "V-Mouse",
|
||||
"legacy.options.controllerVirtualCursor": "In-Game Mouse",
|
||||
"legacy.options.creativeTab": "Legacy Creative Interface",
|
||||
"legacy.options.cursorMode": "Mouse Mode",
|
||||
"legacy.options.optionsPreset.gcn": "Low (GameCube)",
|
||||
|
||||
@@ -8,5 +8,5 @@
|
||||
"version": "26.04",
|
||||
"release_type": "release",
|
||||
"modrinth_id": "2000s-edition",
|
||||
"curseforge_id": "2000s-edition"
|
||||
"curseforge_id": "lce-2000s-edition"
|
||||
}
|
||||
|
||||
@@ -79,7 +79,7 @@
|
||||
#$CONFIG.text.modpack_name$ in lang files will be replaced with this value.
|
||||
#For example this placeHolder used in: "Oops, $CONFIG.text.modpack_name$ crashed!"
|
||||
#Supports Better Compatibility Checker integration. You can use $BCC.modpackName$, $BCC.modpackVersion$, etc and it will be replaced with value from BCC config.
|
||||
modpack_name = "Simply Legacy"
|
||||
modpack_name = "Re-Console+"
|
||||
|
||||
#Settings of message generated by Upload all button
|
||||
[generated_message]
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"version": 1,
|
||||
"overrides": {
|
||||
"fabricloader": {
|
||||
"+depends": {
|
||||
"fabricloader": ">=0.18.4"
|
||||
}
|
||||
},
|
||||
"animatica": {
|
||||
"-depends": {
|
||||
"fabric": "*"
|
||||
}
|
||||
},
|
||||
"e4mc": {
|
||||
"-depends": {
|
||||
"fabric": "*"
|
||||
}
|
||||
},
|
||||
"regsyncfix": {
|
||||
"-depends": {
|
||||
"fabric": "*"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -14,7 +14,7 @@ delete-unused-regions-after-days=-1
|
||||
# You may need to delete your existing cache if it is comprised of multiple worlds to prevent Bobby from merging into it.
|
||||
# Requires a `/bobby upgrade` after enabling with existing cache.
|
||||
dynamic-multi-world=false
|
||||
enabled=true
|
||||
enabled=false
|
||||
# Changes the maximum value configurable for Render Distance.
|
||||
#
|
||||
# Requires Sodium.
|
||||
|
||||
@@ -5,10 +5,15 @@
|
||||
#If equals CHANGE_ME, will open Forge/NeoForge/Fabric/Quilt discord link. Names of communities/channels also will be used not from config, but according to this link.
|
||||
#Must start with 'https://' or 'www.'
|
||||
help_link = "https://discord.com/invite/M9bQdm25Pk"
|
||||
#With this option, you can select the formulation of the GUI (e.g., in the help buttons, title).
|
||||
#Currently supported:
|
||||
# - DISCORD: Uses terminology like 'join the Discord' and 'post in #channel'.
|
||||
# - GITHUB: Uses terminology like 'visit the GitHub' and 'post into a new issue'.
|
||||
formulation_type = "DISCORD"
|
||||
#Anyways log will be uploaded to mclo.gs, but with this option you can wrap link to gnomebot.dev for better formatting.
|
||||
#If help_link equals 'CHANGE_ME', this value will be ignored and gnomebot.dev used.
|
||||
#Supported values: mclo.gs / gnomebot.dev
|
||||
upload_to = "mclo.gs"
|
||||
upload_to = "gnomebot.dev"
|
||||
#Show gui on minecraft crashed on modloading and FML error screen displayed.
|
||||
show_on_fml_error_screen = true
|
||||
#Close old CrashAssistantApp if it's still running when starting a new instance of Minecraft, to avoid confusing player with window from old crash.
|
||||
@@ -65,8 +70,11 @@
|
||||
[text]
|
||||
#$CONFIG.text.support_name$ in lang files will be replaced with this value.
|
||||
#For example this placeHolder used in: "Request help in the $CONFIG.text.support_name$"
|
||||
#Recommended values: "Modpack-X Discord", "Modpack-X GitHub repository", etc.
|
||||
support_name = "Nostalgica Reverie Discord"
|
||||
#$CONFIG.text.support_place$ in lang files will be replaced with this value.
|
||||
#Recommended values: "#support channel".
|
||||
#In case of formulation type `GITHUB` won't be used.
|
||||
support_place = "#modpack-support"
|
||||
#$CONFIG.text.modpack_name$ in lang files will be replaced with this value.
|
||||
#For example this placeHolder used in: "Oops, $CONFIG.text.modpack_name$ crashed!"
|
||||
@@ -75,13 +83,17 @@
|
||||
|
||||
#Settings of message generated by Upload all button
|
||||
[generated_message]
|
||||
#Add ### prefix before filename.
|
||||
#Add prefix before filename.
|
||||
#This can prevent too small, hard to hit on mobile links.
|
||||
h3_prefix = true
|
||||
#Replaces "\n" separator between logs to " | " to make message vertically smaller.
|
||||
one_line_logs = true
|
||||
#Recommended values: "### ".
|
||||
prefix = "### "
|
||||
#Separator between logs.
|
||||
#If you want vertical logs, use "\n$PREFIX$".
|
||||
logs_separator = " | "
|
||||
#Adds line in log list about this Intel processor can be corrupted.
|
||||
intel_corrupted_notification = true
|
||||
#Adds line in log list about piracy/offline mode or if check failed.
|
||||
piracy_notification = true
|
||||
#If the modpack is created for a non-English-speaking audience, сhange this to the language the modpack is designed for.
|
||||
#This lang will be used only for generating message by "Upload all..." button.Do not modify this value if there's a chance that the generated message will be sent to English-speaking communities.
|
||||
generated_msg_lang = "en_us"
|
||||
@@ -101,7 +113,37 @@
|
||||
put_analysis_result_to_message = true
|
||||
#Color modified mods count/analysis in msg with ANSI.
|
||||
#Can be needed to be disabled if issues are reported to something not supporting ANSI codeblocks, like GitHub.
|
||||
#If you disable this option, you may also want to remove "ansi" from "generated_message.ansi_block_pattern".
|
||||
color_message = true
|
||||
#Structure of the generated message.
|
||||
#Variables:
|
||||
#$HEADER$ - Title and upload link
|
||||
#$TEXT_UNDER_CRASHED$ - Custom text from config
|
||||
#$PREFIX$ - The prefix string
|
||||
#$LOGS$ - The joined logs
|
||||
#$PROBLEMATIC_FRAME$ - hs_err frame
|
||||
#$ANALYSIS_RESULT$ - Analysis results
|
||||
#$MODLIST_DIFF$ - Modlist changes
|
||||
message_structure = "$HEADER$$TEXT_UNDER_CRASHED$$PREFIX$$LOGS$\n$PROBLEMATIC_FRAME$$ANALYSIS_RESULT$$MODLIST_DIFF$"
|
||||
#Pattern for a single log line.
|
||||
#Variables: $LOG_NAME$, $FILE_NAME$, $LINK$.
|
||||
log_line_pattern = "$LOG_NAME$[$FILE_NAME$](<$LINK$>)"
|
||||
#Pattern for a split log line (too large for single upload).
|
||||
#Variables: $LOG_NAME$, $FILE_NAME$, $LINK_FIRST_LINES$, $LINK_LAST_LINES$, $TOO_BIG_REASONS$.
|
||||
log_line_split_pattern = "$LOG_NAME$[$FILE_NAME$ <TOLOWER>$MSG_LANG.gui.split_log_dialog_head$</TOLOWER>](<$LINK_FIRST_LINES$>) / [<TOLOWER>$MSG_LANG.gui.split_log_dialog_tail$</TOLOWER>](<$LINK_LAST_LINES$>) $TOO_BIG_REASONS$"
|
||||
#Pattern for ModList Diff and Analysis Results blocks.
|
||||
#Variables: $PREFIX$, $HEADER$, $CONTENT$.
|
||||
#If 'color_message' is false, remove 'ansi'.
|
||||
ansi_block_pattern = "$PREFIX$$HEADER$\n```ansi\n$CONTENT$\n```"
|
||||
#Pattern for formatting the problematic frame from hs_err.
|
||||
#Variables: $CONTENT$
|
||||
problematic_frame_pattern = "```java\n$CONTENT$\n```"
|
||||
#Pattern for simple link notifications (e.g. Intel fix, Piracy check, KubeJS scripts).
|
||||
#Variables: $TEXT$, $LINK$
|
||||
link_notification_pattern = "[$TEXT$](<$LINK$>)"
|
||||
#Pattern for the header of the modlist diff block (containing the link).
|
||||
#Variables: $PART1$ (text before link), $PART2$ (text after link), $LINK$.
|
||||
modlist_header_pattern = "[$PART1$](<$LINK$>)$PART2$"
|
||||
|
||||
#Settings of links copied by Upload and copy link buttons
|
||||
[copied_links]
|
||||
@@ -140,6 +182,9 @@
|
||||
#If enabled, will add resourcepacks to modlist.json
|
||||
#After filename where will be ' (resourcepack)' suffix.
|
||||
add_resourcepacks = false
|
||||
#If enabled, will add datapacks to modlist.json
|
||||
#After filename where will be ' (datapacks)' suffix.
|
||||
add_datapacks = false
|
||||
#If enabled, will add modloader jar name to modlist, to easily track if user changed version of modloader.
|
||||
add_modloader_jar_name = true
|
||||
#If enabled, will add generated modlist.txt, with names of all mods / modids / mixin configs / jarjar mods info to logs.
|
||||
@@ -151,19 +196,26 @@
|
||||
[too_many_changes_warning]
|
||||
#Set to the positive integer to enable feature. Set to negative integer to disable.
|
||||
#How many changes end user should make for warning to be displayed.
|
||||
count = 1
|
||||
count = -1
|
||||
#With this option, you can select the formulation of this warning, currently supported:
|
||||
# - NOTIFY: Just saying to the end user that what they made many changes and adding random mods or clicking
|
||||
#the "Update All" button is not a good idea without proper testing. It is expected to crash.
|
||||
# - DROP_SUPPORT: Saying what you are not providing support for that amount of changes, suggesting the end user to
|
||||
#re-install modpack or they are on their own with that amount of changes.
|
||||
formulation_type = "DROP_SUPPORT"
|
||||
formulation_type = "NOTIFY"
|
||||
|
||||
#Settings of analysis feature.
|
||||
#Analysing logs for most common reasons of crashes and displaying recommendations with fixes.
|
||||
[analysis]
|
||||
#Enable feature.
|
||||
enabled = true
|
||||
#By default if CA work in modpack mode and ran by the end user it won't display analysis if it blames mod which was part of original modpack.
|
||||
#And will blame only mods which were added/updated by end users. By enabling this option you can bypass this and it will blame any mods.
|
||||
trigger_on_original_modpack_mods = false
|
||||
#Delay in seconds for the OK button when a crash reason is shown for the first time.
|
||||
#Helps to ensure the user reads the recommendation.
|
||||
#Set to 0 or -1 to disable the delay.
|
||||
first_show_delay = 10
|
||||
#Here you can disable some Analysis by class names.
|
||||
#List of them can be found here: dev.kostromdan.mods.crash_assistant.app.logs_analyser.crash_reasons
|
||||
#For example "Create6Addons"
|
||||
@@ -192,13 +244,41 @@
|
||||
#Enable feature.
|
||||
enabled = true
|
||||
|
||||
#Settings of notifying about piracy/offline mode.
|
||||
[piracy]
|
||||
#Enable feature.
|
||||
#Note: This option is ignored if general.help_link is default (CHANGE_ME).
|
||||
#Notifies if in your community (Discord/GitHub) piracy is not supported. Recommended to enable for modpacks.
|
||||
enabled = false
|
||||
#Delay in seconds for the OK button when piracy warning is shown.
|
||||
#Set to 0 or -1 to disable the delay.
|
||||
delay = 10
|
||||
|
||||
[greeting]
|
||||
#You don't need to touch this option.
|
||||
#On first world join of modpack creator if set to false shows greeting, then self enables.
|
||||
shown_greeting = true
|
||||
|
||||
#Settings of scripting feature.
|
||||
#Allows you to add custom scripts for log analysis.
|
||||
#Scripts should be placed in config/crash_assistant/scripts/log_analysis folder.
|
||||
[scripts]
|
||||
#Enable feature.
|
||||
enabled = true
|
||||
#Enable Scripts IDE in the GUI.
|
||||
ide_enabled = true
|
||||
#By changing this value you can disable creating "scripts" folder and placing example scripts there.
|
||||
generate_scripts_folder_with_example = true
|
||||
|
||||
#You can customise GUI with this options.
|
||||
[gui_customisation]
|
||||
#Name of a FlatLaf IntelliJ Themes file in config/crash_assistant folder or core theme name.
|
||||
#If file doesn't exist and no core theme matches, themes will be disabled and Standard Swing look and feel used.
|
||||
#Supported core themes: 'FlatLightLaf', 'FlatDarkLaf', 'FlatIntelliJLaf', 'FlatDarculaLaf', 'FlatMacLightLaf', 'FlatMacDarkLaf'.
|
||||
#Supports any IntelliJ Theme file with '.theme.json' extension.
|
||||
#If you prefer standard Swing look and feel, use 'Swing'.
|
||||
#Look out our guide about theme support: https://github.com/KostromDan/Crash-Assistant/blob/pages/guides/Theme%20Support/Getting%20Started.md
|
||||
theme_file_name = "FlatDarkLaf"
|
||||
#Will hide Upload All Button from GUI.
|
||||
disable_upload_all_button = false
|
||||
#Append comment text with notice about sending screenshot of this gui tells nothing to modpack creators.
|
||||
@@ -227,13 +307,34 @@
|
||||
#Same as upload_all_button_foreground_color, but for Auto-Fix button (in integrated GPU warning).
|
||||
#Default for this button is "0_178_0" (dark green color).
|
||||
auto_fix_button_foreground_color = "0_178_0"
|
||||
#Color of the animated border for the screenshot notice.
|
||||
#format is "R_G_B", range is 0-255, for example "255_0_0" is red color.
|
||||
#Default for this is "255_0_0" (red color).
|
||||
screenshot_of_gui_notice_animated_border_color = "255_0_0"
|
||||
#Color of the text for the screenshot notice (inside the animated border).
|
||||
#format is "R_G_B", range is 0-255, for example "255_0_0" is red color.
|
||||
#Default for this is "255_0_0" (red color).
|
||||
screenshot_of_gui_notice_text_color = "255_0_0"
|
||||
#Color of the button blinking on success action (e.g. upload all finished).
|
||||
#format is "R_G_B", range is 0-255.
|
||||
#Default is "100_255_100" (light green).
|
||||
blinking_button_success_color = "100_255_100"
|
||||
#Color of the button blinking on attention request (e.g. click on link in description).
|
||||
#format is "R_G_B", range is 0-255.
|
||||
#Default is "100_100_255" (light blue).
|
||||
blinking_button_attention_color = "100_100_255"
|
||||
#Color of the button blinking on error (e.g. failed upload).
|
||||
#format is "R_G_B", range is 0-255.
|
||||
#Default is "255_100_100" (light red).
|
||||
blinking_button_error_color = "255_100_100"
|
||||
#Path to a modpack logo to display in the top of the GUI.
|
||||
#Path is relative to the Minecraft instance folder. Leave empty to disable.
|
||||
#WARNING: use only '/' path separator. '\' will corrupt config!
|
||||
modpack_logo_path = ""
|
||||
#If true, the logo will be larger, Replacing a some of `don't send screenshot` notice.
|
||||
#If false, it will be smaller and logo will be end right where the `don't send screenshot` notice starts.
|
||||
#You should try both, but most likely:
|
||||
#- If you have some long text in the discord description, you will love the small one.
|
||||
#- If you have some long text in the discord/github name, you will love the small one.
|
||||
#- If the text is short, you will love the large one.
|
||||
modpack_logo_large_mode = false
|
||||
#Limit modpack logo height. Default is -1, which means it's calculated automatically.
|
||||
@@ -251,3 +352,8 @@
|
||||
#Enable feature.
|
||||
enabled = true
|
||||
|
||||
#Options to help debug the Crash Assistant.
|
||||
[debug]
|
||||
#Debug option to crash immediately after Crash Assistant launched its process to conveniently debug it, configure it without need to manually crash.
|
||||
crash_after_init = false
|
||||
|
||||
|
||||
8
modpacks/rc-plus/26.1.2-mr/config/modpack_defaults/config/cwb.json
Executable file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"fullscreenMode": "BORDERLESS",
|
||||
"preferredFullscreenMode": "BORDERLESS",
|
||||
"fullscreenType": "",
|
||||
"borderlessFullscreenType": "",
|
||||
"useScaledFramebuffer": false,
|
||||
"pauseOnLostFocusDuringMultiplayer": false
|
||||
}
|
||||
@@ -42,6 +42,28 @@
|
||||
"component_key.cpm.qa_8": "none",
|
||||
"component_key.cpm.qa_9": "none",
|
||||
"component_key.cpm.renderToggle": "none",
|
||||
"component_key.debug.clearChat": "none",
|
||||
"component_key.debug.copyLocation": "none",
|
||||
"component_key.debug.copyRecreateCommand": "none",
|
||||
"component_key.debug.crash": "none",
|
||||
"component_key.debug.debugOptions": "none",
|
||||
"component_key.debug.dumpDynamicTextures": "none",
|
||||
"component_key.debug.dumpVersion": "none",
|
||||
"component_key.debug.focusPause": "none",
|
||||
"component_key.debug.fpsCharts": "none",
|
||||
"component_key.debug.lightmapTexture": "none",
|
||||
"component_key.debug.modifier": "none",
|
||||
"component_key.debug.networkCharts": "none",
|
||||
"component_key.debug.overlay": "none",
|
||||
"component_key.debug.profiling": "none",
|
||||
"component_key.debug.profilingChart": "none",
|
||||
"component_key.debug.reloadChunk": "none",
|
||||
"component_key.debug.reloadResourcePacks": "none",
|
||||
"component_key.debug.showAdvancedTooltips": "none",
|
||||
"component_key.debug.showChunkBorders": "none",
|
||||
"component_key.debug.showHitboxes": "none",
|
||||
"component_key.debug.spectate": "none",
|
||||
"component_key.debug.switchGameMode": "none",
|
||||
"component_key.disable_voice_chat": "none",
|
||||
"component_key.drop": "right_button",
|
||||
"component_key.dynamic_fps.toggle_disabled": "none",
|
||||
@@ -80,7 +102,9 @@
|
||||
"component_key.spectatorOutlines": "none",
|
||||
"component_key.sprint": "none",
|
||||
"component_key.swapOffhand": "none",
|
||||
"component_key.toggleGui": "none",
|
||||
"component_key.togglePerspective": "left_stick_button",
|
||||
"component_key.toggleSpectatorShaderEffects": "none",
|
||||
"component_key.use": "left_trigger",
|
||||
"component_key.voice_chat": "none",
|
||||
"component_key.voice_chat_adjust_volumes": "none",
|
||||
@@ -108,6 +132,9 @@
|
||||
"controlType": "auto",
|
||||
"controllerCursorAtFirstInventorySlot": true,
|
||||
"controllerDoubleClick": false,
|
||||
"controllerLedBlue": 255,
|
||||
"controllerLedGreen": 255,
|
||||
"controllerLedRed": 255,
|
||||
"controllerSensitivity": 0.5,
|
||||
"controllerToasts": true,
|
||||
"controllerToggleAttack": false,
|
||||
@@ -120,9 +147,13 @@
|
||||
"cursorAtFirstInventorySlot": false,
|
||||
"cursorMode": "auto",
|
||||
"defaultParticlePhysics": true,
|
||||
"customSkinAnimation": true,
|
||||
"deathMessages": true,
|
||||
"defaultShowCraftableRecipes": false,
|
||||
"directSaveLoad": false,
|
||||
"displayChatIndicators": false,
|
||||
"displayControlTooltips": true,
|
||||
"displayGameMessages": true,
|
||||
"displayGamma": true,
|
||||
"displayHUD": true,
|
||||
"displayHand": true,
|
||||
@@ -130,22 +161,34 @@
|
||||
"displayNameTagBorder": true,
|
||||
"displayPackManagementTooltips": true,
|
||||
"enhancedItemTranslucency": true,
|
||||
"displayRealmsButton": false,
|
||||
"enhancedPistonMovingRenderer": true,
|
||||
"fakeAutosaveScreen": false,
|
||||
"fastLeavesCustomModels": false,
|
||||
"fastLeavesWhenBlocked": false,
|
||||
"fakeManualSaveScreen": false,
|
||||
"favoriteSkinIds": [],
|
||||
"flyingViewRolling": true,
|
||||
"forceLegacyFlight": false,
|
||||
"forceLegacyOffhandLimits": false,
|
||||
"forceLegacyShieldControls": false,
|
||||
"forceLegacySwimming": false,
|
||||
"forceMixedCrafting": false,
|
||||
"forceSmoothMovement": false,
|
||||
"gameTooltips": true,
|
||||
"gamma": 0.5,
|
||||
"headFollowsTheCamera": true,
|
||||
"hideAdvancedOptionsTooltip": false,
|
||||
"hideArmorOnAllBoxSkins": false,
|
||||
"hideExperimentalWorldWarning": true,
|
||||
"hideSodiumSettings": false,
|
||||
"hints": true,
|
||||
"hoverFocusSound": false,
|
||||
"hudDelay": 200,
|
||||
"hudDistance": 1.0,
|
||||
"hudOpacity": 0.8,
|
||||
"hudScale": 2,
|
||||
"inGameOnlineIds": true,
|
||||
"interfaceSensitivity": 0.5,
|
||||
"inventoryHoverFocusSound": false,
|
||||
"invertControllerButtons": false,
|
||||
@@ -156,16 +199,19 @@
|
||||
"itemTooltipEllipsis": true,
|
||||
"lastLoadedMinecraftVersion": "1.20.4",
|
||||
"lastLoadedVersion": "1.8.7",
|
||||
"lceClouds": false,
|
||||
"leaderboards": true,
|
||||
"leftStickDeadZone": 0.25,
|
||||
"leftTriggerDeadZone": 0.2,
|
||||
"legacyBabyVillagerHead": true,
|
||||
"legacyCloudHeightAndTexture": false,
|
||||
"legacyCreativeBlockPlacing": true,
|
||||
"legacyCursor": true,
|
||||
"legacyDrownedAnimation": true,
|
||||
"legacyEntityFireTint": true,
|
||||
"legacyEvokerFangs": true,
|
||||
"legacyFireworks": true,
|
||||
"legacyFont": true,
|
||||
"legacyHearts": true,
|
||||
"legacyIntroAndReloading": true,
|
||||
"legacyItemPickup": true,
|
||||
@@ -175,7 +221,9 @@
|
||||
"legacyOverstackedItems": true,
|
||||
"legacyPanorama": true,
|
||||
"legacyPotionsBar": false,
|
||||
"legacySettingsMenus": false,
|
||||
"legacySkyShape": false,
|
||||
"legacyZombieAggressionAnimation": true,
|
||||
"limitCursor": true,
|
||||
"linearCameraMovement": false,
|
||||
"lockControlTypeChange": false,
|
||||
@@ -185,31 +233,39 @@
|
||||
"merchantTradingIndicator": true,
|
||||
"minecartSounds": true,
|
||||
"modCraftingTabs": false,
|
||||
"optionsPreset": "legacy:lmr_default",
|
||||
"optionsPreset": "legacy:medium",
|
||||
"overrideTerrainFogEnd": true,
|
||||
"overrideTerrainFogStart": true,
|
||||
"optionsPreset": "legacy:medium",
|
||||
"rightStickDeadZone": 0.34,
|
||||
"rightTriggerDeadZone": 0.2,
|
||||
"saveCache": false,
|
||||
"searchCreativeTab": true,
|
||||
"screenshotToasts": true,
|
||||
"selectedController": 0,
|
||||
"selectedControllerHandler": 1,
|
||||
"selectedItemTooltipLines": 4,
|
||||
"selectedItemTooltipSpacing": 12,
|
||||
"selectedSkinId": "",
|
||||
"selectedSkinPackId": "",
|
||||
"selectedSkinUserId": "",
|
||||
"showCustomPackOptionsTooltip": true,
|
||||
"showOptionsPresetInLegacyGraphics": true,
|
||||
"showVanillaRecipeBook": false,
|
||||
"skinCloudRelayUrl": "https://legacy4j-skins-relay.creepereater201.workers.dev",
|
||||
"skinSelectionInitialized": false,
|
||||
"skipInitialSaveWarning": false,
|
||||
"skipIntro": false,
|
||||
"smoothAnimatedCharacter": false,
|
||||
"smoothMovement": true,
|
||||
"smoothPreviewScroll": false,
|
||||
"systemCursor": false,
|
||||
"systemMessagesAsOverlay": false,
|
||||
"terrainFogEnd": 16,
|
||||
"terrainFogStart": 2,
|
||||
"terrainFogStart": 4,
|
||||
"titleScreenFade": false,
|
||||
"titleScreenVersionText": false,
|
||||
"tooltipBoxes": true,
|
||||
"tu3ChangeSkinScreen": false,
|
||||
"uiMode": "auto",
|
||||
"unbindConflictingButtons": true,
|
||||
"unbindConflictingKeys": true,
|
||||
|
||||
@@ -2,17 +2,25 @@ version:3839
|
||||
biomeBlendRadius:1
|
||||
enableVsync:false
|
||||
fullscreen:true
|
||||
exclusiveFullscreen:true
|
||||
gamma:0.0
|
||||
textureFiltering:0
|
||||
fov:-0.05
|
||||
graphicsPreset:"custom"
|
||||
maxFps:250
|
||||
renderDistance:12
|
||||
renderDistance:18
|
||||
simulationDistance:8
|
||||
soundCategory_master:0.50
|
||||
soundCategory_music:0.50
|
||||
notificationDisplayTime:1.2
|
||||
attackIndicator:0
|
||||
attackIndicator:2
|
||||
overrideWidth:854
|
||||
overrideHeight:480
|
||||
key_legacy.key.inventory:key.keyboard.e
|
||||
key_key.hide_icons:key.keyboard.z
|
||||
key_key.voice_chat_group:key.keyboard.b
|
||||
key_key.cpm.gestureMenu:key.keyboard.semicolon
|
||||
key_iris.keybind.reload:key.keyboard.u
|
||||
key_legacy.key.crafting:key.keyboard.r
|
||||
cloudRange:48
|
||||
musicFrequency:"FREQUENT"
|
||||
|
||||
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 2.8 MiB After Width: | Height: | Size: 2.8 MiB |
|
Before Width: | Height: | Size: 2.8 MiB After Width: | Height: | Size: 2.8 MiB |
|
Before Width: | Height: | Size: 2.8 MiB After Width: | Height: | Size: 2.8 MiB |
|
Before Width: | Height: | Size: 2.8 MiB After Width: | Height: | Size: 2.8 MiB |
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 592 B After Width: | Height: | Size: 592 B |
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 346 B |
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 91 KiB |
|
Before Width: | Height: | Size: 745 B After Width: | Height: | Size: 745 B |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 763 B After Width: | Height: | Size: 763 B |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 481 B After Width: | Height: | Size: 481 B |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 490 B |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 484 B After Width: | Height: | Size: 484 B |
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 837 B After Width: | Height: | Size: 837 B |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 496 B After Width: | Height: | Size: 496 B |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 583 B After Width: | Height: | Size: 583 B |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |