Skip to content

Commit

Permalink
Fix Issue #22
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirko Brombin committed Nov 6, 2017
1 parent 4387c48 commit c092872
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
3 changes: 2 additions & 1 deletion bottles/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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"
Expand Down
20 changes: 20 additions & 0 deletions data/com.github.mirkobrombin.bottles.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,24 @@
<value key="x-appcenter-color-primary">#F0E5F2</value>
<value key="x-appcenter-color-primary-text">#95005D</value>
</custom>
​ <releases>
​ <release version="0.1.3" date="2017-06-11">
​ <description>
​ <ul>
<li>New details (bottle size, architecture, wine version for POL wineprefix)</li>
<li>Fixed installation path</li>
<li>Refresh button for bottles list</li>
<li>Colorful logs on terminal</li>
<li>Add missing icons for different versions of Wine</li>
<li>Import wineprefix from PlayOnLinux</li>
<li>Bottle creation does not run Winecfg anymore</li>
<li>Fixed a bug that prevented the creation of 32-bit bottles</li>
<li>New languages (Spanish, German, French)</li>
<li>Migrated to Granite.MessageDialog</li>
<li>Introduced Message CODES for better support (Read more on the Wiki)</li>
<li>Minor fixes</li>
</ul>
​ </description>
​ </release>
​ </releases>
</component>
4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Mon, 5 Nov 2017 19:04:00 +0200
-- Mirko Brombin <[email protected]> Mon, 6 Nov 2017 23:18:00 +0200
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit c092872

Please sign in to comment.