diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5164fc1..dbbac32 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,5 +40,5 @@ jobs: path: | LICENSE README.md - target/x86_64-pc-windows-gnu/release/winhttp.dll + target/x86_64-pc-windows-gnu/release/winmm.dll if-no-files-found: error diff --git a/Cargo.toml b/Cargo.toml index ff56102..89416e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2024" [lib] crate-type = ["cdylib"] -name = "winhttp" +name = "winmm" [dependencies] skidscan = { git = "https://github.com/redstrate/skidscan", default-features = false } # my fork which contains various fixes diff --git a/README.md b/README.md index 5808285..51388d5 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Tweaks for the official FFXIV launcher. ## Usage -Grab a build from [GitHub Actions](https://github.com/redstrate/LauncherTweaks/actions) or build the project with the instructions below. Then, place the `winhttp.dll` next to the launcher. +Grab a build from [GitHub Actions](https://github.com/redstrate/LauncherTweaks/actions) or build the project with the instructions below. Then, place the `winmm.dll` next to the launcher. To configure the launcher URL, place a `launchertweaks.toml` next to the launcher executable: @@ -20,7 +20,7 @@ launcher_url = "https://launcher.mysite.localhost/" ### macOS/Linux -Wine will prefer it's own `winhttp.dll` by default, but you can change it the configuration (`winecfg`). Applications like [Bottles](https://usebottles.com/) have dedicated settings for this too. +Wine will prefer it's own `winmm.dll` by default, but you can change it the configuration (`winecfg`). Applications like [Bottles](https://usebottles.com/) have dedicated settings for this too. ## Building @@ -54,7 +54,7 @@ Here are some interesting native functions that are callable from JavaScript. To ### Logging Proxy -You can use the `winhttp_proxy` config option to sniff the non-web browser traffic from the launcher. You need a HTTP proxy capable of logging of course, I personally use [mitmproxy](https://mitmproxy.org). +You can use the `winmm_proxy` config option to sniff the non-web browser traffic from the launcher. You need a HTTP proxy capable of logging of course, I personally use [mitmproxy](https://mitmproxy.org). ## Credits