Skip to content

Commit 0b2d726

Browse files
Fix README typos and enhance clarity; add getModFiles function to mcAPI
1 parent 28dd117 commit 0b2d726

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
This is an minecraft launcher. But as you might see, you do not need to login into your microsoft account at the start. Do you see where this is going?
55

66
Basically, Mojang has their Jar files publicly on their servers. Without any authentification. The game itself doesn't even care if the user is valid. It just says: "oh, this seems kinda sus, but welp, I'm gonna lauch anyways"
7-
You cannot join Servers that aren't in offline mode (Aternos calls that setting "Allow Cracked Clients")
7+
You cannot join Servers that are in online mode (Aternos calls that setting "Allow Cracked Clients")
88

99
**UI Update!**
1010

1111
## **BUT**
12-
- This file DOESN'T violate minecrafts Eula
12+
- This repo DOESN'T violate minecrafts Eula
1313
- **You are at your own risk**
1414
- The software DOESN'T ship with any Minecraft Sourcecode
1515
- This is Java Edition, **not bedrock**

ui/externalScripts/main_preload.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@ contextBridge.exposeInMainWorld('mcAPI', {
66
},
77
downloadToModsFolder: (url) => {
88
ipcRenderer.send('downloadToModsFolder', url);
9+
},
10+
getModFiles: (url) => {
11+
ipcRenderer.send('getModFiles', url);
912
}
1013
})

0 commit comments

Comments
 (0)