1
Fork 0
mirror of https://github.com/redstrate/LauncherTweaks.git synced 2025-05-20 09:27:46 +00:00

Fix DLL name (again)

It turns out I was using winmm all along, oops. This should really be it
now.
This commit is contained in:
Joshua Goins 2025-04-20 13:33:53 -04:00
parent 68626bce97
commit a1c7ad8ff4
3 changed files with 5 additions and 5 deletions

View file

@ -40,5 +40,5 @@ jobs:
path: | path: |
LICENSE LICENSE
README.md 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 if-no-files-found: error

View file

@ -5,7 +5,7 @@ edition = "2024"
[lib] [lib]
crate-type = ["cdylib"] crate-type = ["cdylib"]
name = "winhttp" name = "winmm"
[dependencies] [dependencies]
skidscan = { git = "https://github.com/redstrate/skidscan", default-features = false } # my fork which contains various fixes skidscan = { git = "https://github.com/redstrate/skidscan", default-features = false } # my fork which contains various fixes

View file

@ -9,7 +9,7 @@ Tweaks for the official FFXIV launcher.
## Usage ## 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: 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 ### 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 ## Building
@ -54,7 +54,7 @@ Here are some interesting native functions that are callable from JavaScript. To
### Logging Proxy ### 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 ## Credits