Skip to content

Commit

Permalink
0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
brombinmirko committed Sep 15, 2019
1 parent c89a6e9 commit 9e9913c
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 23 deletions.
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ Read the [Wiki](https://github.com/brombinmirko/Bottles/wikis).
In any case, ask for support [here](https://github.com/brombinmirko/Bottles/issues).

## Requirements
- wine (with wine64)
- wine-stable
- xterm
- python3
- libgtk-3-dev
- libgranite-dev

## How to run
```bash
Expand All @@ -44,10 +42,6 @@ com.github.mirkobrombin.bottles

## Installation

### From AppCenter
[![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.mirkobrombin.bottles)


### From .deb package
Grab an updated release [here](https://github.com/brombinmirko/Bottles/releases), then install:

Expand Down
2 changes: 1 addition & 1 deletion bottles/detail.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def __init__(self, parent):
self.grid_5.add(self.button_regedit)

# Uninstaller
self.button_uninstaller = Gtk.Button.new_from_icon_name("bottles_wine-uninstaller", Gtk.IconSize.DIALOG)
self.button_uninstaller = Gtk.Button.new_from_icon_name("edittrash", Gtk.IconSize.DIALOG)
self.button_uninstaller.connect("clicked", self.on_button_uninstaller_clicked)
self.grid_5.add(self.button_uninstaller)

Expand Down
4 changes: 2 additions & 2 deletions bottles/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
HLog.bold(_('Wine Version: %s' % w.Wine.get_wine_version()))
HLog.bold(_('Wiki: %s' % cn.App.help_url))

class Application(Granite.Application):
class Application(Gtk.Application):

def do_activate(self):

Expand Down Expand Up @@ -111,4 +111,4 @@ def do_activate(self):
app.help_url = cn.App.help_url
app.translate_url = cn.App.translate_url

app.run("", Gio.ApplicationFlags.FLAGS_NONE)
app.run("")
2 changes: 1 addition & 1 deletion bottles/wine.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def run_software(self, working_dir, file_src):
def check_special_chars(self, string):
if not re.match(r'^\w+$', string):
HLog.error('[BOTTLE_NAME_ERROR] '+_('Bottle name can not contain special characters'))
message_dialog = Granite.MessageDialog.new_with_image_from_icon_name(
message_dialog = Gtk.MessageDialog.new_with_image_from_icon_name(
"BOTTLE_NAME_ERROR",
_('Bottle name can not contain special characters'),
"dialog-warning",
Expand Down
6 changes: 3 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
com.github.mirkobrombin.bottles (0.1.9) precise; urgency=low
com.github.mirkobrombin.bottles (0.2.0) precise; urgency=low

* Fix icon issue on software upgrade
* Fix for elementary juno

-- Mirko Brombin <[email protected]> Sun, 29 Apr 2018 08:23:00 +0200
-- Mirko Brombin <[email protected]> Sun, 15 Sep 2019 16:07:00 +0200
12 changes: 4 additions & 8 deletions debian/control
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
Source: com.github.mirkobrombin.bottles
Section: utils
Priority: optional
Maintainer: Mirko Brombin <[email protected]>
Build-Depends: debhelper (>= 10),
libgtk-3-dev,
libgranite-dev,
dh-python,
python3-all,
python3-setuptools
Maintainer: Mirko Brombin <[email protected]>
Build-Depends: debhelper (>= 10.5.1),
python3
Standards-Version: 3.9.3

Package: com.github.mirkobrombin.bottles
Architecture: any
Depends: python3, wine, libgranite-dev, ${misc:Depends}
Depends: python3, wine-stable, ${misc:Depends}
Description: Bottles
Easily manage your Wine bottles
2 changes: 2 additions & 0 deletions debian/files
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
com.github.mirkobrombin.bottles_0.2.0_amd64.buildinfo utils optional
com.github.mirkobrombin.bottles_0.2.0_amd64.deb utils optional
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
(inst_path+'/locale/de_DE/LC_MESSAGES',['bottles/locale/de_DE/LC_MESSAGES/bottles.po']),]

setup( name='Bottles',
version='0.1.9',
version='0.2.0',
author='Mirko Brombin',
description='Easily manage your Wine bottles',
url='https://github.com/mirkobrombin/bottles',
Expand Down

0 comments on commit 9e9913c

Please sign in to comment.