factor/TODO.FACTOR.txt

139 lines
4.4 KiB
Plaintext
Raw Normal View History

+ 0.85:
2006-08-25 20:52:13 -04:00
2006-09-11 20:45:42 -04:00
- UI dataflow visualizer:
- spacing is weird
2006-09-12 16:20:21 -04:00
- clickable child nodes
2006-09-11 20:45:42 -04:00
- workspace tool
2006-09-12 16:20:21 -04:00
- #declare needs an output
- #label, #if mess up height
- [ >r + dup r> ] foo broken
- why does + look funny?
2006-09-03 21:15:25 -04:00
- pane output in UI should use less memory
2006-09-03 21:10:43 -04:00
- signal 4 on datastack underflow on mac intel??
- faster I/O
- buffer-ptr should be an alien
- faster Unix stream-read#
- 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
]
- prettier printing of hashtable literals, alists, cond, ...
- more compact relocation info
- problem if major gc happens during relocation
- in fact relocation should not cons at all
- we need to optimize [ dup array? [ array? ] [ array? ] if ]
- better way of dealing with compiler errors
- track individual method usages
- variable width word wrap
- add-gadget, model-changed, set-model should compile
- graphical module manager tool
- editor:
- only redraw visible lines
- more efficient multi-line inserts
- write "foo| " and put caret at | then select word element: selects
space
- we have trouble drawing rectangles
2006-08-31 21:58:15 -04:00
- browser: show currently selected vocab & words
2006-09-09 00:12:46 -04:00
2006-09-06 21:27:59 -04:00
- doc sweep
2006-09-09 00:12:46 -04:00
- tool help
- perhaps commands window should sort by gesture
- merge keyboard help with help in some way
- keyboard help: hide commands whose gestures are shadowed
2006-09-11 00:12:42 -04:00
- division by zero may not raise an error -- document this
+ ui:
2006-09-13 00:48:42 -04:00
- better help result ranking
2006-09-11 00:12:42 -04:00
- page scrolling should be timer-based too
2006-09-08 02:32:14 -04:00
- invoking interactor commands when interactor is busy -- still fucked
because of grafting and ungrafting
- set-model set-model* and control-changed: its a hack, clean it up
- x11: scroll up/down wiggles caret
2006-08-31 21:58:15 -04:00
- roundoff is still not quite right with tracks
2006-08-28 18:14:54 -04:00
- fix top level window positioning
- x11.app has a problem with A+ keys
2006-08-27 19:02:16 -04:00
- status bar showing number of words needing a recompile
2006-08-25 20:52:13 -04:00
- services do not launch if factor not running
2006-08-12 16:56:45 -04:00
- fix ui listener delay
- editor:
- editor should support stream output protocol
- double/triple click
- autoscroll
- undo and redo
- transpose char/word/line
- page up/down
- search and replace
- slider needs to be modelized
2006-08-28 04:03:09 -04:00
- fonts/ should go inside the .app -- we need multi-tier resource-path
- should be possible to drop an image file on the .app to run it
- support x11's large selections, if needed
2006-07-24 02:23:15 -04:00
- own-selection violates ICCCM
2006-07-25 16:30:40 -04:00
- cocoa: windows are not updated while resizing
2006-07-05 17:12:30 -04:00
- grid slows down with 2000 lines
- ui uses too much cpu time idling
2006-07-05 17:12:30 -04:00
- see if its possible to only repaint dirty regions
2006-06-14 22:58:17 -04:00
- x11 title bars are funny
- rollover is not updated on window focus changes
2006-05-27 18:11:39 -04:00
- x11 input methods
2006-03-22 02:43:59 -05:00
- cocoa:
2006-06-12 03:21:08 -04:00
- horizontal wheel scrolling
- polish OS X menu bar code
2006-08-09 16:14:54 -04:00
- structure editor
2006-07-23 18:51:25 -04:00
+ module system:
2006-09-11 00:12:42 -04:00
- F7: friendlier error if file deleted
2006-09-09 00:12:46 -04:00
- convention for main entry point of a module
- track a list of assets loaded from each module's file
2006-08-07 15:41:31 -04:00
- generic 'define ( asset def -- )'
2006-07-23 18:51:25 -04:00
- C types should be words
- TYPEDEF: float { ... } { ... } ; ==> \ float T{ c-type ... } "c-type" swp
- TYPEDEF: float FTFloat ; ==> \ float \ FTFloat "c-type" swp
- make typedef aliasing explicit
- seeing a C struct word should show its def
- file out
+ compiler/ffi:
2006-09-09 00:12:46 -04:00
- stdcall callbacks
2006-08-25 20:52:13 -04:00
- see if alien calls can be made faster
- [ r> ] infer should throw an inference error
2006-08-18 01:35:04 -04:00
- compiler tests are not as reliable now because of try-compile usage
- we can just do [ t ] [ \ foo compiled? ] unit-test
2006-08-18 01:17:23 -04:00
- [ [ dup call ] dup call ] infer hangs
- callstack overflow when compiling mutually recursive inline words
2006-08-15 21:23:05 -04:00
- test what is done in the case of an invalid declaration on an inline
recursive
2006-08-09 16:14:54 -04:00
- ppc64 backend
2006-08-18 00:54:39 -04:00
- arm backend
2006-07-06 18:08:14 -04:00
- mac intel: struct returns from objc methods
2006-06-14 22:58:17 -04:00
- fix compiled gc check
- there was a performance hit, investigate
- float boxing and overflow checks need a gc check too
- float= doesn't consider nans equal
- intrinsic fixnum>float float>fixnum
- C functions returning structs by value
- code gc
2006-07-25 02:08:06 -04:00
- infer which variables are read, written in a quotation
2006-08-09 16:14:54 -04:00
- compiled continuations
- compiled call traces
+ misc:
2006-09-11 00:12:42 -04:00
- swap nappend ==> nappend
2006-08-25 20:52:13 -04:00
- sometimes darcs get fails with the httpd
- gdb triggers 'mutliple i/o ops on port' error
- factorcode httpd crashed: bad file descriptor
- growable data heap
- incremental GC
- UDP
2006-07-06 18:08:14 -04:00
- slice: if sequence or seq start is changed, abstraction violation
2006-07-05 17:12:30 -04:00
- hashed generic method dispatch
2006-09-11 00:12:42 -04:00
+ httpd:
- help responder has no way to access { "foo" "bar" }
2006-07-28 00:50:09 -04:00
- httpd search tools
- remaining HTML issues need fixing