Start 0.86 with a contrib fix
parent
3b88353ff4
commit
801a4feafd
2
Makefile
2
Makefile
|
@ -3,7 +3,7 @@ CC = gcc
|
|||
BINARY = f
|
||||
IMAGE = factor.image
|
||||
BUNDLE = Factor.app
|
||||
VERSION = 0.85
|
||||
VERSION = 0.86
|
||||
DISK_IMAGE_DIR = Factor-$(VERSION)
|
||||
DISK_IMAGE = Factor-$(VERSION).dmg
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ USING: kernel modules words ;
|
|||
REQUIRES: contrib/alien contrib/automata
|
||||
contrib/benchmarks contrib/boids contrib/cairo contrib/calendar
|
||||
contrib/concurrency contrib/coroutines contrib/crypto
|
||||
contrib/dlists contrib/emacs contrib/embedded contrib/furnace
|
||||
contrib/dlists contrib/emacs contrib/furnace
|
||||
contrib/furnace-pastebin contrib/gap-buffer contrib/hexdump
|
||||
contrib/http contrib/httpd contrib/http-client contrib/jedit
|
||||
contrib/jni contrib/json contrib/lambda contrib/lazy-lists
|
||||
|
|
|
@ -10,6 +10,9 @@ USING: furnace help html kernel sequences words strings io ;
|
|||
<a "search" =href a> "Search" write </a>
|
||||
] html-document ;
|
||||
|
||||
: string>topic ( string -- topic )
|
||||
" " split dup length 1 = [ first ] when ;
|
||||
|
||||
\ show-help {
|
||||
{ "topic" "handbook" v-default string>topic }
|
||||
} define-action
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
IN: kernel
|
||||
: version "0.85" ;
|
||||
: version "0.86" ;
|
||||
|
|
Loading…
Reference in New Issue