diff --git a/bottles/constants.py b/bottles/constants.py
index 9bd5ea0c12..18708d99be 100644
--- a/bottles/constants.py
+++ b/bottles/constants.py
@@ -27,6 +27,7 @@
try:
current_locale, encoding = locale.getdefaultlocale()
locale_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'locale')
+ print(locale_path)
translate = gettext.translation ('bottles', locale_path, [current_locale] )
_ = translate.gettext
except FileNotFoundError:
@@ -37,7 +38,7 @@ class App:
application_id = "com.github.mirkobrombin.bottles"
application_name = _('Bottles')
application_description = _('Easily manage your Wine bottles')
- application_version ="0.1.2"
+ application_version ="0.1.3"
app_years = "2017-2018"
main_url = "https://github.com/mirkobrombin/bottles"
bug_url = "https://github.com/mirkobrombin/bottles/issues/labels/bug"
diff --git a/data/com.github.mirkobrombin.bottles.appdata.xml b/data/com.github.mirkobrombin.bottles.appdata.xml
index f324d87954..fc13317d86 100644
--- a/data/com.github.mirkobrombin.bottles.appdata.xml
+++ b/data/com.github.mirkobrombin.bottles.appdata.xml
@@ -51,4 +51,24 @@
#F0E5F2
#95005D
+
+
+
+
+ - New details (bottle size, architecture, wine version for POL wineprefix)
+ - Fixed installation path
+ - Refresh button for bottles list
+ - Colorful logs on terminal
+ - Add missing icons for different versions of Wine
+ - Import wineprefix from PlayOnLinux
+ - Bottle creation does not run Winecfg anymore
+ - Fixed a bug that prevented the creation of 32-bit bottles
+ - New languages (Spanish, German, French)
+ - Migrated to Granite.MessageDialog
+ - Introduced Message CODES for better support (Read more on the Wiki)
+ - Minor fixes
+
+
+
+
diff --git a/debian/changelog b/debian/changelog
index 4d7625d29f..1a4fe65969 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-com.github.mirkobrombin.bottles (0.1.2) precise; urgency=low
+com.github.mirkobrombin.bottles (0.1.3) precise; urgency=low
* New features
- -- Mirko Brombin Mon, 5 Nov 2017 19:04:00 +0200
+ -- Mirko Brombin Mon, 6 Nov 2017 23:18:00 +0200
diff --git a/setup.py b/setup.py
index be095aa4a1..840df36d64 100644
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,7 @@
(inst_path+'/locale/de_DE/LC_MESSAGES',['bottles/locale/de_DE/LC_MESSAGES/bottles.po']),]
setup( name='Bottles',
- version='0.1.2',
+ version='0.1.3',
author='Mirko Brombin',
description='Easily manage your Wine bottles',
url='https://github.com/mirkobrombin/bottles',