Skip to content

Commit

Permalink
2022.10.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Oct 15, 2022
1 parent 55c634e commit cae0ee8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ AppDir:
id: com.usebottles.bottles
name: Bottles
icon: com.usebottles.bottles
version: 2022.10.14
version: 2022.10.14.1

# Set the python executable as entry point
exec: usr/bin/python3.10
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2022.10.14
2022.10.14.1
2 changes: 1 addition & 1 deletion bottles/backend/managers/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ def process_bottle(bottle):
conf_file_yaml["Latest_Executables"] = []

# Migrate old programs to [id] and [name]
# TODO: remove this migration after 2022.10.14
# TODO: remove this migration after 2022.10.14.1
_temp = {}
_changed = False
for k, v in conf_file_yaml.get("External_Programs").items():
Expand Down
4 changes: 2 additions & 2 deletions bottles/frontend/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
APP_NAME = "Bottles"
APP_NAME_LOWER = APP_NAME.lower()
APP_ID = "com.usebottles.bottles"
VERSION = "2022.10.14"
VERSION_NUM = "2022.10.14"
VERSION = "2022.10.14.1"
VERSION_NUM = "2022.10.14.1"
BUILD_TYPE = "prod"

# Internal settings not user editable
Expand Down
2 changes: 1 addition & 1 deletion bottles/frontend/ui/about.blp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using Gtk 4.0;
.AdwAboutWindow about_window {
application-name: "Bottles";
modal: true;
version: "2022.10.14";
version: "2022.10.14.1";
copyright: _("Copyright © 2017 Bottles Developers");
website: "https://usebottles.com";
issue-url: "https://github.com/bottlesdevs/Bottles/issues";
Expand Down
2 changes: 1 addition & 1 deletion data/com.usebottles.bottles.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<display_length compare="ge">768</display_length>
</requires>
<releases>
<release version="2022.10.14" date="2022-10-14">
<release version="2022.10.14.1" date="2022-10-14">
<description>
<p>News</p>
<ul>
Expand Down
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: '2022.10.14',
version: '2022.10.14.1',
meson_version: '>= 0.59.0',
default_options: [
'warning_level=2',
Expand Down

0 comments on commit cae0ee8

Please sign in to comment.