-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
36 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
build/darwin/MultiMC-Curseforge.app/Contents/MacOS/MultiMC-Curseforge | ||
build/linux/usr/bin/multimc-curseforge | ||
build/windows/MultiMC-Curseforge.exe | ||
build/darwin/PolyMC-Curseforge.app/Contents/MacOS/PolyMC-Curseforge | ||
build/linux/usr/bin/polymc-curseforge | ||
build/windows/PolyMC-Curseforge.exe | ||
output/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
# MultiMC-Curseforge | ||
# PolyMC-Curseforge | ||
|
||
A simple Go program that handles Curseforge's custom protocol and ccip files | ||
1. Reads the [CurseForge] `.ccip` file or `curseforge://` protocol | ||
2. Requests the [CurseForge] to get the zip url | ||
3. Launches [MultiMC] with the `--import` flag, with the url | ||
3. Launches [PolyMC] with the `--import` flag, with the url | ||
4. Downloads the modpack icon into the icons folder | ||
|
||
Instructions: | ||
- macOS - Move `MultiMC-Curseforge.app` into `Applications` | ||
- macOS - Move `PolyMC-Curseforge.app` into `Applications` | ||
- Linux - [AUR] or Manually install files into system | ||
- Windows - Move `MultiMC-Curseforge.exe` into `MultiMC` folder and execute as admin | ||
- Windows - Move `PolyMC-Curseforge.exe` into `PolyMC` folder and execute | ||
|
||
Note: Having the Curse app installed may break this. | ||
|
||
[Download](https://github.com/ShayBox/MultiMC-Curseforge/releases) | ||
[Download](https://github.com/ShayBox/PolyMC-Curseforge/releases) | ||
|
||
I do not support MultiMC and its developers anymore | ||
If you would like to know more, check out [PolyMC] | ||
|
||
[CurseForge]: https://www.curseforge.com/ | ||
[MultiMC]: https://multimc.org/ | ||
[AUR]: https://aur.archlinux.org/packages/multimc-curseforge/ | ||
[PolyMC]: https://polymc.org/ | ||
[AUR]: https://aur.archlinux.org/packages/Polymc-curseforge/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
4 changes: 2 additions & 2 deletions
4
...e/applications/multimc-curseforge.desktop → ...re/applications/polymc-curseforge.desktop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=MultiMC-Curseforge | ||
Exec=multimc-curseforge %u | ||
Name=PolyMC-Curseforge | ||
Exec=polymc-curseforge %u | ||
Terminal=false | ||
MimeType=x-scheme-handler/curseforge; | ||
OnlyShowIn= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module github.com/shaybox/multimc-curseforge | ||
module github.com/shaybox/polymc-curseforge | ||
|
||
go 1.17 | ||
|
||
require golang.org/x/sys v0.0.0-20210903071746-97244b99971b | ||
require golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
golang.org/x/sys v0.0.0-20210903071746-97244b99971b h1:3Dq0eVHn0uaQJmPO+/aYPI/fRMqdrVDbu7MQcku54gg= | ||
golang.org/x/sys v0.0.0-20210903071746-97244b99971b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e h1:fLOSk5Q00efkSvAm+4xcoXD+RRmLmmulPn5I3Y9F2EM= | ||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters