Skip to content

Commit 81e91ed

Browse files
committed
Bump version to v0.2.0-beta
1 parent 476860e commit 81e91ed

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/actions/get-default-themes/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
shell: sh
1414
env:
1515
THEME_NAME: default.pck
16-
THEME_VERSION: v0.1.3-beta
16+
THEME_VERSION: v0.2.0-beta
1717
run: |
1818
cd themes_workdir
1919
curl -L https://github.com/retrohub-org/default-theme/releases/download/${{ env.THEME_VERSION }}/${{ env.THEME_NAME }} --output ${{ env.THEME_NAME }}
@@ -22,7 +22,7 @@ runs:
2222
shell: sh
2323
env:
2424
THEME_NAME: es-theme-wrapper.pck
25-
THEME_VERSION: v0.1.0-beta
25+
THEME_VERSION: v0.2.0-beta
2626
run: |
2727
cd themes_workdir
2828
curl -L https://github.com/retrohub-org/es-theme-wrapper/releases/download/${{ env.THEME_VERSION }}/${{ env.THEME_NAME }} --output ${{ env.THEME_NAME }}

export_presets.cfg

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ application/modify_resources=true
115115
application/icon="res://assets/icons/app/retrohub_win.ico"
116116
application/console_wrapper_icon=""
117117
application/icon_interpolation=4
118-
application/file_version="0.1.3.0"
119-
application/product_version="0.1.3.0"
118+
application/file_version="0.2.0.0"
119+
application/product_version="0.2.0.0"
120120
application/company_name="retrohub-org"
121121
application/product_name="RetroHub"
122122
application/file_description="Retro gaming library frontend"
@@ -177,8 +177,8 @@ application/modify_resources=true
177177
application/icon="res://assets/icons/app/retrohub_win.ico"
178178
application/console_wrapper_icon=""
179179
application/icon_interpolation=4
180-
application/file_version="0.1.3.0"
181-
application/product_version="0.1.3.0"
180+
application/file_version="0.2.0.0"
181+
application/product_version="0.2.0.0"
182182
application/company_name="retrohub-org"
183183
application/product_name="RetroHub"
184184
application/file_description="Retro gaming library frontend"
@@ -230,8 +230,8 @@ application/icon_interpolation=4
230230
application/bundle_identifier="com.retrohub-org.RetroHub"
231231
application/signature=""
232232
application/app_category="Games"
233-
application/short_version="0.1.3"
234-
application/version="0.1.3-beta"
233+
application/short_version="0.2.0"
234+
application/version="0.2.0-beta"
235235
application/copyright=""
236236
application/copyright_localized={}
237237
application/min_macos_version="10.12"

source/RetroHub.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ var _is_input_remap_utility := false
3232
var _theme_processing_done := false
3333

3434
const version_major := 0
35-
const version_minor := 1
36-
const version_patch := 3
35+
const version_minor := 2
36+
const version_patch := 0
3737
const version_extra := "-beta"
3838
# FIXME: This worked before as "const version_str". Report regression?
3939
var version_str := "%d.%d.%d%s" % [version_major, version_minor, version_patch, version_extra]

0 commit comments

Comments
 (0)