We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88054fb commit 2e33f42Copy full SHA for 2e33f42
1 file changed
src/platform/android/app/src/main/assets/main.bas
@@ -121,7 +121,7 @@ sub do_about()
121
color colText
122
print "Version "; sbver
123
print
124
- print "Copyright (c) 2002-2025 Chris Warren-Smith"
+ print "Copyright (c) 2002-2026 Chris Warren-Smith"
125
print "Copyright (c) 1999-2006 Nicholas Christopoulos" + chr(10)
126
127
local bn_home
@@ -816,4 +816,12 @@ sub main
816
wend
817
end
818
819
+const info_file = "/.flatpak-info"
820
+if (is_sandboxed_fs and exist(info_file)) then
821
+ tload info_file, inf, 1
822
+ if "filesystems=home" in inf then
823
+ is_sandboxed_fs = false
824
+ endif
825
+endif
826
+
827
main
0 commit comments