Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
arshubham committed Sep 15, 2019
1 parent acd075b commit 00b7d7f
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 11 deletions.
34 changes: 25 additions & 9 deletions data/com.github.arshubham.cipher.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,38 @@
</screenshot>
</screenshots>
<releases>
<release version="1.0.0" date="2018-02-02">
<release version="2.0.0" date="2019-09-15">
<description>
<p> Complete UI/UX Redesign! </p>
<p> Added i18n Capability </p>
<p> Added French Tranlations. Thanks @NathanBnm (https://github.com/NathanBnm) </p>
<ul>
<li> New Icon! Thanks @Fatih20 (https://github.com/Fatih20) </li>
<li> Added Vigenere Cipher </li>
<li> Added SHA384 and SHA512 Hash Functions </li>
</ul>
</description>
</release>
<release version="1.0.0" date="2019-02-02">
<description>
<ul>
<li> Complete UI/UX Redesign! </li>
<li> Added i18n Capability </li>
<li> Added French Tranlations. Thanks @NathanBnm (https://github.com/NathanBnm) </li>
</ul>
</description>
</release>
<release version="0.1.6" date="2018-05-25">
<description>
<p> Update for Juno </p>
<p> Add Hashing Functions </p>
<ul>
<li> Update for Juno </li>
<li> Add Hashing Functions </li>
</ul>
</description>
</release>
<release version="0.1.5" date="2018-01-15">
<description>
<p>New Icon</p>
<p>Fixes in .desktop file</p>
<ul>
<li>New Icon</li>
<li>Fixes in .desktop file</li>
</ul>
</description>
</release>
<release version="0.1.3" date="2018-01-15">
Expand All @@ -66,7 +81,8 @@
<li>ASCII Encoding</li>
<li>Base64 Encoding</li>
<li>Polybius Square Cipher</li>
<li>Hashing Functions (MD5, SHA1, SHA256)</li>
<li>Vigenere Cipher</li>
<li>Hashing Functions (MD5, SHA1, SHA256, SHA384, SHA512)</li>
</ul>
</description>
<url type="homepage">https://github.com/arshubham/cipher</url>
Expand Down
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
com.github.arshubham.cipher (2.0.0) precise; urgency=low

* New Icon! Thanks @Fatih20 (https://github.com/Fatih20)
* Added Vigenere Cipher
* Added SHA384 and SHA512 Hash Functions

-- Shubham Arora <[email protected]> Wed, 15 Sep 2019 16:30:00 +0530

com.github.arshubham.cipher (1.0.0) precise; urgency=low

* Complete UI/UX Redesign!
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('com.github.arshubham.cipher', ['vala', 'c'],
version : '1.0.0',
version : '2.0.0',
license: 'GPL-3.0'
)

Expand Down
2 changes: 1 addition & 1 deletion src/configs/Constants.vala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace Cipher.Configs {
public class Constants {

public abstract const string ID = _("com.github.arshubham.cipher");
public abstract const string VERSION = "1.0.0";
public abstract const string VERSION = "2.0.0";
public abstract const string APP_NAME = _("Cipher");
public abstract const string APP_YEARS = "2017-2019";
public abstract const string APP_ICON = "com.github.arshubham.cipher";
Expand Down

0 comments on commit 00b7d7f

Please sign in to comment.