Skip to content

Commit

Permalink
Should fix #284
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed May 22, 2021
1 parent 2037799 commit 1fb2562
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 22 deletions.
2 changes: 1 addition & 1 deletion AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ AppDir:
id: com.usebottles.bottles
name: Bottles
icon: com.usebottles.bottles
version: 3.1.9
version: 3.1.10
# Set the python executable as entry point
exec: usr/bin/python3.9
# Set the application main script path as argument. Use '$@' to forward CLI parameters
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.9
3.1.10
2 changes: 1 addition & 1 deletion com.usebottles.bottles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ modules:
sources:
- type: git
url: https://github.com/bottlesdevs/Bottles
tag: 3.1.8
tag: 3.1.10
21 changes: 4 additions & 17 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
com.usebottles.bottles (3.1.9) precise; urgency=low
com.usebottles.bottles (3.1.10) precise; urgency=low

* Moved to HdyStatusPage, HdyHeaderBar from libhandy
* Fix double row border using Yaru/Adwaita theme
* General UI improvements by @Kekun
* Add quit button in onboard view by @Kekun
* New translations
* Swedish translations thanks to @eson57
* Spanish translations thanks to @oscfdezdz, @fitojb
* Norwegian Bokmål translations thanks to @comradekingu
* Turkish translations thanks to @udopton
* Portuguese (Brazil) translations thanks to @rffontenelle
* Portuguese translations thanks to @SantosSi
* Croatian translations thanks to @milotype
* Chinese (Simplified) translations thanks to @Yuzaihhhh
* Japanese translations thanks to @jatin-cbs
* Indonesian translations thanks to @rezaalmanda
* Check for both dist and files path for Proton runners
* Indonesian translations thanks to @liimee

-- Mirko Brombin <[email protected]> Thu, 20 May 2021 17:05:00 +0000
-- Mirko Brombin <[email protected]> Thu, 22 May 2021 15:53:00 +0000
6 changes: 5 additions & 1 deletion src/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,11 @@ def async_create_bottle(self, args:list) -> None:
dxvk_name = dxvk

'''If runner is proton, files are located to the dist path'''
if runner.startswith("Proton"): runner = "%s/dist" % runner
if runner.startswith("Proton"):
if os.path.exists("%s/dist" % runner):
runner = "%s/dist" % runner
else:
runner = "%s/files" % runner

'''Define bottle parameters'''
bottle_name = name
Expand Down
2 changes: 1 addition & 1 deletion src/ui/about.ui
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<property name="window-position">center-on-parent</property>
<property name="type-hint">dialog</property>
<property name="program-name">Bottles</property>
<property name="version">3.1.9</property>
<property name="version">3.1.10</property>
<property name="copyright" translatable="yes">© 2017-2021 - Bottles Developers</property>
<property name="comments" translatable="yes">Easily manage wineprefix using environments</property>
<property name="website">https://usebottles.com</property>
Expand Down

0 comments on commit 1fb2562

Please sign in to comment.