diff --git a/TODO.FACTOR.txt b/TODO.FACTOR.txt index 7843e495e3..49a882fc99 100644 --- a/TODO.FACTOR.txt +++ b/TODO.FACTOR.txt @@ -1,20 +1,20 @@ -- flip-branches optimizer not working ++ 0.80: +- flip-branches optimizer not working - prettyprint: -{ V{ T{ literal T{ value f f G:110886 } f } T{ value - f f G:110887 -} } } - -- make-pane: if no input, just return pane-output + { V{ T{ literal T{ value f f G:110886 } f } T{ value + f f G:110887 + } } } - intrinsic char-slot set-char-slot for x86 +- fix remaining GL issues - closing ui does not stop timers - adding/removing timers automatically for animated gadgets - saving image with UI open - -- default library names are not useful -- fix remaining GL issues - fix up the min thumb size hack + +- make-pane: if no input, just return pane-output + - bug: click tutorial, full screen, the right-most arrow icon loses the vertical bar - signal handler should not lose stack pointers diff --git a/library/freetype/load.factor b/library/freetype/load.factor index 7537d040cf..36421e8030 100644 --- a/library/freetype/load.factor +++ b/library/freetype/load.factor @@ -1,9 +1,9 @@ USING: alien io kernel parser sequences ; "freetype" { - { [ os "macosx" = ] [ "libfreetype.dylib" ] } + { [ os "macosx" = ] [ "libfreetype.dylib.6" ] } { [ os "win32" = ] [ "freetype6.dll" ] } - { [ t ] [ "libfreetype.so" ] } + { [ t ] [ "libfreetype.so.6" ] } } cond "cdecl" add-library [ diff --git a/library/opengl/load.factor b/library/opengl/load.factor index 9b55437cfd..8a390cec70 100644 --- a/library/opengl/load.factor +++ b/library/opengl/load.factor @@ -7,8 +7,8 @@ USING: alien io kernel parser sequences ; "glu" "glu32.dll" "stdcall" add-library ] } { [ t ] [ - "gl" "libGL.so" "cdecl" add-library - "glu" "libGLU.so" "cdecl" add-library + "gl" "libGL.so.1" "cdecl" add-library + "glu" "libGLU.so.1" "cdecl" add-library ] } } cond