factor/TODO.FACTOR.txt

107 lines
3.5 KiB
Plaintext
Raw Normal View History

- in the ui, run a bunch of files, unfocus; when its done caret appears
2006-05-28 17:31:54 -04:00
- fix this:
[ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113 ] .
[ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113
]
- unix i/o: problems with passing f to syscalls
- if a primitive throws an error, :c doesn't show the call frame there
2006-06-07 23:04:37 -04:00
- "benchmark/help": without a yield UI runs out of memory
2006-06-02 15:12:57 -04:00
- x11 title bars are funny
2006-05-25 00:12:05 -04:00
+ httpd:
- outliners don't work
- browser responder doesn't work
2006-05-27 17:56:11 -04:00
- code walker & exceptions -- test and debug problems
2006-05-27 18:11:39 -04:00
- another i/o bug: on factorcode eventually all i/o times out
2006-05-30 18:57:34 -04:00
- bug in pound?
2006-06-04 15:35:00 -04:00
- factorcode httpd started using 99% CPU, but still received connections;
closing read-fds solved it
2006-05-27 18:11:39 -04:00
- if the listener is running a command when the image is saved, it
restores to an unresponsive gadget
- fix top level window positioning
- services do not launch if factor not running
- rollover is not updated on window focus changes
2006-05-27 18:11:39 -04:00
- amd64 crash
2006-06-03 22:36:42 -04:00
- x86 bootstrap intermittent crash
2006-05-27 18:11:39 -04:00
- get factor running on mac intel
- constant branch folding
2006-06-02 20:14:42 -04:00
- cocoa: starting the UI with +foo switches opens them as files
2006-06-04 03:46:06 -04:00
- tests in a loop runs out of memory eventually
+ refactor style stack code so that nested styles are handled at a lower-level
- in HTML, we can nest div tags, etc
- fix prettyprinter's highlighting of non-leaves looks bad
- maybe even go from markup to HTML?
- fix remaining HTML stream issues
- need to present $list in a useful way
- better line spacing in ui and html - related issue
2006-06-08 18:06:38 -04:00
- fix word wrap with tables in panes
+ fix compiled gc check
- there was a performance hit, investigate
- float boxing and overflow checks need a gc check too
+ io:
2006-05-09 21:37:07 -04:00
- gdb triggers 'mutliple i/o ops on port' error
2006-05-27 18:11:39 -04:00
- better i/o scheduler - eg, yield in a loop starves i/o
- "localhost" 50 <client> won't fail
2006-05-19 15:53:30 -04:00
+ help:
- document that can <void*> only be called with an alien
- help search
- automatically update help graph when adding/removing articles/words
+ ui:
2006-05-27 18:11:39 -04:00
- x11 input methods
- roundoff is still not quite right with tracks
- new browser:
2006-05-20 16:42:33 -04:00
- browse generic words and classes
2006-05-20 17:50:59 -04:00
- need actions for reloading the source file and opening word in jEdit
2006-06-02 15:12:57 -04:00
- highlight showing panes in originating list
- toggle/radio buttons/tabs or something
2006-05-20 17:50:59 -04:00
- inspector: less clutter when browsing words
- make-frame should compile
2006-05-05 20:06:57 -04:00
- speed up ideas:
- only do clipping for certain gadgets
- use glRect
- use complex numbers instead of arrays for co-ordinates
- decrease minimum growable size from 50 to 4 or something, to reduce
memory consumption of a gadget with one child
- use vertex arrays
- use display lists
- reimplement tab completion
2006-03-22 02:43:59 -05:00
- cocoa:
- horizontal scrolling
- polish OS X menu bar code
2006-05-25 16:06:25 -04:00
- dock menu
2006-03-22 02:43:59 -05:00
- variable width word wrap
+ compiler/ffi:
2006-05-27 18:11:39 -04:00
- type inference at branch merge points
2006-05-14 20:08:16 -04:00
- free up r11, r12 as a vreg on ppc
- float= on powerpc doesn't consider nans equal
- intrinsic fixnum>float float>fixnum
2006-05-05 20:06:57 -04:00
- win64 port
- complex float type
- complex float intrinsics
- remove literal table
- C functions returning structs by value
2006-01-23 21:03:22 -05:00
- FIELD: char key_vector[32];
- FIELD: union { char b[20]; short s[10]; long l[5]; } data;
- MEMBER: long pad[24];
- C structs: use new-style string mode parsing
2006-01-23 21:03:22 -05:00
- [ [ dup call ] dup call ] infer hangs
- the invalid recursion form case needs to be fixed, for inlines too
- code gc
+ misc:
2006-01-23 21:03:22 -05:00
- slice: if sequence or seq start is changed, abstraction violation
- make 3.4 bits>double an error
2006-05-27 17:56:11 -04:00
- break: perhaps use current stdio to run break listener