2019-01-10 19:28:41 +01:00
|
|
|
# RETRO 12.2019.6
|
2018-11-09 05:01:12 +01:00
|
|
|
|
2019-01-31 22:37:28 +01:00
|
|
|
This is the changelog for the development builds of Retro.
|
|
|
|
I am currently planning to have the next release occur in
|
|
|
|
June 2019.
|
|
|
|
|
2018-11-04 22:57:09 +01:00
|
|
|
## Bug Fixes
|
2017-11-19 02:12:29 +01:00
|
|
|
|
2018-07-31 17:38:06 +02:00
|
|
|
## Build
|
2018-04-18 17:42:23 +02:00
|
|
|
|
2019-01-10 19:28:41 +01:00
|
|
|
- parallel builds now work
|
2019-01-16 18:57:12 +01:00
|
|
|
- refactor Makefile
|
2019-02-07 05:12:24 +01:00
|
|
|
- support for adding custom code to an image at build
|
2019-03-02 16:39:43 +01:00
|
|
|
time (see package/list)
|
2019-02-06 04:41:05 +01:00
|
|
|
- only build the toolchain and `retro` binary by default
|
2019-03-02 16:39:43 +01:00
|
|
|
- fix an issue with rebuilding of image
|
2018-11-04 22:34:56 +01:00
|
|
|
|
2018-07-31 17:38:06 +02:00
|
|
|
## Core Language
|
2017-11-19 02:12:29 +01:00
|
|
|
|
2019-01-10 19:28:41 +01:00
|
|
|
- remove `set:from-results`
|
2019-01-11 21:27:50 +01:00
|
|
|
- add `if;`
|
|
|
|
- add `-if;`
|
2019-01-19 05:49:47 +01:00
|
|
|
- add `hook`
|
|
|
|
- add `set-hook`
|
|
|
|
- add `unhook`
|
2019-03-14 18:35:45 +01:00
|
|
|
- add `)`
|
2019-01-19 05:49:47 +01:00
|
|
|
- `c:put` primitive is a hookable word
|
2019-02-21 05:19:14 +01:00
|
|
|
- `set:` is now `array:`
|
2018-02-12 19:23:34 +01:00
|
|
|
|
2019-01-28 15:38:15 +01:00
|
|
|
## I/O and Extensions
|
|
|
|
|
|
|
|
### Floating Point
|
|
|
|
|
2019-02-22 04:01:26 +01:00
|
|
|
- add f:adepth
|
2019-01-28 15:38:15 +01:00
|
|
|
- add f:between?
|
2019-01-28 16:27:24 +01:00
|
|
|
- add f:case
|
2019-02-20 04:38:05 +01:00
|
|
|
- add f:dec
|
|
|
|
- add f:drop-pair
|
|
|
|
- add f:dup-pair
|
2019-03-03 03:13:38 +01:00
|
|
|
- add f:dump-astack
|
2019-01-29 03:21:52 +01:00
|
|
|
- add f:dump-stack
|
2019-02-20 04:38:05 +01:00
|
|
|
- add f:inc
|
|
|
|
- add f:limit
|
|
|
|
- add f:max
|
|
|
|
- add f:min
|
|
|
|
- add f:nip
|
|
|
|
- add f:pop
|
|
|
|
- add f:push
|
|
|
|
- add f:rot
|
2019-02-20 04:36:22 +01:00
|
|
|
- add f:sign
|
2019-03-02 16:39:43 +01:00
|
|
|
- add f:E1
|
|
|
|
- add f:-shift
|
|
|
|
- add f:+shift
|
|
|
|
- add f:signed-sqrt
|
|
|
|
- add f:+encode
|
|
|
|
- add f:-encode
|
|
|
|
- add f:signed-square
|
2019-01-28 15:38:15 +01:00
|
|
|
- improved f:tuck
|
|
|
|
- improved f:over
|
2019-03-02 16:04:46 +01:00
|
|
|
- u: is now e:
|
2019-01-28 15:38:15 +01:00
|
|
|
|
2019-03-02 16:04:46 +01:00
|
|
|
- f:to-u -> f:to-e
|
|
|
|
- u:-INF -> e:-INF
|
|
|
|
- u:-inf? -> e:-inf?
|
|
|
|
- u:INF -> e:INF
|
|
|
|
- u:MAX -> e:MAX
|
|
|
|
- u:MIN -> e:MIN
|
|
|
|
- u:NAN -> e:NAN
|
|
|
|
- u:clip -> e:clip
|
|
|
|
- u:inf? -> e:inf?
|
|
|
|
- u:max? -> e:max?
|
|
|
|
- u:min? -> e:min?
|
|
|
|
- u:n? -> e:n?
|
|
|
|
- u:nan? -> e:nan?
|
|
|
|
- u:to-f -> e:to-f
|
|
|
|
- u:zero? -> e:zero?
|
2019-03-02 16:39:43 +01:00
|
|
|
|
|
|
|
- add e:put
|
2019-03-02 16:04:46 +01:00
|
|
|
|
2019-02-01 21:26:17 +01:00
|
|
|
### Unix
|
|
|
|
|
|
|
|
- add unix:count-files-in-cwd
|
|
|
|
- add unix:for-each-file
|
2019-03-01 15:11:05 +01:00
|
|
|
- add unix:get-cwd
|
|
|
|
- add unix:time
|
2019-02-01 21:26:17 +01:00
|
|
|
|
2018-11-22 01:05:28 +01:00
|
|
|
## Nga
|
|
|
|
|
2018-07-31 17:38:06 +02:00
|
|
|
## Interfaces
|
2017-11-19 02:12:29 +01:00
|
|
|
|
2019-01-11 04:26:40 +01:00
|
|
|
- use strlcpy, strlcat instead of strcpy and strcat
|
2019-01-18 18:33:31 +01:00
|
|
|
- include copies of the above for users of glibc
|
2019-01-11 18:57:51 +01:00
|
|
|
- add retro-compiler
|
2019-01-19 18:28:17 +01:00
|
|
|
- add random number generator
|
2019-01-11 04:26:40 +01:00
|
|
|
|
2019-01-11 18:57:51 +01:00
|
|
|
### retro
|
2018-09-06 17:50:08 +02:00
|
|
|
|
2019-01-19 18:28:17 +01:00
|
|
|
- add random number generator
|
2019-01-22 15:35:31 +01:00
|
|
|
- add `-u filename` startup parameter to allow selection of
|
|
|
|
image file
|
2019-02-07 05:12:24 +01:00
|
|
|
- add `image:save`
|
2019-03-06 18:22:56 +01:00
|
|
|
- add `sys:name`
|
2019-03-20 21:33:26 +01:00
|
|
|
- will now display an error and exit on stack over/underflow
|
2019-01-19 18:28:17 +01:00
|
|
|
|
2019-01-11 18:57:51 +01:00
|
|
|
### retro-compiler
|
2019-01-03 16:34:14 +01:00
|
|
|
|
2019-01-18 18:33:31 +01:00
|
|
|
- new interface for creating turnkey executables on bsd, linux
|
2019-01-03 16:34:14 +01:00
|
|
|
|
2019-01-11 18:57:51 +01:00
|
|
|
### retro-ri
|
|
|
|
|
|
|
|
- support switching between multiple copies of the image
|
2019-01-19 18:28:17 +01:00
|
|
|
- add random number generator
|
2019-02-06 14:20:46 +01:00
|
|
|
- add image:save
|
2019-01-03 16:34:14 +01:00
|
|
|
|
2019-02-19 18:19:55 +01:00
|
|
|
### native
|
|
|
|
|
|
|
|
- add port i/o words
|
|
|
|
- add cmos rtc driver
|
|
|
|
- add serial port driver
|
|
|
|
- now builds properly on openbsd
|
2019-02-21 12:42:52 +01:00
|
|
|
- add ata driver
|
|
|
|
- add block editor
|
|
|
|
- rewrite vga text driver in retro
|
2019-02-19 18:19:55 +01:00
|
|
|
|
2018-11-04 22:57:09 +01:00
|
|
|
## Tools
|
2017-11-19 02:12:29 +01:00
|
|
|
|
2019-01-11 04:26:40 +01:00
|
|
|
- use strlcpy, strlcat instead of strcpy and strcat
|
2019-01-16 15:50:25 +01:00
|
|
|
- retro-extend: cleaner output
|
|
|
|
- retro-extend: remove unused code
|
|
|
|
- retro-extend: allow multiple files
|
|
|
|
- retro-extend: reduce memory usage
|
|
|
|
- retro-extend: fix potential buffer overrun
|
2019-01-31 22:37:28 +01:00
|
|
|
- muri: remove the unused `c` directive
|
2019-03-06 18:33:09 +01:00
|
|
|
- add retro-describe
|
2019-01-11 04:26:40 +01:00
|
|
|
|
2018-11-04 22:57:09 +01:00
|
|
|
## Other
|
|
|
|
|
|
|
|
## Documentation
|
2017-11-19 02:12:29 +01:00
|
|
|
|
2019-01-31 22:37:28 +01:00
|
|
|
- add a collection of papers
|
2019-01-23 21:29:23 +01:00
|
|
|
- refactor glossary tool
|
|
|
|
- add HTML version of the Glossary
|
2019-01-24 18:49:29 +01:00
|
|
|
- add more concise text copies of the Glossary
|
2019-01-22 15:29:51 +01:00
|
|
|
- add man pages
|
2019-02-07 05:12:24 +01:00
|
|
|
- add BUILDING.md
|
2019-03-02 16:39:43 +01:00
|
|
|
- add missing descriptions
|
2019-03-18 21:55:32 +01:00
|
|
|
- add RETRO-Book.md
|
2019-01-22 15:29:51 +01:00
|
|
|
|
2018-11-04 22:57:09 +01:00
|
|
|
## Examples
|
2017-11-19 02:12:29 +01:00
|
|
|
|
2019-02-06 13:45:02 +01:00
|
|
|
- add Abort.forth
|
2019-02-18 01:53:42 +01:00
|
|
|
- add ANS-PICK-ROLL.forth
|
2019-02-07 05:56:24 +01:00
|
|
|
- add atua-gophermap.forth
|
2019-02-19 03:48:24 +01:00
|
|
|
- add Block-Editor.forth
|
2019-01-19 19:31:34 +01:00
|
|
|
- add Buffer.forth
|
2019-01-19 15:22:21 +01:00
|
|
|
- add CaptureOutput.forth
|
2019-03-14 19:01:28 +01:00
|
|
|
- add CloseParen.forth
|
2019-01-14 22:23:35 +01:00
|
|
|
- add DisplayNames.forth
|
2019-02-17 19:12:07 +01:00
|
|
|
- add EDA.forth
|
2019-02-06 13:45:02 +01:00
|
|
|
- add EvaluateString.forth
|
2019-02-13 20:30:14 +01:00
|
|
|
- add FloatVar.forth
|
2019-02-06 13:45:02 +01:00
|
|
|
- add Forget.forth
|
2019-01-24 18:49:29 +01:00
|
|
|
- add HTML.forth
|
2019-01-15 17:10:41 +01:00
|
|
|
- add KeyValueStore.forth
|
2019-01-23 02:50:05 +01:00
|
|
|
- add Marker.forth
|
2019-02-18 13:48:49 +01:00
|
|
|
- add NamingQuotes.forth
|
|
|
|
- add NetFetch.forth
|
2019-01-19 15:22:21 +01:00
|
|
|
- add paste.forth
|
2019-02-18 13:48:49 +01:00
|
|
|
- add PasteToSprunge.forth
|
2019-01-30 02:42:25 +01:00
|
|
|
- add retro-extend.forth
|
2019-02-03 05:06:16 +01:00
|
|
|
- add retro-embedimage.forth
|
2019-02-18 13:48:49 +01:00
|
|
|
- add SaveAndRestoreStack.forth
|
2019-01-18 22:33:49 +01:00
|
|
|
- add share.forth and shared.forth
|
2019-03-14 21:01:00 +01:00
|
|
|
- add strip-html.forth
|
2019-03-03 04:16:26 +01:00
|
|
|
- add TokiPona-Translate.forth
|
2019-01-25 22:52:15 +01:00
|
|
|
- add uuencode.forth
|
2019-01-26 05:29:24 +01:00
|
|
|
- add uudecode.forth
|
2019-02-13 20:30:14 +01:00
|
|
|
- fix test block in defstruct.forth
|
2019-01-18 18:58:40 +01:00
|
|
|
- switch to dvorak key bindings in Roo.forth
|
2019-01-19 05:49:47 +01:00
|
|
|
- remove Hooks.forth (now in core language)
|
2019-02-05 21:22:17 +01:00
|
|
|
- improved edit.forth from Kiyoshi
|
2019-02-13 20:18:20 +01:00
|
|
|
- Casket-HTTP now supports server side scripting
|
2019-01-14 22:23:35 +01:00
|
|
|
|
2018-11-04 22:57:09 +01:00
|
|
|
## Final Notes
|