Skip to content

Commit

Permalink
Minor fixes:
Browse files Browse the repository at this point in the history
- Fixed the "Open Crash Report" button opening a file manager at the crash report.
- Actually bumped fabric-loader's version
  • Loading branch information
AlexIIL committed Feb 16, 2024
1 parent ae4107d commit 5134f89
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ group = org.quiltmc
description = The mod loading component of Quilt
url = https://github.com/quiltmc/quilt-loader
# Don't forget to change this in QuiltLoaderImpl as well
quilt_loader = 0.24.0-beta.4
quilt_loader = 0.24.0-beta.5

# Fabric & Quilt Libraries
asm = 9.6
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public final class QuiltLoaderImpl {

public static final int ASM_VERSION = Opcodes.ASM9;

public static final String VERSION = "0.24.0-beta.4";
public static final String VERSION = "0.24.0-beta.5";
public static final String MOD_ID = "quilt_loader";
public static final String DEFAULT_MODS_DIR = "mods";
public static final String DEFAULT_CACHE_DIR = ".cache";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static void displayError(String mainText, Throwable exception, boolean wa
}

if (crashReportFile != null) {
window.addFileViewButton(QuiltLoaderText.translate("button.open_crash_report"), crashReportFile);
window.addFileOpenButton(QuiltLoaderText.translate("button.open_crash_report"), crashReportFile);
window.addCopyFileToClipboardButton(QuiltLoaderText.translate("button.copy_crash_report"), crashReportFile);
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/quilt.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"provides": [
{
"id": "fabricloader",
"version": "0.15.3"
"version": "0.15.6"
}
],
"depends": [
Expand Down

0 comments on commit 5134f89

Please sign in to comment.