Skip to content

Commit

Permalink
[rel] Tag release 1.3.0 wayshot and 0.1.2 libwayshot
Browse files Browse the repository at this point in the history
* AUR:
* Removed bin pkgbuild as I am no longer intersted in maintaining it.
* Removed git pkgbuild as I am no longer the maintainer of said package.

Signed-off-by: Shinyzenith <[email protected]>
  • Loading branch information
Shinyzenith committed Jul 3, 2023
1 parent 402793d commit 43fae61
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 91 deletions.
46 changes: 25 additions & 21 deletions 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<p align="center">
<a href="./LICENSE.md"><img src="https://img.shields.io/github/license/waycrate/wayshot?style=flat-square&logo=appveyor"></a>
<img src="https://img.shields.io/badge/cargo-v1.2.2-green?style=flat-square&logo=appveyor">
<img src="https://img.shields.io/badge/cargo-v1.3.0-green?style=flat-square&logo=appveyor">
<img src="https://img.shields.io/github/issues/waycrate/wayshot?style=flat-square&logo=appveyor">
<img src="https://img.shields.io/github/forks/waycrate/wayshot?style=flat-square&logo=appveyor">
<img src="https://img.shields.io/github/stars/waycrate/wayshot?style=flat-square&logo=appveyor">
Expand Down
23 changes: 0 additions & 23 deletions contrib/PKGBUILD/bin/PKGBUILD

This file was deleted.

31 changes: 0 additions & 31 deletions contrib/PKGBUILD/git/PKGBUILD

This file was deleted.

6 changes: 3 additions & 3 deletions flake.lock

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

2 changes: 1 addition & 1 deletion libwayshot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ keywords = ["screenshot", "wayland", "wlroots", "wayshot"]
license = "BSD-2-Clause"
repository = "https://git.sr.ht/~shinyzenith/wayshot"
name = "libwayshot"
version = "0.1.0"
version = "0.1.2"
edition = "2021"

[dependencies]
Expand Down
11 changes: 2 additions & 9 deletions wayshot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,7 @@ keywords = ["screenshot", "wayland", "wlroots"]
license = "BSD-2-Clause"
name = "wayshot"
repository = "https://git.sr.ht/~shinyzenith/wayshot"
version = "1.2.2"
exclude = [
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"contrib/*",
"docs/assets/*",
"release.sh",
]
version = "1.3.0"

[build-dependencies]
flate2 = "1.0.26"
Expand All @@ -29,7 +22,7 @@ log = "0.4.19"
wayland-client = "0.30.2"
wayland-protocols = { version = "0.30.0", features=["client", "unstable"] }

libwayshot = { path = "../libwayshot" }
libwayshot = { version="0.1.2", path = "../libwayshot" }

image = { version = "0.24", default-features = false, features = ["jpeg", "png", "pnm"] }

Expand Down
4 changes: 2 additions & 2 deletions wayshot/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fn main() {
}

// We just append "out" so it's easy to find all the scdoc output later in line 38.
let man_pages: Vec<(String, String)> = read_and_replace_by_ext("../docs", ".scd", ".out");
let man_pages: Vec<(String, String)> = read_and_replace_by_ext("./docs", ".scd", ".out");
for man_page in man_pages {
let output = OpenOptions::new()
.write(true)
Expand All @@ -35,7 +35,7 @@ fn main() {

// Gzipping the man pages
let scdoc_output_files: Vec<(String, String)> =
read_and_replace_by_ext("../docs", ".out", ".gz");
read_and_replace_by_ext("./docs", ".out", ".gz");
for scdoc_output in scdoc_output_files {
let mut input = BufReader::new(File::open(scdoc_output.0).unwrap());
let output = OpenOptions::new()
Expand Down
1 change: 1 addition & 0 deletions wayshot/docs

0 comments on commit 43fae61

Please sign in to comment.