Skip to content

Commit f4554d7

Browse files
author
calmilamsy
committed
Update a0.4.2
1 parent 2d1c88d commit f4554d7

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Version format: \<prefix\>major.minor.bugfix
1313
- Exceptions:
1414
- - Pre: pre release versions will have pre-number appended to it. These versions should NOT be used if you have instances you care about.
1515

16-
[Latest release](#a06-pre4)
16+
[Latest release](#a06-pre4.2)
1717
[Latest in-progress version](#upcoming-website-changes)
1818

1919

@@ -128,6 +128,11 @@ Woops. Again.
128128

129129
\* Fixed a temp folder issue which caused crashes because of folders not being generated properly.
130130

131+
### a0.6-pre4.2
132+
Definately not QA testing.
133+
134+
\* Fixed an issue where lwjgl wasnt downloaded to the right folder.
135+
131136
### Upcoming website changes
132137
Lets start to change how we install mods!
133138
Ordered in chronological order of release.

compile_win.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ PAUSE
1010

1111
virtualenv venv
1212

13-
echo Activating venv. && venv\scripts\activate && echo Adding dependencies. && pip install pyqt5 requests appdirs pypresence mitmproxy && echo Using pyinstaller. && pyinstaller -y -F -i "favicon.ico" --add-data "background.png";"." --add-data "logo.png";"." --add-data "favicon.ico";"." --add-data "blogbackground.png";"." --add-data "blog.html";"." --add-data "refresh.png";"." --add-data "venv\Lib\site-packages\mitmproxy\addons\onboardingapp";"mitmproxy\addons\onboardingapp" --add-data "EasyMineLauncher.jar";"." pymcl.py
13+
echo Activating venv. && venv\scripts\activate && echo Adding dependencies. && pip install pyqt5 requests appdirs pypresence mitmproxy pyinstaller && echo Using pyinstaller. && pyinstaller -y -F -i "favicon.ico" --add-data "background.png";"." --add-data "logo.png";"." --add-data "favicon.ico";"." --add-data "blogbackground.png";"." --add-data "blog.html";"." --add-data "refresh.png";"." --add-data "venv\Lib\site-packages\mitmproxy\addons\onboardingapp";"mitmproxy\addons\onboardingapp" --add-data "EasyMineLauncher.jar";"." pymcl.py
1414
echo Complete!
1515
PAUSE

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@
278278
}
279279
}
280280

281-
VER = "v0.6 Alpha Pre 4"
281+
VER = "v0.6 Alpha Pre 4.2"
282282

283283
PRINT_INFO = True
284284
PRINT_WARN = True

utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ def makeModpack(self, mcVer, isVanilla=False):
562562

563563
dl = 0
564564
total_length = int(total_length)
565-
with io.open(config.MC_DIR + "/tmp/lwjgl.zip", 'wb') as fd:
565+
with io.open(config.MC_DIR + "/newinstcache/lwjgl.zip", 'wb') as fd:
566566
oldDone = 0
567567
for chunk in response.iter_content(chunk_size=4096):
568568
dl += len(chunk)

0 commit comments

Comments
 (0)