mirror of
https://github.com/chylex/Minecraft-Window-Title.git
synced 2024-11-25 23:42:45 +01:00
Compare commits
2 Commits
5325cdf282
...
02d6f2a63d
Author | SHA1 | Date | |
---|---|---|---|
02d6f2a63d | |||
30a12716b6 |
@ -11,7 +11,7 @@ public class CustomWindowTitle implements ClientModInitializer {
|
||||
private final TitleConfig config;
|
||||
|
||||
public CustomWindowTitle() {
|
||||
config = TitleConfig.read(FabricLoader.getInstance().getConfigDirectory().getAbsolutePath());
|
||||
config = TitleConfig.read(FabricLoader.getInstance().getConfigDir().toAbsolutePath().toString());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -3,22 +3,22 @@ modId=customwindowtitle
|
||||
modName=Custom Window Title
|
||||
modDescription=Customize window title and icon.
|
||||
modAuthor=chylex
|
||||
modVersion=1.1.1
|
||||
modVersion=1.1.2
|
||||
modLicense=Unlicense
|
||||
modSourcesURL=https://github.com/chylex/Minecraft-Window-Title
|
||||
modIssuesURL=https://github.com/chylex/Minecraft-Window-Title/issues
|
||||
|
||||
# Dependencies
|
||||
minecraftVersion=1.19
|
||||
forgeVersion=41.1.0
|
||||
minecraftVersion=1.19.3
|
||||
forgeVersion=44.1.0
|
||||
fabricVersion=0.14.12
|
||||
loomVersion=0.12
|
||||
mixinVersion=0.8.5
|
||||
|
||||
# Constraints
|
||||
minimumMinecraftVersion=1.19
|
||||
minimumForgeVersion=41.0.1
|
||||
minimumFabricVersion=0.12.0
|
||||
minimumMinecraftVersion=1.19.3
|
||||
minimumForgeVersion=44.0.0
|
||||
minimumFabricVersion=0.12.3
|
||||
|
||||
# Gradle
|
||||
org.gradle.jvmargs=-Xmx3G
|
||||
|
@ -1,11 +1,11 @@
|
||||
package chylex.customwindowtitle;
|
||||
import net.minecraft.server.packs.resources.IoSupplier;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.nio.file.StandardOpenOption;
|
||||
import java.util.Collections;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
@ -113,19 +113,11 @@ public final class TitleConfig {
|
||||
return icon16 != null && icon32 != null;
|
||||
}
|
||||
|
||||
public InputStream readIcon16() {
|
||||
try {
|
||||
return Files.newInputStream(icon16, StandardOpenOption.READ);
|
||||
} catch (final IOException e) {
|
||||
throw new RuntimeException("CustomWindowTitle could not open the specified 16x16 icon: " + icon16, e);
|
||||
}
|
||||
public IoSupplier<InputStream> readIcon16() {
|
||||
return IoSupplier.create(icon16);
|
||||
}
|
||||
|
||||
public InputStream readIcon32() {
|
||||
try {
|
||||
return Files.newInputStream(icon32, StandardOpenOption.READ);
|
||||
} catch (final IOException e) {
|
||||
throw new RuntimeException("CustomWindowTitle could not open the specified 32x32 icon: " + icon16, e);
|
||||
}
|
||||
public IoSupplier<InputStream> readIcon32() {
|
||||
return IoSupplier.create(icon32);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user