Release 1.9.0

This commit is contained in:
Carsten Sonne Larsen 2021-01-11 21:10:34 +01:00
parent 538ad4ac23
commit ee26a57960
20 changed files with 37 additions and 31 deletions

View File

@ -1,5 +1,8 @@
amath release history
v1.9.0 January 11 2021
- AmigaOS ARexx interface.
v1.8.5 August 07 2018
- Fix build on compilers with broken endian detection.
@ -108,7 +111,7 @@ v1.5.3 October 26 2014
v1.5.2 October 11 2014
- Modified character handling code to comply with licenses.
- Modified complex math code to comply with licenses.
- Modified code base to work with Kickstart 2.04.
- Modified code base to work with Kickstart 2.04.
- Square root of negative numbers now yields correct result.
- Implemented scientific notation of numbers.
- Infinity is now shown in division with 0.

View File

@ -20,7 +20,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.TH amath 1 "Version 1.8.5" "August 07 2018"
.TH amath 1 "Version 1.9.0" "January 11 2021"
.SH NAME
amath \- Simple command line calculator
.SH SYNOPSIS

View File

@ -1,7 +1,7 @@
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "amath"
PROJECT_NUMBER = "1.8.5"
PROJECT_NUMBER = "1.9.0"
PROJECT_BRIEF = "Simple command line calculator"
PROJECT_LOGO =
OUTPUT_DIRECTORY = ../amath-doc

View File

@ -30,7 +30,7 @@
set -e
version="1.8.5"
version="1.9.0"
build_package () {

View File

@ -32,7 +32,7 @@
set -e
version="1.8.5"
version="1.9.0"
build_package () {

View File

@ -1,15 +1,15 @@
#!/bin/sh
#
#
# This file is public domain
#
#
# Project homepage:
# https://amath.innolan.net
#
#
# DO NOT USE THIS SCRIPT UNLESS YOU KNOW WHAT YOU ARE DOING !
version='1.8.5'
stamp="201808070000"
version='1.9.0'
stamp="202101110000"
srcdir="amath-rc"
distdir="amath-${version}"
cd ..

View File

@ -1,14 +1,14 @@
#!/bin/sh
#
#
# This file is public domain
#
#
# Project homepage:
# https://amath.innolan.net
#
#
set -e
version="1.8.5"
version="1.9.0"
echo "Building amath ${version} for Windows ..."

2
configure vendored
View File

@ -27,7 +27,7 @@
set -e
version="1.8.5"
version="1.9.0"
clang=false
debugsym=false

View File

@ -333,9 +333,9 @@ typedef int bool;
#endif
/******************************************************************************/
#define TXTARCH TXTCPU TXTFPU
#define RELDATESTAMP "(07-08-2018)"
#define TXTDOSVERSION "\0$VER: amath 1.85" SPACE RELDATESTAMP SPACE TXTARCH
#define TXTTITLE "amath version 1.8.5"
#define RELDATESTAMP "(11-01-2021)"
#define TXTDOSVERSION "\0$VER: amath 1.90" SPACE RELDATESTAMP SPACE TXTARCH
#define TXTTITLE "amath version 1.9.0"
#define TXTCOPYRIGHT "(c) 2018 Carsten Sonne Larsen"
#define TXTSTARTMSG TXTTITLE SPACE TXTCOPYRIGHT
/******************************************************************************/

View File

@ -20,7 +20,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.TH "amathc.h" 3 "Version 1.8.5" "August 07 2018"
.TH "amathc.h" 3 "Version 1.9.0" "January 11 2021"
.SH NAME
amathc.h \- C functions for manipulating strings and memory
.SH SYNOPSIS

View File

@ -1,10 +1,10 @@
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "amathc"
PROJECT_NUMBER = "1.8.5"
PROJECT_NUMBER = "1.9.0"
PROJECT_BRIEF = "C functions for manipulating strings and memory"
PROJECT_LOGO =
OUTPUT_DIRECTORY =
OUTPUT_DIRECTORY =
CREATE_SUBDIRS = NO
ALLOW_UNICODE_NAMES = NO
OUTPUT_LANGUAGE = English

View File

@ -5,6 +5,6 @@ libdir=${exec_prefix}/lib
Name: amath C library
Description: C functions for manipulating strings and memory
Version: 1.8.5
Version: 1.9.0
Cflags: -I${includedir}
Libs: -L${libdir} -lamathc

View File

@ -20,7 +20,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.TH "mathi.h" 3 "Version 1.8.5" "August 07 2018"
.TH "mathi.h" 3 "Version 1.9.0" "January 11 2021"
.SH NAME
mathi.h \- Complex numbers math library
.SH SYNOPSIS

View File

@ -1,10 +1,10 @@
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "amathi"
PROJECT_NUMBER = "1.8.5"
PROJECT_NUMBER = "1.9.0"
PROJECT_BRIEF = "Complex numbers math library"
PROJECT_LOGO =
OUTPUT_DIRECTORY =
OUTPUT_DIRECTORY =
CREATE_SUBDIRS = NO
ALLOW_UNICODE_NAMES = NO
OUTPUT_LANGUAGE = English

View File

@ -5,6 +5,6 @@ libdir=${exec_prefix}/lib
Name: amath complex library
Description: Complex numbers math library
Version: 1.8.5
Version: 1.9.0
Cflags: -I${includedir}
Libs: -L${libdir} -lamathi

View File

@ -5,6 +5,6 @@ libdir=${exec_prefix}/lib
Name: amath application library
Description: C++ library for handling numbers
Version: 1.8.5
Version: 1.9.0
Cflags: -I${includedir}
Libs: -L${libdir} -lamathapp -lamathr -lamathi -lamathc

View File

@ -261,6 +261,9 @@
\page release_page Release history
\section release_sec Release history
\subsection version185 1.9.0 January 11 2021
- AmigaOS ARexx interface.
\subsection version185 1.8.5 August 07 2018
- Fix build on compilers with broken endian detection.

View File

@ -20,7 +20,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.TH "mathr.h" 3 "Version 1.8.5" "August 07 2018"
.TH "mathr.h" 3 "Version 1.9.0" "January 11 2021"
.SH NAME
mathr.h \- Real numbers math library
.SH SYNOPSIS

View File

@ -1,10 +1,10 @@
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "amathr"
PROJECT_NUMBER = "1.8.5"
PROJECT_NUMBER = "1.9.0"
PROJECT_BRIEF = "Real numbers math library"
PROJECT_LOGO =
OUTPUT_DIRECTORY =
OUTPUT_DIRECTORY =
CREATE_SUBDIRS = NO
ALLOW_UNICODE_NAMES = NO
OUTPUT_LANGUAGE = English

View File

@ -5,6 +5,6 @@ libdir=${exec_prefix}/lib
Name: amath real library
Description: Real numbers math library
Version: 1.8.5
Version: 1.9.0
Cflags: -I${includedir}
Libs: -L${libdir} -lamathr