Skip to content

Commit

Permalink
Merge tag 'v1.4.5' into develop
Browse files Browse the repository at this point in the history
Fix make install broken in 1.4.4
  • Loading branch information
dshoreman committed May 7, 2023
2 parents 8c21c47 + 7833608 commit df00052
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* NextCloud uploads can now be aborted or renamed if they would overwrite another file


## [1.4.5] - 2023-05-07
### Fixed
* Updated Makefile to fix broken install in 1.4.4


## [1.4.4] - 2023-05-05
### Added
* Updated troubleshooting in readme with fix for Slop+Picom blurring the screen
Expand Down Expand Up @@ -248,7 +253,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Copying link to clipboard on X11 and Wayland


[Unreleased]: https://github.com/dshoreman/nextshot/compare/v1.4.4...develop
[Unreleased]: https://github.com/dshoreman/nextshot/compare/v1.4.5...develop
[1.4.5]: https://github.com/dshoreman/nextshot/compare/v1.4.4...v1.4.5
[1.4.4]: https://github.com/dshoreman/nextshot/compare/v1.4.3...v1.4.4
[1.4.3]: https://github.com/dshoreman/nextshot/compare/v1.4.2...v1.4.3
[1.4.2]: https://github.com/dshoreman/nextshot/compare/v1.4.1...v1.4.2
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ install:
@mkdir -vp "$(DESTDIR)$(PREFIX)/share/pixmaps"
@echo "Installing Nextshot..."
@cp -v resources/icons/16x16.png "$(DESTDIR)$(PREFIX)/share/pixmaps/nextshot-16x16.png"
@cp -vp nextshot.sh "$(DESTDIR)$(PREFIX)/bin/nextshot"
@cp -vp nextshot "$(DESTDIR)$(PREFIX)/bin/nextshot"
@echo "Install complete"

uninstall:
Expand Down
2 changes: 1 addition & 1 deletion src/main.bash
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ readonly _CONFIG_DIR="${XDG_CONFIG_HOME:-"$HOME/.config"}/nextshot"
readonly _RUNTIME_DIR="${XDG_RUNTIME_DIR:-"/tmp"}/nextshot"
readonly _CONFIG_FILE="$_CONFIG_DIR/nextshot.conf"
readonly _TRAY_FIFO="$_RUNTIME_DIR/traymenu"
readonly _VERSION="1.4.4"
readonly _VERSION="1.4.5"

source "${SCRIPT_ROOT}/_cache.bash"
source "${SCRIPT_ROOT}/_capture.bash"
Expand Down

0 comments on commit df00052

Please sign in to comment.