Skip to content

Commit

Permalink
Fixed Issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirko Brombin committed Oct 15, 2017
1 parent 679d11b commit 61af017
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 22 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,17 @@ In any case, ask for support [here](https://github.com/mirkobrombin/Bottles/issu
- libgranite-dev

## How to run
```bash
com.github.mirkobrombin.bottles
```

## Installation
Grab an updated release [here](https://github.com/mirkobrombin/bottles/archive/master.zip) or use **git**:

```bash
git clone https://github.com/mirkobrombin/Bottles.git
cd Bottles/bottles
python3 main.py
git clone https://github.com/mirkobrombin/bottles.git
cd Bottles
sudo python3 setup.py install
```


2 changes: 1 addition & 1 deletion com.github.mirkobrombin.bottles
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ else:
sys.path.insert(0, modules_path)

try:
from ppaextender import main
from bottles import main
except ImportError:
print("Failed to import module main.py!")
print("Installation was assumed to be at:", modules_path)
Expand Down
2 changes: 1 addition & 1 deletion data/com.github.mirkobrombin.bottles.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Name=Bottles
GenericName=Bottles
Comment=Easily manage your Wine bottles
Categories=System;
Exec=sh /usr/local/bin/bottles/pkexec
Exec=com.github.mirkobrombin.bottles
Icon=com.github.mirkobrombin.bottles
Terminal=false
Type=Application
Expand Down
2 changes: 1 addition & 1 deletion data/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
padding: 4px 0px 10px 0px;
}
#Title.detail_title {
padding-top: 20px;
padding-top: 10px;
}
33 changes: 17 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,23 @@
import glob, os
from distutils.core import setup

install_data = [('share/metainfo', ['data/com.github.mirkobrombin.ppaextender.appdata.xml']),
('share/applications', ['data/com.github.mirkobrombin.ppaextender.desktop']),
('share/icons/hicolor/128x128/apps',['data/com.github.mirkobrombin.ppaextender.svg']),
('bin/ppaextender',['data/style.css']),
('bin/ppaextender',['ppaextender/constants.py']),
('bin/ppaextender',['ppaextender/detail.py']),
('bin/ppaextender',['ppaextender/headerbar.py']),
('bin/ppaextender',['ppaextender/helper.py']),
('bin/ppaextender',['ppaextender/list.py']),
('bin/ppaextender',['ppaextender/main.py']),
('bin/ppaextender',['ppaextender/ppa.py']),
('bin/ppaextender',['ppaextender/stack.py']),
('bin/ppaextender',['ppaextender/welcome.py']),
('bin/ppaextender',['ppaextender/window.py']),
('bin/ppaextender',['ppaextender/__init__.py']),
('bin/ppaextender',['pkexec'])]
install_data = [('share/metainfo', ['data/com.github.mirkobrombin.bottles.appdata.xml']),
('share/applications', ['data/com.github.mirkobrombin.bottles.desktop']),
('share/icons/hicolor/128x128/apps',['data/com.github.mirkobrombin.bottles.svg']),
('bin/bottles',['data/style.css']),
('bin/bottles',['bottles/alert.py']),
('bin/bottles',['bottles/constants.py']),
('bin/bottles',['bottles/create.py']),
('bin/bottles',['bottles/detail.py']),
('bin/bottles',['bottles/headerbar.py']),
('bin/bottles',['bottles/helper.py']),
('bin/bottles',['bottles/list.py']),
('bin/bottles',['bottles/main.py']),
('bin/bottles',['bottles/stack.py']),
('bin/bottles',['bottles/welcome.py']),
('bin/bottles',['bottles/window.py']),
('bin/bottles',['bottles/wine.py']),
('bin/bottles',['bottles/__init__.py'])]

setup( name='Bottles',
version='0.0.1',
Expand Down

0 comments on commit 61af017

Please sign in to comment.