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:
parent
68626bce97
commit
a1c7ad8ff4
3 changed files with 5 additions and 5 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue