Skip to content

Commit

Permalink
update release
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Sep 13, 2021
1 parent 017495a commit 8f21760
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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: 2021.8.28-treviso-4
version: 2021.9.14-treviso
# 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 @@
2021.8.28-treviso-4
2021.9.14-treviso
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project(
'bottles',
version: '2021.8.28',
version: '2021.9.14',
meson_version: '>= 0.50.0',
default_options: [
'warning_level=2',
Expand Down
4 changes: 2 additions & 2 deletions src/bottles.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ import gettext

if "APPDIR" in os.environ:
APPDIR = os.environ["APPDIR"]
VERSION = "2021.8.28"
VERSION = "2021.9.14"
pkgdatadir = "/usr/local/share/bottles"
localedir = "/usr/local/share/locale"
gresource_path = f"{APPDIR}/{pkgdatadir}/bottles.gresource"
sys.path.insert(1, f"{APPDIR}/{pkgdatadir}")
elif "SNAP" in os.environ:
SNAP = os.environ["SNAP"]
VERSION = "2021.8.28"
VERSION = "2021.9.14"
pkgdatadir = "usr/share/bottles"
localedir = "usr/share/locale"
gresource_path = f"{SNAP}/{pkgdatadir}/bottles.gresource"
Expand Down
2 changes: 1 addition & 1 deletion src/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
APP_NAME = "Bottles"
APP_NAME_LOWER = APP_NAME.lower()
APP_ID = "com.usebottles.bottles"
VERSION = "2021.8.28-treviso-4"
VERSION = "2021.9.14-treviso"

# Internal settings not user editable
ANIM_DURATION = 120
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">2021.8.28-treviso-4</property>
<property name="version">2021.9.14-treviso</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 8f21760

Please sign in to comment.