3 Commits

Author SHA1 Message Date
340243a1c9 chore: bump version
Some checks failed
Build Project / build (push) Has been cancelled
Deploy Documentation / deploy (push) Has been cancelled
Build Project / Upload Nightly Build to GitHub Releases (push) Has been cancelled
2025-09-18 04:21:18 +03:00
9b7686c29e fix: resolves #19 2025-09-18 04:15:12 +03:00
78d1ddc2b0 feat: add star history section to README 2025-07-13 00:46:51 +03:00
4 changed files with 13 additions and 8 deletions

View File

@@ -44,13 +44,13 @@ Logs are stored in `C:\windows\logs\bridge.log`.
- If you are running Steam, Lutris, etc in a Flatpak, you will need to allow the bridge to access the `/run/user/1000/discord-ipc-0` file. - If you are running Steam, Lutris, etc in a Flatpak, you will need to allow the bridge to access the `/run/user/1000/discord-ipc-0` file.
- ##### By using [Flatseal](https://flathub.org/apps/details/com.github.tchx84.Flatseal) - ##### By using [Flatseal](https://flathub.org/apps/details/com.github.tchx84.Flatseal)
- Add `xdg-run/discord-ipc-0` under `Filesystems` category - Add `xdg-run/discord-ipc-0`, `xdg-run/.flatpak/dev.vencord.Vesktop:create` and `xdg-run/.flatpak/com.discordapp.Discord:create` under `Filesystems` category
- ![flatseal](docs/assets/flatseal_permission.png) - ![flatseal](docs/assets/flatseal_permission.png)
- ##### By using the terminal - ##### By using the terminal
- Per application - Per application
- `flatpak override --filesystem=xdg-run/discord-ipc-0 <flatpak app name>` - `flatpak override --filesystem=xdg-run/discord-ipc-0 --filesystem=xdg-run/.flatpak/dev.vencord.Vesktop:create --filesystem=xdg-run/.flatpak/com.discordapp.Discord:create <flatpak app name>`
- Globally - Globally
- `flatpak override --user --filesystem=xdg-run/discord-ipc-0` - `flatpak override --user --filesystem=xdg-run/discord-ipc-0 --filesystem=xdg-run/.flatpak/dev.vencord.Vesktop:create --filesystem=xdg-run/.flatpak/com.discordapp.Discord:create`
##### MacOS ##### MacOS
@@ -72,6 +72,10 @@ More details on how to install the LaunchAgent can be found in the [documentatio
- Open a terminal in the directory that contains this file and run `make`. - Open a terminal in the directory that contains this file and run `make`.
- The compiled executable will be located in `build/bridge.exe`. - The compiled executable will be located in `build/bridge.exe`.
## Star History
[![Star History Chart](https://api.star-history.com/svg?repos=enderice2/rpc-bridge&type=Date)](https://www.star-history.com/#enderice2/rpc-bridge&Date)
## Credits ## Credits
This project is inspired by [wine-discord-ipc-bridge](https://github.com/0e4ef622/wine-discord-ipc-bridge). This project is inspired by [wine-discord-ipc-bridge](https://github.com/0e4ef622/wine-discord-ipc-bridge).

View File

@@ -52,15 +52,15 @@ This method is recommended because it's easier to manage.
=== "Flatseal" === "Flatseal"
Add `xdg-run/discord-ipc-0` under `Filesystems` category Add `xdg-run/discord-ipc-0`, `xdg-run/.flatpak/dev.vencord.Vesktop:create` and `xdg-run/.flatpak/com.discordapp.Discord:create` under `Filesystems` category
![flatseal](assets/flatseal_permission.png) ![flatseal](assets/flatseal_permission.png)
=== "Terminal" === "Terminal"
- Per application - Per application
- `flatpak override --filesystem=xdg-run/discord-ipc-0 <flatpak app name>` - `flatpak override --filesystem=xdg-run/discord-ipc-0 --filesystem=xdg-run/.flatpak/dev.vencord.Vesktop:create --filesystem=xdg-run/.flatpak/com.discordapp.Discord:create <flatpak app name>`
- Globally - Globally
- `flatpak override --user --filesystem=xdg-run/discord-ipc-0` - `flatpak override --user --filesystem=xdg-run/discord-ipc-0 --filesystem=xdg-run/.flatpak/dev.vencord.Vesktop:create --filesystem=xdg-run/.flatpak/com.discordapp.Discord:create`
## Run without installing the service ## Run without installing the service

View File

@@ -294,6 +294,7 @@ void ConnectToSocket(int fd)
"%s/discord-ipc-%d", "%s/discord-ipc-%d",
"%s/app/com.discordapp.Discord/discord-ipc-%d", "%s/app/com.discordapp.Discord/discord-ipc-%d",
"%s/.flatpak/dev.vencord.Vesktop/xdg-run/discord-ipc-%d", "%s/.flatpak/dev.vencord.Vesktop/xdg-run/discord-ipc-%d",
"%s/.flatpak/com.discordapp.Discord/xdg-run/discord-ipc-%d",
"%s/snap.discord/discord-ipc-%d", "%s/snap.discord/discord-ipc-%d",
"%s/snap.discord-canary/discord-ipc-%d", "%s/snap.discord-canary/discord-ipc-%d",
}; };

View File

@@ -5,5 +5,5 @@
#define IDM_HELP_ABOUT 40003 #define IDM_HELP_ABOUT 40003
#define IDM_VIEW_LOG 40004 #define IDM_VIEW_LOG 40004
#define VER_VERSION 1, 4, 0, 0 #define VER_VERSION 1, 4, 0, 1
#define VER_VERSION_STR "1.4.0.0\0" #define VER_VERSION_STR "1.4.0.1\0"