Skip to content

Commit

Permalink
Update a0.6 pre-4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
calmilamsy committed Jun 24, 2019
1 parent 7b5bf7d commit 2d1c88d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
21 changes: 13 additions & 8 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Version format: \<prefix\>major.minor.bugfix
- Exceptions:
- - Pre: pre release versions will have pre-number appended to it. These versions should NOT be used if you have instances you care about.

[Latest release](#a06-pre32)
[Latest in-progress launcher version](#a06-pre4)
[Latest release](#a06-pre4)
[Latest in-progress version](#upcoming-website-changes)


### a0.1
Expand Down Expand Up @@ -110,18 +110,23 @@ Never let me QA test.
\* Fixed the unix compile script not uncluding mitmproxy resources.
\* Fixed the unit start script not working because I was referencing a non-existent file.

### Upcoming a0.6-pre4
### a0.6-pre4
Woo!!!11 Automate EVERYTHING!
Estimated release date: mid June - early July

~ Removed b1.8 from the blog.html.
~ Removed b1.8 from the blog.html.
~ Added support for more "modern" versions of minecraft into the proxy.
\+ Automated blank instance creation.
\+ Added the ability to cache sounds, LWJGL and MC versions. No more 200mb downloads every time you make an instance!
\+ Revamped options window.
\+ Automatic "dumb" mod installing. (just copies contents of zip to mc.jar)
\* Fixed the instance manager not blocking input to the main window.
\* Fixed a temp folder issue which could cause garbled instances, slow startup and crashes. (woops!)
\* Fixed the instance manager not blocking input to the main window.
\* Fixed a temp folder issue which could cause garbled instances, slow startup and crashes. (woops!)

### a0.6-pre4.1
Woops. Again.

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

### Upcoming website changes
Lets start to change how we install mods!
Expand Down Expand Up @@ -152,7 +157,7 @@ Estimated release date: gradual roll-out over late July to potentially late Augu
\#\+ Proper API documentation.
\#\+ A filled out wiki.
\#\+ Unification of website design.
\#\+ The ability to use uploaded pymcl launcher themes on the website?
\#\+ The ability to use uploaded pymcl launcher themes on the website?

### PyMCS
What could this be?
Expand All @@ -165,7 +170,7 @@ Estimated release date: when it's ready.

\+ A fully fleshed out mod installer which can spot conflicting mods and suggest solutions, lets the user pick optional config options and have a pretty mod image display on the modlist in a given modpack.
\+ A rudimentary modlist system. More documentation on this closer to release.
\+ Custom compile script to reduce likelyhood of incorrect python versions being used.
\+ Custom compile script to reduce likelyhood of incorrect python versions being used.
~ UI overhaul. Some of the UI isnt fit for purpose anymore.
~ Yet another global refactor. I have learned a lot about how pyqt5 works and some of my old code is terrible.
~ Better theming system.
Expand Down
1 change: 0 additions & 1 deletion mainlauncher.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,6 @@ def launch(self):
self.launchArgs.append("-" + arg)

if self.instanceConfig["proxyskin"] or self.instanceConfig["proxysound"] or self.instanceConfig["proxycape"]:

self.proxy = utils.minecraftProxy(doSkinFix=self.instanceConfig["proxyskin"], doSoundFix=self.instanceConfig["proxysound"], doCapeFix=self.instanceConfig["proxycape"], loop=asyncio.new_event_loop())
self.proxy.start()
self.launchArgs.append("-Dhttp.proxyHost=localhost")
Expand Down
1 change: 1 addition & 0 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,7 @@ def makeModpack(self, mcVer, isVanilla=False):
self.updateIStatus.emit("[%s%s]" % ("=" * done, " " * (50-done)))
oldDone = done

areYouThere(config.MC_DIR + "/tmp/" + self.modpackName + "/.minecraft/bin")
shutil.copy(config.MC_DIR + "/newinstcache/versions/" + mcVer + ".jar", config.MC_DIR + "/tmp/" + self.modpackName + "/.minecraft/bin/vanillamc.jar")

if not isVanilla:
Expand Down

0 comments on commit 2d1c88d

Please sign in to comment.