[PR #42] [MERGED] macos: enable running lan-mouse on macos #248

Closed
opened 2026-05-05 22:15:08 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/feschber/lan-mouse/pull/42
Author: @feschber
Created: 12/4/2023
Status: Merged
Merged: 12/9/2023
Merged by: @feschber

Base: mainHead: macos


📝 Commits (10+)

  • ec3aef4 macos: enable running lan-mouse on macos
  • 68d7047 rudimentary support for mouse input
  • 1f0e371 fix wrong mouse button release event
  • acb0fb1 exclude macos backend from linux / windows build
  • 905eef8 impl scroll events
  • cf41414 impl keyboard events
  • d1e26b5 update github actions
  • d8f1f3f fix job dependencies
  • c060020 disable keyboard support until handled properly
  • 87de059 remove debug code

📊 Changes

13 files changed (+419 additions, -21 deletions)

View changed files

📝 .github/workflows/pre-release.yml (+16 -1)
📝 .github/workflows/rust.yml (+16 -0)
📝 .github/workflows/tagged-release.yml (+16 -1)
📝 Cargo.lock (+68 -0)
📝 Cargo.toml (+8 -3)
📝 src/backend/consumer.rs (+7 -4)
src/backend/consumer/macos.rs (+221 -0)
📝 src/backend/producer.rs (+5 -3)
src/backend/producer/macos.rs (+28 -0)
📝 src/consumer.rs (+7 -4)
📝 src/event.rs (+5 -0)
📝 src/frontend.rs (+15 -1)
📝 src/producer.rs (+7 -4)

📄 Description

  • adapted conditional compilation
  • forked frontend into its own process
  • moved lan-mouse socket to ~/Library/Caches/lan-mouse-socket.sock instead of XDG_RUNTIME_DIR

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/feschber/lan-mouse/pull/42 **Author:** [@feschber](https://github.com/feschber) **Created:** 12/4/2023 **Status:** ✅ Merged **Merged:** 12/9/2023 **Merged by:** [@feschber](https://github.com/feschber) **Base:** `main` ← **Head:** `macos` --- ### 📝 Commits (10+) - [`ec3aef4`](https://github.com/feschber/lan-mouse/commit/ec3aef44b37ac7365fbaf9eae8aee5dc9e1939ec) macos: enable running lan-mouse on macos - [`68d7047`](https://github.com/feschber/lan-mouse/commit/68d70472aa3b7e48511e1faacb6abc9922b0556e) rudimentary support for mouse input - [`1f0e371`](https://github.com/feschber/lan-mouse/commit/1f0e3718a81704fde0367f802541c6d1b9fd443c) fix wrong mouse button release event - [`acb0fb1`](https://github.com/feschber/lan-mouse/commit/acb0fb1651be30593c023acd864e4269c75d877a) exclude macos backend from linux / windows build - [`905eef8`](https://github.com/feschber/lan-mouse/commit/905eef88b4edbdcaecb878ca0a89561dfe2fc70d) impl scroll events - [`cf41414`](https://github.com/feschber/lan-mouse/commit/cf41414568284d33c3e35e4ca51a6c756c8bc8b1) impl keyboard events - [`d1e26b5`](https://github.com/feschber/lan-mouse/commit/d1e26b5d477e20f42b1b3d7980a3b150bcf57d00) update github actions - [`d8f1f3f`](https://github.com/feschber/lan-mouse/commit/d8f1f3f207626eb2e4e643f9412f060775310ee2) fix job dependencies - [`c060020`](https://github.com/feschber/lan-mouse/commit/c0600202835a24d22686fceafd9199d2feaf61f8) disable keyboard support until handled properly - [`87de059`](https://github.com/feschber/lan-mouse/commit/87de0599c1e92a2d5deb661d5f7fb12cc66a5d38) remove debug code ### 📊 Changes **13 files changed** (+419 additions, -21 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/pre-release.yml` (+16 -1) 📝 `.github/workflows/rust.yml` (+16 -0) 📝 `.github/workflows/tagged-release.yml` (+16 -1) 📝 `Cargo.lock` (+68 -0) 📝 `Cargo.toml` (+8 -3) 📝 `src/backend/consumer.rs` (+7 -4) ➕ `src/backend/consumer/macos.rs` (+221 -0) 📝 `src/backend/producer.rs` (+5 -3) ➕ `src/backend/producer/macos.rs` (+28 -0) 📝 `src/consumer.rs` (+7 -4) 📝 `src/event.rs` (+5 -0) 📝 `src/frontend.rs` (+15 -1) 📝 `src/producer.rs` (+7 -4) </details> ### 📄 Description - adapted conditional compilation - forked frontend into its own process - moved lan-mouse socket to ~/Library/Caches/lan-mouse-socket.sock instead of XDG_RUNTIME_DIR --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 22:15:08 -06:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/lan-mouse#248
No description provided.