Skip to content

Commit

Permalink
Bump provided version of fabric-loader
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexIIL committed Aug 17, 2023
1 parent 43a8ab8 commit 5a9d8d6
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ bin/
# Testing
run/
logs/
quiltloader.log
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.19.3
quilt_loader = 0.19.4

# Fabric & Quilt Libraries
asm = 9.5
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 @@ -130,7 +130,7 @@ public final class QuiltLoaderImpl {

public static final int ASM_VERSION = Opcodes.ASM9;

public static final String VERSION = "0.19.3";
public static final String VERSION = "0.19.4";
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
7 changes: 7 additions & 0 deletions src/main/resources/changelog/0.19.3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Features:

- Added versioning support for 1.20.2 snapshots (upstream sync from Fabric)
- Added a fallback system for the global config/cache folders
- If the normal global folders can't be accessed then per-instance fallback folders are used instead:
- `<instance>/config/global` and `<instance>/cache/global`.
- These also respect the `loader.configDir` and `loader.cacheDir` system properties.
3 changes: 3 additions & 0 deletions src/main/resources/changelog/0.19.4.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Features:

- Updated provided version of Fabric Loader to 0.14.22
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.14.21"
"version": "0.14.22"
}
]
}
Expand Down

0 comments on commit 5a9d8d6

Please sign in to comment.