Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixscalefinal #127

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
68a5c6a
Refactor: introduce FrameGuard, ScreenCapturer, and Logical/EmbeddedR…
Decodetalkers Feb 2, 2024
a023ff1
Add freeze functionality
AndreasBackx Feb 2, 2024
87be331
Move to clap_derive so CLI arguments are typed
AndreasBackx Feb 2, 2024
736b651
Improve CLI design
AndreasBackx Feb 2, 2024
7d6e20b
Remove explicit panics and exits
AndreasBackx Feb 2, 2024
044910d
Make region, sizing, and positioning data structs reusable
AndreasBackx Feb 2, 2024
f2aa2b6
feat: Merge pull request #78
Shinyzenith Feb 12, 2024
8f22e6d
First version of scaling fix. (#85)
AndreasBackx Feb 21, 2024
9e7919e
chore: remove useless roundtrip (#105)
shivkr6 Mar 23, 2024
b9219b1
feat(clipboard): implement clipboard integration (#91)
CheerfulPianissimo Mar 23, 2024
e43ab9f
docs(ManPage): Fix capitalization issue
Shinyzenith Mar 23, 2024
440bd26
docs: Document clipboard interaction
Shinyzenith Mar 23, 2024
f7f134f
chore: Update Cargo.lock
Shinyzenith Mar 23, 2024
5370c08
feat: added time_stamp flag (#93)
rachancheet Mar 23, 2024
d7200c7
chore: Update Cargo.lock
Shinyzenith Mar 23, 2024
017be62
feat: Add support for webp (#98)
Gigas002 Mar 23, 2024
f53e650
refactor(libwayshot): Reduce allocations (#99)
murlakatamenka Mar 23, 2024
2afa5b0
feat: account for directories in file path (#96)
rachancheet Mar 23, 2024
7381159
fix: Clipboard flag ignored if path is qualified to file (#108)
CheerfulPianissimo Mar 26, 2024
2cb242c
chore: make clippy happy (#111)
Decodetalkers Mar 28, 2024
10b748f
feat(clipboard): fix interaction with freeze and select feature: Issu…
CheerfulPianissimo Apr 6, 2024
2dd8af6
Destroy layer shell surfaces
CheerfulPianissimo May 28, 2024
7934fd2
Implement missing conversion from string to webp enum (#121)
Gigas002 Jun 18, 2024
1c3c802
Replace nix with rustix (#120)
Gigas002 Jun 18, 2024
5c3e220
Update documentation with changes in freeze-feat (#116)
CheerfulPianissimo Aug 25, 2024
5d69000
Add screencopy dmabuf backend (#122)
CheerfulPianissimo Aug 28, 2024
ce83302
fix: I find out a smart way to fix scale problem
Decodetalkers Oct 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install wayland dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
libwayland-dev \
libegl-dev \

- name: Build
run: |
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ target
*.gz
*.out
.direnv
*.jpg
*.jpeg
*.png
*.ppm
*.qoi
Loading
Loading