Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed Oct 5, 2017
1 parent 1f7aee8 commit a2be37f
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 7 deletions.
12 changes: 11 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Version 1.?.? - 2017-??-??
# Version 1.1.0 - 2017-10-05
* feat: Transparent recording area without compositor (#147, #7)
* fix: Unusual default permissions (#161)
* fix: Explicitly set ImageMagick resource limits (#112, #125)
* i18n: Updated translations for Basque, Chinese (Simplified), Czech, Dutch,
French, German, Lithuanian, Russian, Serbian, Spanish, Swedish, Polish,
Portuguese (Brazil)
* build: New flag `DISABLE_GNOME_SHELL` to disable gnome-shell recorder
* build: New flag `DISABLE_OPEN_FILE_MANAGER` to disable file manager integration
* build: Use CMake GNUInstallDirs variables
* package: Updated dependencies for Flatpak and Snap packages
* package: Stable Snap package depending on gnome-platform 3.26

# Version 1.0.3 - 2017-06-13
* package: fixed installing man page
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ project("peek" C)
cmake_minimum_required(VERSION 2.6)

set (PEEK_VERSION_MAJOR 1)
set (PEEK_VERSION_MINOR 0)
set (PEEK_VERSION_PATCH 3)
set (PEEK_VERSION_MINOR 1)
set (PEEK_VERSION_PATCH 0)

# Include macros for Vala and GLib
list(APPEND CMAKE_MODULE_PATH
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ Then build Peek and package it:
cmake -DCMAKE_INSTALL_PREFIX=/usr -DGSETTINGS_COMPILE=OFF ..
make package

This will create the package `peek-1.0.3-Linux.deb`. You can install it with
This will create the package `peek-1.1.0-Linux.deb`. You can install it with
dpkg:

sudo dpkg -i peek-1.0.3-Linux.deb
sudo dpkg -i peek-1.1.0-Linux.deb

### Fedora
Fedora 25 users can use this repository:
Expand Down
1 change: 1 addition & 0 deletions data/com.uploadedlobster.peek.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
<update_contact>[email protected]</update_contact>

<releases>
<release version="1.1.0" date="2017-10-05" />
<release version="1.0.3" date="2017-06-13" />
<release version="1.0.2" date="2017-06-13" />
<release version="1.0.1" date="2017-03-26" />
Expand Down
3 changes: 1 addition & 2 deletions data/flatpak/flatpak-stable.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,7 @@
"sources": [{
"type": "git",
"url": "../..",
"branch": "v1.0.3",
"commit": "257e5e30209fd7a8fc5d530deb56179fccdd0aed"
"branch": "v1.1.0"
}],
"modules": [{
"name": "keybinder3",
Expand Down
6 changes: 6 additions & 0 deletions rpm/peek.spec
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.appdat
%{_datadir}/icons/hicolor/*/apps/com.uploadedlobster.%{name}.png

%changelog
* Thu Oct 05 2017 Philipp Wolfer <[email protected]> -1.1.0
- Transparent recording area without compositor
- Unusual default permissions
- Explicitly set ImageMagick resource limits
- Updated translations for Basque, Chinese (Simplified), Czech, Dutch, French, German, Lithuanian, Russian, Serbian, Spanish, Swedish, Polish, Portuguese (Brazil)

* Tue Jun 13 2017 Philipp Wolfer <[email protected]> -1.0.3
- Fixed installing man page

Expand Down

1 comment on commit a2be37f

@Moini
Copy link

@Moini Moini commented on a2be37f Oct 5, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congrats on the new release and thank you very much for working on this useful tool! I just found it in my update manager and will update now :-D

Please sign in to comment.