Skip to content

Commit

Permalink
Release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasokken committed Mar 5, 2021
1 parent ec46e4b commit 902ddd0
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 11 deletions.
16 changes: 16 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2021-03-04: release 3.0.1

* Implemented a work-around for a bug in the decimal floating-point library
that could cause inaccurate results for several complex functions.
* Implemented PRMVAR function. This prints all the variables associated with
the given LBL through MVAR declarations.
* Implemented new comparison functions, for comparing arbitrary arguments to X
or to zero: X=?, X<?, 0=?, etc.
* Added error number 8 to RTNERR, to allow user-defined functions to raise the
Too Few Arguments error condition.
* RTN from the keyboard, and other actions that cause the RTN stack to be
cleared, now restore the stack mode if it had been changed locally using
LNSTK or L4STK.
* Windows version: Fixed a bug that could cause programs with many ALPHA labels
to show up as blank lines in the Export Programs dialog.

2021-02-22: release 3.0

* Added dynamic stack option. See the Free42 web site for details.
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
applicationId "com.thomasokken.free42"
minSdkVersion 14
targetSdkVersion 29
versionCode 135
versionName "3.0"
versionCode 136
versionName "3.0.1"
}
buildTypes {
debug {
Expand Down
2 changes: 1 addition & 1 deletion gtk/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0
3.0.1
4 changes: 2 additions & 2 deletions iphone/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>30</string>
<string>30.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>3.0</string>
<string>3.0.1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSLocationWhenInUseUsageDescription</key>
Expand Down
4 changes: 2 additions & 2 deletions mac/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>30</string>
<string>30.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>3.0</string>
<string>3.0.1</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
Expand Down
8 changes: 4 additions & 4 deletions windows/VERSION.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define FREE42_VERSION_1 "Free42 3.0"
#define FREE42_VERSION_2 "3.0\0"
#define FREE42_VERSION_3 3,0,0,0
#define FREE42_VERSION_4 "Release 3.0"
#define FREE42_VERSION_1 "Free42 3.0.1"
#define FREE42_VERSION_2 "3.0.1\0"
#define FREE42_VERSION_3 3,0,1,0
#define FREE42_VERSION_4 "Release 3.0.1"

0 comments on commit 902ddd0

Please sign in to comment.