- Prepare 0.6.0 release

This commit is contained in:
Joao Azevedo 2021-04-20 15:22:27 +02:00 committed by Guido Gunther
parent f595391bf4
commit cae9349e02
4 changed files with 14 additions and 4 deletions

View File

@ -12,9 +12,9 @@ Please Avoid scripts that require cloning and building packages from source.
|Script | Description | Dependencies | Notes |
|:--:|:--:|:--:|:--:|
|Contacts Importer| Allows to import contacts from a vcard file to GNOME Contacts. Can work with a UI and from command line interface|`yad`, `syncevolution`, `libnotify-bin`, `Evolution Data Server`| This script will cease to exist when this https://gitlab.gnome.org/GNOME/gnome-contacts/-/merge_requests/105 is merged into GNOME Contacts and this feature is present in GNOME Contacts version for the Librem 5. |
|Screenshot| Allows to take screenshots in the Librem 5 phone|`yad`, `grim`, `libnotify-bin`| This script will probably be removed from this package when the feature to make a screenshot is present in Phosh. |
|Scale the screen| A simple application to scale de screen| `wlr-randr`| |
|Contacts Importer| Allows to import contacts from a vcard file to GNOME Contacts. Can work with a UI and from command line interface|`yad`, `syncevolution`, `libnotify-bin`, `Evolution Data Server`| This script will be removed from this paclage when the version of GNOME-Contacts available in PureOS supports importing contacts from a vcard file. |
|Screenshot| Allows to take screenshots in the Librem 5 phone|`yad`, `grim`, `libnotify-bin`, `xdg-user-dirs`| This script will be removed from this package when there is a native app that can take screenshots in `Phosh`. |
|Scale the screen| A simple application to scale the screen| `wlr-randr`, `yad` | This script will be removed from this package when `phosh` has better support for screen scaling.|

9
debian/changelog vendored
View File

@ -1,3 +1,12 @@
librem5-goodies (0.0.6) amber-phone; urgency=medium
* New upstream release.
- Make screenshot script l10n friendy, closes: #13
- d/control: add dependency; xdg-user-dirs
- Add scale the screens support for QEMU image closes: #12
-- João Azevedo <joao.azevedo@puri.sm> Sun, 18 Apr 2021 13:33:50 +0200
librem5-goodies (0.0.5) amber-phone; urgency=medium
* New upstream release.

1
debian/control vendored
View File

@ -19,6 +19,7 @@ Depends:
libnotify-bin,
syncevolution,
yad,
xdg-user-dirs,
wlr-randr,
${misc:Depends},
Description: Librem 5 Goodies

View File

@ -24,7 +24,7 @@ esac
#Variable
SCREENSHOT="/home/$USER/Pictures/$(date +%Y-%m-%d-%H%M%S).png"
SCREENSHOT="$(xdg-user-dir PICTURES)/$(date +%Y-%m-%d-%H%M%S).png"
if [ -e /usr/bin/yad ]; then
INPUT=$(yad --title Screenshot --text="Take screenshot after X seconds" --form --field=filename:SFL --field=seconds:NUM "$SCREENSHOT" "5" --focus-field=2)