macos
This commit is contained in:
@ -6,16 +6,17 @@ CLI tool for updating and launching [Project Epoch](https://www.project-epoch.ne
|
|||||||
|
|
||||||
- improve config generation
|
- improve config generation
|
||||||
- add ability to launch Epoch after an update
|
- add ability to launch Epoch after an update
|
||||||
- Properly test on macOS
|
|
||||||
|
|
||||||
## Instructions
|
## Instructions
|
||||||
|
|
||||||
1. Set up a copy of WoW 3.3.5 in a wine prefix or launcher of your choice. Chromiecraft has a good torrent you can use for the 3.3.5 client
|
1. Set up a copy of WoW 3.3.5 in a wine prefix or launcher of your choice. Chromiecraft has a good torrent you can use for the 3.3.5 client
|
||||||
|
1. For Linux, a `wine` prefix with `dxvk` installed works great, or you can use something like Lutris or Faugus-launcher
|
||||||
|
2. For macOS, the [Kegworks Wineskin port](https://github.com/Kegworks-App/Kegworks) works great
|
||||||
2. Install `epochcli` by either
|
2. Install `epochcli` by either
|
||||||
1. Download the latest binary from the [releases](https://git.burkey.co/eburk/epochcli/releases) page
|
1. Download the latest binary from the [releases](https://git.burkey.co/eburk/epochcli/releases) page
|
||||||
2. If you have the `go` toolchain installed, you can run `go install git.burkey.co/eburk/epochcli` to install to your `$GOROOT`
|
2. If you have the `go` toolchain installed, you can run `go install git.burkey.co/eburk/epochcli` to install to your `$GOROOT`
|
||||||
3. Compile the source yourself
|
3. Compile the source yourself
|
||||||
3. Run `epochcli` once. This will create a config file at `$HOME/.config/epoch-linux/config.toml`. Change the `WowDir` variable to your Wow game directory
|
3. Run `epochcli` once. This will create a config file at `$HOME/.config/epochcli/config.toml`. Change the `WowDir` variable to your Wow game directory
|
||||||
4. Run `epochcli` again. It will download the patch files from Epoch's servers to your Wow directory
|
4. Run `epochcli` again. It will download the patch files from Epoch's servers to your Wow directory
|
||||||
5. Use your launcher or tool of choice to startup Epoch in `wine`
|
5. Use your launcher or tool of choice to startup Epoch in `wine`
|
||||||
|
|
||||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
|||||||
module git.burkey.co/eburk/epoch-linux
|
module git.burkey.co/eburk/epochcli
|
||||||
|
|
||||||
go 1.24.3
|
go 1.24.3
|
||||||
|
|
||||||
|
2
main.go
2
main.go
@ -16,7 +16,7 @@ import (
|
|||||||
const (
|
const (
|
||||||
manifestUrl = "https://updater.project-epoch.net/api/manifest"
|
manifestUrl = "https://updater.project-epoch.net/api/manifest"
|
||||||
defaultWowPath = "/path/to/wow"
|
defaultWowPath = "/path/to/wow"
|
||||||
configDirName = "epoch-linux"
|
configDirName = "epochcli"
|
||||||
configName = "config.toml"
|
configName = "config.toml"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user