Skip to content

Commit 0808ff2

Browse files
committed
COMMON: bump version
1 parent 71544f0 commit 0808ff2

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2014-08-09
2+
Renamed command "#UNIT-PATH:" to "UNITPATH"
3+
Renamed command "#INC:" to "INCLUDE"
4+
Fixed/implemented INCLUDE command
5+
Refactored comp_pass_1 function is scan.c breaking into
6+
smaller helper functions
7+
18
2014-07-07
29
Update SDL to use SDL2 and common widget
310

configure.ac

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dnl This program is distributed under the terms of the GPL v2.0
77
dnl Download the GNU Public License (GPL) from www.gnu.org
88
dnl
99

10-
AC_INIT([smallbasic], [0.11.11])
10+
AC_INIT([smallbasic], [0.11.12])
1111
AC_CONFIG_SRCDIR([configure.ac])
1212

1313
AC_CANONICAL_TARGET
@@ -88,12 +88,12 @@ function checkDebugMode() {
8888
AC_MSG_RESULT([$with_debug])
8989
if test "$with_debug" = "yes" || test "$with_debug" = "full"
9090
then
91-
CFLAGS="-g -O0"
92-
CXXFLAGS="-g -O0"
91+
CFLAGS="${CFLAGS} -g -O0"
92+
CXXFLAGS="${CXXFLAGS} -g -O0"
9393
AC_DEFINE(_DEBUG, 1, [debugging build enabled])
9494
else
95-
CFLAGS="-O3 -Os"
96-
CXXFLAGS="-O3 -Os"
95+
CFLAGS="${CFLAGS} -O3 -Os"
96+
CXXFLAGS="${CXXFLAGS} -O3 -Os"
9797
fi
9898
AC_SUBST(CFLAGS)
9999
}

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="13"
6-
android:versionName="0.11.11">
5+
android:versionCode="14"
6+
android:versionName="0.11.12">
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
@@ -30,7 +30,7 @@ sub about()
3030
print "(_ ._ _ _.|||_) /\ (_ |/ "
3131
print "__)| | |(_||||_)/--\__)|\_"
3232
print
33-
print "Version 0.11.11"
33+
print "Version 0.11.12"
3434
print
3535
print "Copyright (c) 2002-2014 Chris Warren-Smith"
3636
print "Copyright (c) 2000-2006 Nic Christopoulos" + chr(10)

src/platform/unix/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ test: ${bin_PROGRAMS}
5252
echo $${utest} ✓; \
5353
else \
5454
echo $${utest} ✘; \
55-
cat test.out; \
55+
cat test.out; \
5656
fi ; \
5757
done;

0 commit comments

Comments
 (0)