aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-08-15 18:06:28 +0000
committerdam <dam@gudinoff>2022-08-15 18:06:28 +0000
commit41151251d5baa1c5b69a8fdc9de2e59cba8cad70 (patch)
tree79eacc52c655b29c9c25ef26fb7cd3c045ed30f4
parenta9ee49fd6bbd409ab21dbd954b7b99547822d884 (diff)
downloadsurgery-log-41151251d5baa1c5b69a8fdc9de2e59cba8cad70.tar.zst
surgery-log-41151251d5baa1c5b69a8fdc9de2e59cba8cad70.zip
Updated project to Godot 3.5.0 to fix Android problems on storage access.v1.3
-rw-r--r--export_presets.cfg14
-rw-r--r--logic/menu.gd4
-rw-r--r--main.tscn2
-rw-r--r--project.godot2
4 files changed, 12 insertions, 10 deletions
diff --git a/export_presets.cfg b/export_presets.cfg
index c468504..19202dd 100644
--- a/export_presets.cfg
+++ b/export_presets.cfg
@@ -16,8 +16,10 @@ script_encryption_key=""
custom_template/debug=""
custom_template/release=""
-custom_template/use_custom_build=false
-custom_template/export_format=0
+custom_build/use_custom_build=false
+custom_build/export_format=0
+custom_build/min_sdk=""
+custom_build/target_sdk=""
architectures/armeabi-v7a=true
architectures/arm64-v8a=false
architectures/x86=false
@@ -30,9 +32,7 @@ keystore/release_user=""
keystore/release_password=""
one_click_deploy/clear_previous_install=false
version/code=1
-version/name="1.1"
-version/min_sdk=19
-version/target_sdk=30
+version/name="1"
package/unique_name="com.gudinoff.$genname"
package/name=""
package/signed=true
@@ -42,7 +42,6 @@ package/exclude_from_recents=false
launcher_icons/main_192x192="res://icons/icon.png"
launcher_icons/adaptive_foreground_432x432="res://icons/icon_foreground.png"
launcher_icons/adaptive_background_432x432="res://icons/icon_background.png"
-graphics/32_bits_framebuffer=true
graphics/opengl_debug=false
xr_features/xr_mode=0
xr_features/hand_tracking=0
@@ -131,6 +130,7 @@ permissions/location_hardware=false
permissions/manage_accounts=false
permissions/manage_app_tokens=false
permissions/manage_documents=false
+permissions/manage_external_storage=true
permissions/master_clear=false
permissions/media_content_control=false
permissions/modify_audio_settings=false
@@ -257,6 +257,7 @@ texture_format/etc=false
texture_format/etc2=false
texture_format/no_bptc_fallbacks=true
codesign/enable=false
+codesign/identity_type=0
codesign/identity=""
codesign/password=""
codesign/timestamp=true
@@ -264,6 +265,7 @@ codesign/timestamp_server_url=""
codesign/digest_algorithm=1
codesign/description=""
codesign/custom_options=PoolStringArray( )
+application/modify_resources=true
application/icon="res://icons/icon.png"
application/file_version=""
application/product_version=""
diff --git a/logic/menu.gd b/logic/menu.gd
index c90f837..8bf4f1b 100644
--- a/logic/menu.gd
+++ b/logic/menu.gd
@@ -150,7 +150,9 @@ func export_app_log(file_path: String):
func about_action():
- var message := "Surgery Log\nversion %s\n\n~\n\ncreated by\n%s\n%s" % [ProjectSettings.get_setting("global/version"), "daniel almeida martins", "gudinoff"]
+ var project_name := ProjectSettings.get_setting("application/config/name") as String
+ var version := ProjectSettings.get_setting("global/version") as String
+ var message := "%s\nversion %s\n~\ncreated by\n%s\n~\n%s" % [project_name, version, "daniel almeida martins", "gudinoff"]
dialog.setup(message, "", "")
popup.open_popup("About", dialog)
diff --git a/main.tscn b/main.tscn
index ff3adb6..694f41a 100644
--- a/main.tscn
+++ b/main.tscn
@@ -251,8 +251,6 @@ mode_overrides_title = false
access = 2
filters = PoolStringArray( "*.*" )
show_hidden_files = true
-current_dir = ""
-current_path = ""
script = ExtResource( 15 )
__meta__ = {
"_edit_use_anchors_": false
diff --git a/project.godot b/project.godot
index d9a5db9..e1be231 100644
--- a/project.godot
+++ b/project.godot
@@ -112,7 +112,7 @@ window/handheld/orientation="portrait"
[global]
-version="1.2"
+version="1.3"
[input_devices]