Skip to content

Commit

Permalink
Merge pull request #2 from neatdecisions/v0.2.1
Browse files Browse the repository at this point in the history
v0.2.1
  • Loading branch information
neatdecisions authored Sep 3, 2019
2 parents 64b5340 + 3813c65 commit 9a0cd0b
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
27 changes: 24 additions & 3 deletions data/com.neatdecisions.Detwinner.appdata.xml.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2018 Neat Decisions <[email protected]> -->
<!-- Copyright 2018-2019 Neat Decisions <[email protected]> -->
<component type="desktop-application">
<id>com.neatdecisions.Detwinner</id>
<metadata_license>CC0-1.0</metadata_license>
Expand All @@ -8,6 +8,9 @@
<summary>Find and remove duplicate files and similar images</summary>
<description>
<p>Detwinner is a tool to search and remove exact file duplicates and similar images.</p>
<p>You can search for either exact duplicates (100% byte-to-byte match is ensured by the special hash function) or similar images (Detwinner generates groups of images that look alike using similarity level specified by you). You can also narrow your search by specifying file size, attributes and regular expressions.</p>
<p>Smart selection tools provide numerous options for batch selection of files which should be deleted. Instant preview allows you to be confident in your choice.</p>
<p>Files can be deleted permanently, to the trash bin or moved to the backup folder.</p>
</description>
<categories>
<category>Utility</category>
Expand All @@ -29,13 +32,31 @@
<binary>detwinner</binary>
</provides>
<releases>
<release version="0.1.0" date="2018-09-16">
<release version="0.2.1" date="2019-09-03">
<description>
<p>Minor release which only includes changes in the AppStream metadata.</p>
</description>
</release>
<release version="0.2.0" date="2019-09-01">
<description>
<p>Main changes in this version:</p>
<ul>
<li>Initial release</li>
<li>Show warning in case of failed file deletion</li>
<li>Fix Untitled window in the taskbar</li>
<li>Don't fail when removing files deleted elsewhere</li>
<li>Don't show Recent in the places sidebar</li>
<li>Remove application menu</li>
<li>Flatpak version: enable deleting to trash bin</li>
<li>Update URLs and copyright notices</li>
<li>Overall code cleanup</li>
</ul>
</description>
</release>
<release version="0.1.0" date="2018-09-16">
<description>
<p>Initial release of Detwinner - neat duplicate files finder for Linux.</p>
</description>
</release>
</releases>
<content_rating type="oars-1.1">
<content_attribute id="violence-cartoon">none</content_attribute>
Expand Down
2 changes: 1 addition & 1 deletion data/detwinner.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH detwinner 1 "16 September 2018" "version 0.1.0"
.TH detwinner 1 "03 September 2019" "version 0.2.1"
.SH NAME
Detwinner - duplicate file finder for GNOME environment
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ endif
appdata_file_validate = find_program ('appstream-util', required: false)
if appdata_file_validate.found ()
test ('validate-appdata', appdata_file_validate,
args: ['validate-relax', appdata.full_path ()])
args: ['validate-strict', appdata.full_path ()])
endif

install_man('detwinner.1')
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('detwinner', ['c', 'cpp'],
version: '0.2.0',
version: '0.2.1',
license: 'GPL3+',
meson_version: '>=0.45.0',
default_options : ['c_std=c11', 'cpp_std=c++17', 'warning_level=3', 'werror=true'])
Expand Down

0 comments on commit 9a0cd0b

Please sign in to comment.