Skip to content

Commit eed01bb

Browse files
committed
UI: Fix file manager .bas file case sensitivity
1 parent 2113428 commit eed01bb

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

ChangeLog

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
Fix Ctrl+Home editor keystroke handler
99
Fix crash with online command if site is down
1010
Fix over scroll issue with line number widget
11-
Implemented editor F2 command to display online help
1211
Fix screen dump invalid file name for online files
12+
Fix file manager .bas file case sensitivity
13+
Implemented editor F2 command to display online help
1314

1415
2015-10-20
1516
Fix LET when assigning a value to a MAP/ARRAY field

ide/android/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="net.sourceforge.smallbasic"
44
android:installLocation="preferExternal"
5-
android:versionCode="15"
6-
android:versionName="0.12.0">
5+
android:versionCode="16"
6+
android:versionName="0.12.1">
77
<!-- This is the platform API where NativeActivity was introduced. -->
88
<uses-sdk android:minSdkVersion="9"/>
99

ide/android/assets/main.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ sub listFiles(byref frm, path, byref basList, byref dirList)
183183
name = ent
184184
if (isdir(path + name)) then
185185
dirList << name
186-
else if (right(ent, 4) == ".bas") then
186+
else if (lower(right(ent, 4)) == ".bas") then
187187
basList << name
188188
endif
189189
next ent

0 commit comments

Comments
 (0)