Skip to content

Commit a38c1d0

Browse files
authored
Merge pull request #6 from GalvinPython/5-v201-rerelease-with-missing-packages
Rerelease the program with the missing packages
2 parents d082081 + 9711d6e commit a38c1d0

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

DeleteJavaCheckRewritten/Program.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
/// <summary>
22
/// DeleteJavaCheck-rewritten is an improved version from my original DeleteJavaCheck program with more automation
3-
/// Current Version: 2.0
3+
/// Current Version: 2.0.1
44
/// Changelog:
5-
/// - Custom installs are kept in the app's settings; no more files needed
6-
/// - Checks all possible installations automatically
5+
/// - Rereleased V2.0, but with the missing packages
76
/// </summary>
87

98
using System;
@@ -100,7 +99,7 @@ static void DestroyOld(string targetFile)
10099
Console.WriteLine("\n");
101100
WriteSection("Checking Old Launcher", "=".ToCharArray()[0]);
102101
string targetDir = @"C:\Program Files (x86)\Minecraft Launcher\game";
103-
if(Directory.Exists(targetDir))
102+
if (Directory.Exists(targetDir))
104103
{
105104
Console.WriteLine("Java Launcher Exists!");
106105
targetDir += targetFile;
@@ -177,4 +176,4 @@ static void EndProgram()
177176
}
178177
}
179178
}
180-
}
179+
}

LATEST.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.0.1
2+
Assembly version: `2.0.8509.35397`
3+
Rereleased V2.0, but with the missing packages
4+
15
# 2.0
26
Assembly version: `2.0.8487.18314`
37
Upgraded to Version 2 because everything changed so much. New framework version, improved experience and new everything.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# DeleteJavaCheck
22
|Latest Version|Latest Assembly|
33
|---|---|
4-
|2.0|2.0.8487.18314|
4+
|2.0.1|2.0.8509.35397|
55

66
**JavaCheck.jar** is a Java file shipped with the Minecraft launcher. This isn't problematic for most, but those that prefer to use newer versions of Java, or mods that are incapable with older versions of Java, can't modify their profiles to use the version that isn't defaulted for that Java version.
77
Thankfully, it's easy to bypass this by deleting this file, but is reinstalled after every update, so in the long run, this could be a useful application, especially for those rocking the beta launcher (like I do).
88

99
# Instructions
1010
## Downloading
11-
Download the .exe file found in the latest release, and place it somewhere memorable (such as your desktop). This app will only run with manual execution, so you'll be required to run it after every update.
11+
Download the .zip file found in the latest release, and extract it somewhere memorable (such as your desktop), and launch the .exe file inside it. This app will only run with manual execution, so you'll be required to run it after every update.
1212

1313
## Execution
1414
Run `DeleteJavaCheckRewritten.exe`, and if there's no issues, the file should be deleted

0 commit comments

Comments
 (0)