Factor 0.79 is now out after two months of development.
- Incompatible changes:
- Compiler:
- New basic block optimizer performs more aggressive dead load and store elimination.
- Stack shuffles are compiled more efficiently.
- Pushing literals on either side of a stack shuffle is now compiled more efficiently.
- Fixed a problem with relocation of compiled code on PowerPC.
- Fixed various FFI issues on Mac OS X.
- User interface:
- Graphics rendering is now done using OpenGL and text rendering is done via FreeType. SDL_gfx and SDL_ttf libraries are no longer required.
- Added expandable outliners. Used by the inspector,
.s
, usage.
, uses.
, vocabs.
, and various other words. - Added word completion to the listener pane; press
TAB
. - Added word navigation shortcuts to the listener pane; press
C+LEFT
and C+RIGHT
to move a word at a time, and C+BACKSPACE
and C+DELETE
to delete the previous and next word, respectively. - Added mouse-over help for presentations.
- Previously-entered output is now clickable in the listener.
- New, better-looking widget theme.
- Collections:
- Faster
map
, 2each
and 2map
. - Arrays are now better supported and should be used instead of vectors where resizing is not desired.
- Some new sequence words that do not bounds check:
nth-unsafe
and set-nth-unsafe
. These should only be used in special circumstances, such as inner loops (each
, map
and so on use them). - New
replace-slice ( new from to seq -- seq )
word replaces a slice of a sequence with another sequence. - Hashtables did not obey the rule that equal objects must have equal hashcodes, so using hashtables as hashtable keys did not work.
- New
mismatch ( seq seq -- i )
word returns first index where two sequences differ, or -1 if they have equal elements. - New
drop-prefix ( seq seq -- seq seq )
word returns a pair of sequences which have the same elements as the two input sequences, with the common prefix removed.
Everything else: Contributed code: - The HTTP server and client has been moved from
library/httpd/
to library/contrib/
. - Intel 8080 CPU and Space Invaders emulator in
contrib/space-invaders
(Chris Double) - AOL Instant Messenger chat client library in
contrib/aim
(Doug Coleman) - Cairo graphics library binding in
contrib/cairo
. (Sampo Vuori) - Advanced math library with quaternions, matrices, polynomials, statistics and various functions in
contrib/math/
. (Doug Coleman) - Dimensioned units in
contrib/units/
. (Doug Coleman) - X11 binding in
contrib/x11/
(Eduardo Cavazos)
2 comments:
Awesome. Good work!
But I don't appear to be able to compile the UI on Mac OS X (at least it doesn't on my Mac OS X...)
I've got SDL 1.2 and Freetype 2.1.9 both installed under /opt/local (via dports) and have tried both make macosx-sdl and SITE_CFLAGS="-I/opt/local/include -L/opt/local/lib" make macosx-sdl but neither seem to work. Am I missing something really obvious?
Post a Comment