Skip to content

Commit

Permalink
merged community-edition-patches
Browse files Browse the repository at this point in the history
  • Loading branch information
electronstudio committed Jul 30, 2024
2 parents 0dfb1f8 + a43472c commit 77acc81
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weylus"
version = "0.11.4"
version = "2024.07.29"
authors = ["HMH <[email protected]>"]
license = "AGPL-3.0-or-later"
edition = "2021"
Expand Down
21 changes: 20 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
# Weylus
# Weylus Community Edition

## Note for MacOS

After unzipping, run:

sudo xattr -dr com.apple.quarantine ~/Downloads/Weylus.app

## Community Edition adds these patches

* Commits from Weylus master that improve Wayland compabability.
* [bunch of improvements: MacOS Stylus, Virtual Key, Reconnect, etc.](https://github.com/H-M-H/Weylus/pull/276)
* [Modify write_video_packet prototype](https://github.com/H-M-H/Weylus/pull/273)
* [Always render square QR code so it can be read](https://github.com/H-M-H/Weylus/pull/236)
* [fix scroll direction problems in uinput](https://github.com/H-M-H/Weylus/pull/215)
* [Use WinAPI to simulate pointermovements](https://github.com/H-M-H/Weylus/pull/128)
* [Linux build fixes](https://github.com/electronstudio2/Weylus/tree/build-fixes)



![Build](https://github.com/H-M-H/Weylus/workflows/Build/badge.svg)

Weylus turns your tablet or smart phone into a graphic tablet/touch screen for your computer!
Expand Down
29 changes: 29 additions & 0 deletions patch_community_edition.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
git clone https://github.com/H-M-H/Weylus.git
cd Weylus

git remote add qdlmcfresh https://github.com/qdlmcfresh/Weylus.git
git fetch qdlmcfresh stylus_windows
git merge qdlmcfresh/stylus_windows -m "merged qdlmcfresh"

git remote add OmegaRogue https://github.com/OmegaRogue/Weylus.git
git fetch OmegaRogue master
git merge -s recursive -X theirs OmegaRogue/master -m "merged OmegaRogue"

git remote add scribblemaniac https://github.com/scribblemaniac/Weylus.git
git fetch scribblemaniac fix-qr-code
git merge scribblemaniac/fix-qr-code -m "merged scribblemaniac"

git remote add Diordany https://github.com/Diordany/Weylus.git
git fetch Diordany pr-func-proto
git merge Diordany/pr-func-proto -m "merged Diordany"

git remote add lyonbot https://github.com/lyonbot/Weylus.git
git fetch lyonbot pr
git merge lyonbot/pr -m "merged lyonbot"

git remote add electronstudio2 https://github.com/electronstudio2/Weylus.git
git fetch electronstudio2 build-fixes
git merge electronstudio2/build-fixes -m "merged build-fixes"

git fetch electronstudio2 community-edition-patches
git merge electronstudio2/community-edition-patches -m "merged community-edition-patches"

0 comments on commit 77acc81

Please sign in to comment.