Compare commits

...

5 commits

Author SHA1 Message Date
Gravita
b1929f7927 [FIX] Bug fixes 2025-06-29 06:02:59 +07:00
Gravita
c46503fa95 [FIX] NPE with profile.verify 2025-06-29 05:42:36 +07:00
Gravita
8421da7772 [FIX] NPE with profile.verify 2025-06-29 05:38:03 +07:00
Gravita
26c21a3ec7 [FIX] pushUpdate: UnsupportedOperationException 2025-06-29 04:30:39 +07:00
microwin7
bd0423460f [ANY] Renames proguard directory for libraries
Renames the 'proguard' directory to 'proguard-libraries'
for better clarity and organization of library-related
Proguard files.
2025-06-28 21:49:39 +03:00
5 changed files with 12 additions and 9 deletions

View file

@ -129,7 +129,7 @@
tasks.register('dumpProguard', Copy) {
duplicatesStrategy = 'EXCLUDE'
into "$buildDir/libs/proguard"
into "$buildDir/libs/proguard-libraries"
from configurations.proguardPack
}

View file

@ -113,7 +113,9 @@ public CompletedProfile pushUpdate(UncompletedProfile profile, String tag, Clien
if(!Files.exists(assetDirPath)) {
Files.createDirectories(assetDirPath);
}
updatesDirMap.put("assets", new HashedDir(assetDirPath, null, true, true));
var assetsHDir = new HashedDir(assetDirPath, null, true, true);
updatesDirMap.put("assets", assetsHDir);
localProfile.assetDir = assetsHDir;
}
}
if(assetActions != null && !assetActions.isEmpty()) {
@ -182,7 +184,7 @@ private void writeCache(Path file) throws IOException {
}
private void readCache(Path file) throws IOException {
Map<String, HashedDir> updatesDirMap = new HashMap<>(16);
Map<String, HashedDir> updatesDirMap = new ConcurrentHashMap<>(16);
try (HInput input = new HInput(IOHelper.newInput(file))) {
int size = input.readLength(0);
for (int i = 0; i < size; ++i) {
@ -192,7 +194,7 @@ private void readCache(Path file) throws IOException {
}
}
logger.debug("Found {} updates from cache", updatesDirMap.size());
this.updatesDirMap = Collections.unmodifiableMap(updatesDirMap);
this.updatesDirMap = updatesDirMap;
}
public void readProfilesDir() throws IOException {
@ -248,7 +250,7 @@ public void sync(Collection<String> dirs) throws IOException {
newUpdatesDirMap.put(name, updateHDir);
}
}
updatesDirMap = Collections.unmodifiableMap(newUpdatesDirMap);
updatesDirMap = newUpdatesDirMap;
if (cacheUpdates) {
try {
writeCache(Path.of(cacheFile));

View file

@ -44,7 +44,7 @@ protected boolean showApplyDialog(String text) throws IOException {
return response.equals("y");
}
protected static Downloader downloadWithProgressBar(String taskName, List<Downloader.SizedFile> list, String baseUrl, Path targetDir) throws Exception {
public static Downloader downloadWithProgressBar(String taskName, List<Downloader.SizedFile> list, String baseUrl, Path targetDir) throws Exception {
long total = 0;
for (Downloader.SizedFile file : list) {
if(file.size < 0) {

View file

@ -297,6 +297,9 @@ public UUID getUUID() {
@Override
public String getMinecraftVersion() {
if(version == null) {
return null;
}
return version.toString();
}
@ -316,8 +319,6 @@ public boolean hasFlag(CompatibilityFlags flag) {
public void verify() {
// Version
getMinecraftVersion();
IOHelper.verifyFileName(getAssetIndex());
// Client
VerifyHelper.verify(getTitle(), VerifyHelper.NOT_EMPTY, "Profile title can't be empty");

@ -1 +1 @@
Subproject commit 3ce7d4feb1b95152917c9ed85a5186c145a9376c
Subproject commit e6b8af9b107ea8c7dab4fc5968cfd0cff05b7d61