Update to 10.6.0 from 10.5.4
* Add Java dependency, it is used with GUI server.
Changelog:
10.5.5 2013 November 20th, development release
Allow trailing , (comma) in JSON arrays. The new JSON ECMA-404 seems not
to allow it but the JavaScript standard ECMA-262 and many browsers do.
Added makefile_linux_openwrt for for TP-link TL-WR703N travel router
contributed by Dexter.
In arithmetik big integer operations + - * / % more than two operands
are allowed as in normal precision integer operations.
On Windows support UNIX conventions for formatting 64-bit integers.
I.e.: %lld %llu %llx %llX additionally to %I64d %I64u %I64x %I64X
Added ++, -- to qa-bigint. Fixed sign change on second operand of
bigint -- when second operand was negative.
Some cleanup in Cilk API when releasing resources.
The 'gcd' function now also works on big integers and > 2 operands.
On UBUNTU Linux decimal numbers can be formatted using a GNU extension
in libc, e.g: (format "%'d" 12345) => 12,345
The optional ' (single quote) after the % character causes thousands
to be separated with the appropiate character for the current locale.
Fixed a cell leak introduced in 10.5.5 when deleting contexts.
The default pretty-print float setting has been changed to "%1.15g".
'reset' now also cancels command line parameter processing.
A fix in 'round' when number is exacty 0.5.
'map', 'apply', 'stats', 'corr', 't-test' now also can take arrays
'bayes-query' with Fisher's Chi2 method calculated wrong probabilities
when training in more than two categories. When training in two
categories the result probabilities were swapped - reporting the
probability for the second category first. 'bayes-query' calculating
probabilities with the Chain Bayesian method - using the true flag -
was not affected.
Many documentation changes and corrections.
10.5.6 December 10th, 2013, development release
Since OSX 10.9 Maverick (format "%'d" 12345) => 12,345 will work too.
Will not work on any locale but works on en_US.UTF-8.
Fixed 'apply' for arrays introduced in 10.5.5 for a cell/memory leak.
When making hash trees using the predefined context 'Tree',
the default symbol in the new context is protected as is 'Tree:Tree'.
Default symbols in hash trees must be 'nil' in order for the hash
statement syntax for namespaces to work.
When copying symbols from a source context to a target contest using 'new'
or 'def-new', the 'protected?' property is copied too.
An empty list as index vector for a list or array yields the original
list or array as return value:
(set 'L '(1 2 (3 4)))
(L '()) => (1 2 (3 4))
(nth '() L) => (1 2 (3 4))
Many document changes, additions and corrections.
'int' can convert binarys numbers like (int "0b11111") => 31
This format is recognized by the code reader/loader since v.10.4.4.
Integers are accepted as hash keys. This allows creating sparse vectors:
(new Tree 'V)
(V 123 "hello")
(V 123) => "hello"
'reverse' can be used on arrays.
Anaphoric system variable $it is now set to the value of the conditional
expression in 'if'.
Speed improvements in evaluateExpression(). For this The -pendatic option
has been turned off in Linux to avoid ISO C90 mixed declaration warnings.
'length' on integers will return the number of digits, just like it already
does on bigint numbers, on floats returns the number of decimal digits before
the decimal separator.
10.5.7
Fixes for deprecated CYGWIN compile. See also makefile_cygwin for more info.
Clear potential error condition when doing 'import'.
In guiserver.jar: When adding columns with empty string headers, this will not
any more put the column number as header. This allows to add columns to
headerless tables, as possible when supplying empty string headers in the
initial gs:table statement.
Debugger will now always highlight the correct expression, not highlight
the first one if multiple instances exist.
Eliminated strncat() for BSD and better speed with memcpy() in most places.
Delay signal-behavior change in spawn after getting parameters. Makes better
error recovery.
In guiserver.jar: New table functions. Thanks to Ferry de Bruin.
gs:table-remove-row, gs:table-set-column-name and gs:table-set-row-count.
To avoid API naming confusions, the naming of old gs:table-set-row-number
is deprecated and should be called as gs:table-show-row-number.
The old naming will continue to work. Three new optional parameters for
'gs:scroll-pane' can specify colun header, row headers and a widget
for the top left corner of a table used in the scroll pane.
'find-all' should return an empty list as documented when nothing is found
on strings too.
Some renaming of functions and constants for better code readability and
some small refactoring in several files.
qa-bench has been redone with changes for Emscripten compiled newLISP.
Now calibrates for comparison with Mac OSX 9.1 on 2.3GHz Intel Core i5.
Fixed a crash bug when colon operator has missing or wrong-type args
on 64-bit compiles.
newLISP compiled to JavaSript with Emscripten
---------------------------------------------
Added makefile_emscripten_lib_utf8. For this
Must download and install the Emscripten-SDK from here:
https://github.com/kripken/emscripten/wiki/Emscripten-SDK
Tested on OSX 10.9 installing emsdk-portable.tar.gz v.1.7.8
The newlisp-js-lib.js is made using makefile_emscripten_lib_utf8.
The new function 'eval-string-js' takes a JavaSript string.
New 'display-html' can either replace the current page or display
a page in a new tab of the host browser. 'display-html' must be
defined in Emscripten appplication .html
Some functions (filter, index, clean, exists, forl-all) will not show
error messages under certain circumstanmces in the monitor, although
newLISP behaves correctly throwing the exception (setjmp/longjmp), they
just don't reach the Emscripten console (log). In this case, if the error
is not 'catch'ed newLISP exits without advising why. This problem goes away
when compiling with Emscriptem without any optimizations, but slows
everything down by a factor of 40 to 50. Normal performance is around
1.5 of native on Mac OSX when excluding all time/date related functions
and a few other outliers. Including outliers about 2.65.
See also here: https://github.com/kripken/emscripten/issues/810
(volatile declaration did not help)
All file and directory functions work (almost all did all the time),
but changes are lost after leaving the page or reloading the page.
Storage is 'session storage' only. No URLs are in allowed in file
functions as is on native compiled newLISP.
As editor, CodeMirror from codemirror.net is used and mode/newlisp.js
was created for syntax high-lighting.
10.5.8
'macro' is now a built-in primitive function working exactly as described
in the macro.lsp module, which is now obsolete. Macros cannot be redefined
using 'macro'. Macros can be nested. A symbol used as a macro can only be
used as a macro, even if changing the definition of it.
Another speed improvement for 'read-line' on file handles (the first speed
improvement happend in 10.3.10).
10.6.0
Eliminated emscripten-lib.c, gets handled by unix-lib.c.
A fix for 'file?' and 'directory?' predicates when applied to root
directories on Windows.
Updated examples/udp-server.lsp to nmake it work on Windows.
2014-07-07 16:25:31 +02:00
|
|
|
@comment $NetBSD: PLIST,v 1.7 2014/07/07 14:25:31 ryoon Exp $
|
2011-10-11 15:03:18 +02:00
|
|
|
bin/newlisp
|
|
|
|
bin/${PKGNAME}
|
|
|
|
bin/newlisp-edit
|
|
|
|
bin/newlispdoc
|
|
|
|
man/man1/newlisp.1
|
|
|
|
man/man1/newlispdoc.1
|
|
|
|
share/doc/newlisp/COPYING
|
|
|
|
share/doc/newlisp/CREDITS
|
|
|
|
share/doc/newlisp/CodePatterns.html
|
|
|
|
share/doc/newlisp/guiserver/COPYING
|
|
|
|
share/doc/newlisp/guiserver/guiserver.lsp.html
|
|
|
|
share/doc/newlisp/guiserver/index.html
|
|
|
|
share/doc/newlisp/guiserver/newlispdoc.css
|
|
|
|
share/doc/newlisp/manual_frame.html
|
|
|
|
share/doc/newlisp/newLISPdoc.html
|
|
|
|
share/doc/newlisp/newlisp_index.html
|
|
|
|
share/doc/newlisp/newlisp_manual.html
|
|
|
|
share/${PKGNAME}/guiserver.jar
|
|
|
|
share/${PKGNAME}/guiserver.lsp
|
|
|
|
share/${PKGNAME}/guiserver/allfonts-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/animation-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/border-layout-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/button-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/clipboard-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/cursor-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/drag-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/font-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/frameless-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/html-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/image-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/midi-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/midi2-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/mouse-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/move-resize-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/pinballs-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/properties-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/rotation-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/shapes-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/sound-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/stroke-demo.lsp
|
Update to 10.6.0 from 10.5.4
* Add Java dependency, it is used with GUI server.
Changelog:
10.5.5 2013 November 20th, development release
Allow trailing , (comma) in JSON arrays. The new JSON ECMA-404 seems not
to allow it but the JavaScript standard ECMA-262 and many browsers do.
Added makefile_linux_openwrt for for TP-link TL-WR703N travel router
contributed by Dexter.
In arithmetik big integer operations + - * / % more than two operands
are allowed as in normal precision integer operations.
On Windows support UNIX conventions for formatting 64-bit integers.
I.e.: %lld %llu %llx %llX additionally to %I64d %I64u %I64x %I64X
Added ++, -- to qa-bigint. Fixed sign change on second operand of
bigint -- when second operand was negative.
Some cleanup in Cilk API when releasing resources.
The 'gcd' function now also works on big integers and > 2 operands.
On UBUNTU Linux decimal numbers can be formatted using a GNU extension
in libc, e.g: (format "%'d" 12345) => 12,345
The optional ' (single quote) after the % character causes thousands
to be separated with the appropiate character for the current locale.
Fixed a cell leak introduced in 10.5.5 when deleting contexts.
The default pretty-print float setting has been changed to "%1.15g".
'reset' now also cancels command line parameter processing.
A fix in 'round' when number is exacty 0.5.
'map', 'apply', 'stats', 'corr', 't-test' now also can take arrays
'bayes-query' with Fisher's Chi2 method calculated wrong probabilities
when training in more than two categories. When training in two
categories the result probabilities were swapped - reporting the
probability for the second category first. 'bayes-query' calculating
probabilities with the Chain Bayesian method - using the true flag -
was not affected.
Many documentation changes and corrections.
10.5.6 December 10th, 2013, development release
Since OSX 10.9 Maverick (format "%'d" 12345) => 12,345 will work too.
Will not work on any locale but works on en_US.UTF-8.
Fixed 'apply' for arrays introduced in 10.5.5 for a cell/memory leak.
When making hash trees using the predefined context 'Tree',
the default symbol in the new context is protected as is 'Tree:Tree'.
Default symbols in hash trees must be 'nil' in order for the hash
statement syntax for namespaces to work.
When copying symbols from a source context to a target contest using 'new'
or 'def-new', the 'protected?' property is copied too.
An empty list as index vector for a list or array yields the original
list or array as return value:
(set 'L '(1 2 (3 4)))
(L '()) => (1 2 (3 4))
(nth '() L) => (1 2 (3 4))
Many document changes, additions and corrections.
'int' can convert binarys numbers like (int "0b11111") => 31
This format is recognized by the code reader/loader since v.10.4.4.
Integers are accepted as hash keys. This allows creating sparse vectors:
(new Tree 'V)
(V 123 "hello")
(V 123) => "hello"
'reverse' can be used on arrays.
Anaphoric system variable $it is now set to the value of the conditional
expression in 'if'.
Speed improvements in evaluateExpression(). For this The -pendatic option
has been turned off in Linux to avoid ISO C90 mixed declaration warnings.
'length' on integers will return the number of digits, just like it already
does on bigint numbers, on floats returns the number of decimal digits before
the decimal separator.
10.5.7
Fixes for deprecated CYGWIN compile. See also makefile_cygwin for more info.
Clear potential error condition when doing 'import'.
In guiserver.jar: When adding columns with empty string headers, this will not
any more put the column number as header. This allows to add columns to
headerless tables, as possible when supplying empty string headers in the
initial gs:table statement.
Debugger will now always highlight the correct expression, not highlight
the first one if multiple instances exist.
Eliminated strncat() for BSD and better speed with memcpy() in most places.
Delay signal-behavior change in spawn after getting parameters. Makes better
error recovery.
In guiserver.jar: New table functions. Thanks to Ferry de Bruin.
gs:table-remove-row, gs:table-set-column-name and gs:table-set-row-count.
To avoid API naming confusions, the naming of old gs:table-set-row-number
is deprecated and should be called as gs:table-show-row-number.
The old naming will continue to work. Three new optional parameters for
'gs:scroll-pane' can specify colun header, row headers and a widget
for the top left corner of a table used in the scroll pane.
'find-all' should return an empty list as documented when nothing is found
on strings too.
Some renaming of functions and constants for better code readability and
some small refactoring in several files.
qa-bench has been redone with changes for Emscripten compiled newLISP.
Now calibrates for comparison with Mac OSX 9.1 on 2.3GHz Intel Core i5.
Fixed a crash bug when colon operator has missing or wrong-type args
on 64-bit compiles.
newLISP compiled to JavaSript with Emscripten
---------------------------------------------
Added makefile_emscripten_lib_utf8. For this
Must download and install the Emscripten-SDK from here:
https://github.com/kripken/emscripten/wiki/Emscripten-SDK
Tested on OSX 10.9 installing emsdk-portable.tar.gz v.1.7.8
The newlisp-js-lib.js is made using makefile_emscripten_lib_utf8.
The new function 'eval-string-js' takes a JavaSript string.
New 'display-html' can either replace the current page or display
a page in a new tab of the host browser. 'display-html' must be
defined in Emscripten appplication .html
Some functions (filter, index, clean, exists, forl-all) will not show
error messages under certain circumstanmces in the monitor, although
newLISP behaves correctly throwing the exception (setjmp/longjmp), they
just don't reach the Emscripten console (log). In this case, if the error
is not 'catch'ed newLISP exits without advising why. This problem goes away
when compiling with Emscriptem without any optimizations, but slows
everything down by a factor of 40 to 50. Normal performance is around
1.5 of native on Mac OSX when excluding all time/date related functions
and a few other outliers. Including outliers about 2.65.
See also here: https://github.com/kripken/emscripten/issues/810
(volatile declaration did not help)
All file and directory functions work (almost all did all the time),
but changes are lost after leaving the page or reloading the page.
Storage is 'session storage' only. No URLs are in allowed in file
functions as is on native compiled newLISP.
As editor, CodeMirror from codemirror.net is used and mode/newlisp.js
was created for syntax high-lighting.
10.5.8
'macro' is now a built-in primitive function working exactly as described
in the macro.lsp module, which is now obsolete. Macros cannot be redefined
using 'macro'. Macros can be nested. A symbol used as a macro can only be
used as a macro, even if changing the definition of it.
Another speed improvement for 'read-line' on file handles (the first speed
improvement happend in 10.3.10).
10.6.0
Eliminated emscripten-lib.c, gets handled by unix-lib.c.
A fix for 'file?' and 'directory?' predicates when applied to root
directories on Windows.
Updated examples/udp-server.lsp to nmake it work on Windows.
2014-07-07 16:25:31 +02:00
|
|
|
share/${PKGNAME}/guiserver/table-demo.lsp
|
2011-10-11 15:03:18 +02:00
|
|
|
share/${PKGNAME}/guiserver/tabs-demo.lsp
|
Update to 10.6.0 from 10.5.4
* Add Java dependency, it is used with GUI server.
Changelog:
10.5.5 2013 November 20th, development release
Allow trailing , (comma) in JSON arrays. The new JSON ECMA-404 seems not
to allow it but the JavaScript standard ECMA-262 and many browsers do.
Added makefile_linux_openwrt for for TP-link TL-WR703N travel router
contributed by Dexter.
In arithmetik big integer operations + - * / % more than two operands
are allowed as in normal precision integer operations.
On Windows support UNIX conventions for formatting 64-bit integers.
I.e.: %lld %llu %llx %llX additionally to %I64d %I64u %I64x %I64X
Added ++, -- to qa-bigint. Fixed sign change on second operand of
bigint -- when second operand was negative.
Some cleanup in Cilk API when releasing resources.
The 'gcd' function now also works on big integers and > 2 operands.
On UBUNTU Linux decimal numbers can be formatted using a GNU extension
in libc, e.g: (format "%'d" 12345) => 12,345
The optional ' (single quote) after the % character causes thousands
to be separated with the appropiate character for the current locale.
Fixed a cell leak introduced in 10.5.5 when deleting contexts.
The default pretty-print float setting has been changed to "%1.15g".
'reset' now also cancels command line parameter processing.
A fix in 'round' when number is exacty 0.5.
'map', 'apply', 'stats', 'corr', 't-test' now also can take arrays
'bayes-query' with Fisher's Chi2 method calculated wrong probabilities
when training in more than two categories. When training in two
categories the result probabilities were swapped - reporting the
probability for the second category first. 'bayes-query' calculating
probabilities with the Chain Bayesian method - using the true flag -
was not affected.
Many documentation changes and corrections.
10.5.6 December 10th, 2013, development release
Since OSX 10.9 Maverick (format "%'d" 12345) => 12,345 will work too.
Will not work on any locale but works on en_US.UTF-8.
Fixed 'apply' for arrays introduced in 10.5.5 for a cell/memory leak.
When making hash trees using the predefined context 'Tree',
the default symbol in the new context is protected as is 'Tree:Tree'.
Default symbols in hash trees must be 'nil' in order for the hash
statement syntax for namespaces to work.
When copying symbols from a source context to a target contest using 'new'
or 'def-new', the 'protected?' property is copied too.
An empty list as index vector for a list or array yields the original
list or array as return value:
(set 'L '(1 2 (3 4)))
(L '()) => (1 2 (3 4))
(nth '() L) => (1 2 (3 4))
Many document changes, additions and corrections.
'int' can convert binarys numbers like (int "0b11111") => 31
This format is recognized by the code reader/loader since v.10.4.4.
Integers are accepted as hash keys. This allows creating sparse vectors:
(new Tree 'V)
(V 123 "hello")
(V 123) => "hello"
'reverse' can be used on arrays.
Anaphoric system variable $it is now set to the value of the conditional
expression in 'if'.
Speed improvements in evaluateExpression(). For this The -pendatic option
has been turned off in Linux to avoid ISO C90 mixed declaration warnings.
'length' on integers will return the number of digits, just like it already
does on bigint numbers, on floats returns the number of decimal digits before
the decimal separator.
10.5.7
Fixes for deprecated CYGWIN compile. See also makefile_cygwin for more info.
Clear potential error condition when doing 'import'.
In guiserver.jar: When adding columns with empty string headers, this will not
any more put the column number as header. This allows to add columns to
headerless tables, as possible when supplying empty string headers in the
initial gs:table statement.
Debugger will now always highlight the correct expression, not highlight
the first one if multiple instances exist.
Eliminated strncat() for BSD and better speed with memcpy() in most places.
Delay signal-behavior change in spawn after getting parameters. Makes better
error recovery.
In guiserver.jar: New table functions. Thanks to Ferry de Bruin.
gs:table-remove-row, gs:table-set-column-name and gs:table-set-row-count.
To avoid API naming confusions, the naming of old gs:table-set-row-number
is deprecated and should be called as gs:table-show-row-number.
The old naming will continue to work. Three new optional parameters for
'gs:scroll-pane' can specify colun header, row headers and a widget
for the top left corner of a table used in the scroll pane.
'find-all' should return an empty list as documented when nothing is found
on strings too.
Some renaming of functions and constants for better code readability and
some small refactoring in several files.
qa-bench has been redone with changes for Emscripten compiled newLISP.
Now calibrates for comparison with Mac OSX 9.1 on 2.3GHz Intel Core i5.
Fixed a crash bug when colon operator has missing or wrong-type args
on 64-bit compiles.
newLISP compiled to JavaSript with Emscripten
---------------------------------------------
Added makefile_emscripten_lib_utf8. For this
Must download and install the Emscripten-SDK from here:
https://github.com/kripken/emscripten/wiki/Emscripten-SDK
Tested on OSX 10.9 installing emsdk-portable.tar.gz v.1.7.8
The newlisp-js-lib.js is made using makefile_emscripten_lib_utf8.
The new function 'eval-string-js' takes a JavaSript string.
New 'display-html' can either replace the current page or display
a page in a new tab of the host browser. 'display-html' must be
defined in Emscripten appplication .html
Some functions (filter, index, clean, exists, forl-all) will not show
error messages under certain circumstanmces in the monitor, although
newLISP behaves correctly throwing the exception (setjmp/longjmp), they
just don't reach the Emscripten console (log). In this case, if the error
is not 'catch'ed newLISP exits without advising why. This problem goes away
when compiling with Emscriptem without any optimizations, but slows
everything down by a factor of 40 to 50. Normal performance is around
1.5 of native on Mac OSX when excluding all time/date related functions
and a few other outliers. Including outliers about 2.65.
See also here: https://github.com/kripken/emscripten/issues/810
(volatile declaration did not help)
All file and directory functions work (almost all did all the time),
but changes are lost after leaving the page or reloading the page.
Storage is 'session storage' only. No URLs are in allowed in file
functions as is on native compiled newLISP.
As editor, CodeMirror from codemirror.net is used and mode/newlisp.js
was created for syntax high-lighting.
10.5.8
'macro' is now a built-in primitive function working exactly as described
in the macro.lsp module, which is now obsolete. Macros cannot be redefined
using 'macro'. Macros can be nested. A symbol used as a macro can only be
used as a macro, even if changing the definition of it.
Another speed improvement for 'read-line' on file handles (the first speed
improvement happend in 10.3.10).
10.6.0
Eliminated emscripten-lib.c, gets handled by unix-lib.c.
A fix for 'file?' and 'directory?' predicates when applied to root
directories on Windows.
Updated examples/udp-server.lsp to nmake it work on Windows.
2014-07-07 16:25:31 +02:00
|
|
|
share/${PKGNAME}/guiserver/textfield-demo.lsp
|
2011-10-11 15:03:18 +02:00
|
|
|
share/${PKGNAME}/guiserver/textrot-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/uppercase.lsp
|
|
|
|
share/${PKGNAME}/guiserver/widgets-demo.lsp
|
|
|
|
share/${PKGNAME}/guiserver/word-count.lsp
|
|
|
|
share/${PKGNAME}/modules/canvas.lsp
|
|
|
|
share/${PKGNAME}/modules/cgi.lsp
|
|
|
|
share/${PKGNAME}/modules/crypto.lsp
|
|
|
|
share/${PKGNAME}/modules/ftp.lsp
|
2012-11-22 19:54:06 +01:00
|
|
|
share/${PKGNAME}/modules/getopts.lsp
|
2011-10-11 15:03:18 +02:00
|
|
|
share/${PKGNAME}/modules/gmp.lsp
|
Update to 10.4.4
Changelog:
10.4.1 Development release April 3rd, 2012
The day-of-year value in 'date-list' now also starts with 1, like in 'now'.
Added CELL_IMPORT_FFI to various output functions (source, save etc.).
Added UTF-8 meta tag to newlispdoc HTML output.
Protect internally variable $x used in 'curry' and predefined 'module'.
When extended 'import' FFI is compiled, show 'libffi' in banner.
Added new function 'union' (composed of (unique (append ...))).
New functions 'odd?' and 'even?'
Fixed unix.lsp for new overwrite protection of imported symbols in ffilib version
An additional 'true' flag in (char str idx true) returns the byte value instead
of the UTF-8 character value at index idx in the string.
Handle probablilities less 0.5 in crit-z.
New 'prob-t', 'crit-t', 'prob-f', 'crit-f' for Student's t and F statistic.
'crit-chi2' redone for extreme values. All report small, significant
one-tailed probabilities for higher values of t, or F.
Adjustments in 'normal' for better fit.
Optional 'true' flag in 'file?' lets it return filename string.
Windows version should cut off trailing CR-LFs in string passed to 'command-event'.
10.4.2 stable maintenance release May 2nd, 2012
In extended ffi "char*" will now only accept strings not integer addresses to
string buffers. For passing integer addresses use "void*" - internally libffi
treats them as the same, but the new approach gives automatic type-checking
at the newLISP level without causing a segfault. Already for return values
"char*" always returns a newLISP string and "void*" an integer address.
A fix for 'pack' when packing structures made with 'struct' in 64-bit newLISP.
In 'import' for OSX/Linux/Unix allow libraries to be opened without importing
functions. This is necessary if an imported library refers to another one, e.g.:
(import "libgslcblas.dylib")
New module gsl.lsp with SVD, QR and Cholesky decompositions.
Added 'corr', 't-test' and 'stats' statistical functions.
New standard module gsl.lsp for SDV, QR and Cholesky decomp. and solver routines.
Updated plot.lsp with line and XY plot now a standard module.
10.4.3 stable maintenance release May 7th, 2012
(seek <file-handle>) after (read-line <file-handle>) was broken in 10.4.0 when
introducing faster file stream reading on 'read-line' and file closing could
leak memory.
10.4.4
Eliminated getFloatFromCell() and replaced by getDirectFloat() in nl-math.c
Fixed error message for missing [/text] -tag when loading source from file.
read-file, write-file, append-file, delete-file when used with http:// URLs will
now return nil under error conditions instead of throwing an error. This is
consistent with error behavior on local files. When nil is returned, net-error
gives more error information. For remote server-side errors on URLs the server
HTTP error page is returned.
Check for UTF8 string validity in functions which are UTF8 sensitive.
An error message "invalid UTF8 string" is issued for invalid UTF8 strings.
Several - and continuing - manual updates, most of them also going into current
online version of manual.
guiserver.jar 1.47 fixes getting text from an empty gs:text-field.
Binary number format can be used with either 0b or 0B as prefix to up to 64
1's and 0's, e.g. 0b101010 for the number 42.
A 'true' flag as optional parameter in base64-enc will force the empty string
to be translated as "" instead of "====". Both cases translate correctly to
the empty string when fed into base64-dec.
Fixed a result stack overflow problem on callback's.
On OSX Mountain Lion 10.8.0 compiles also using clang instead of gcc.
2012-10-06 12:49:41 +02:00
|
|
|
share/${PKGNAME}/modules/gsl.lsp
|
2011-10-11 15:03:18 +02:00
|
|
|
share/${PKGNAME}/modules/infix.lsp
|
|
|
|
share/${PKGNAME}/modules/mysql.lsp
|
|
|
|
share/${PKGNAME}/modules/odbc.lsp
|
2012-11-22 19:54:06 +01:00
|
|
|
share/${PKGNAME}/modules/plot.lsp
|
2011-10-11 15:03:18 +02:00
|
|
|
share/${PKGNAME}/modules/pop3.lsp
|
|
|
|
share/${PKGNAME}/modules/postgres.lsp
|
|
|
|
share/${PKGNAME}/modules/postscript.lsp
|
|
|
|
share/${PKGNAME}/modules/smtp.lsp
|
|
|
|
share/${PKGNAME}/modules/smtpx.lsp
|
|
|
|
share/${PKGNAME}/modules/sqlite3.lsp
|
|
|
|
share/${PKGNAME}/modules/stat.lsp
|
|
|
|
share/${PKGNAME}/modules/unix.lsp
|
|
|
|
share/${PKGNAME}/modules/xmlrpc-client.lsp
|
|
|
|
share/${PKGNAME}/modules/zlib.lsp
|
|
|
|
share/${PKGNAME}/newLISP128.png
|
|
|
|
share/${PKGNAME}/util/newlisp.vim
|
|
|
|
share/${PKGNAME}/util/syntax.cgi
|