get rid of pane transition animations

akkartik
Nov 20, 2023, 3:29 PM
4QFVRJ5U3DPUZEKNSMUHQXO7F4SKW2FPJB7OKWJFE22YAOILXWXAC

Dependencies

  • [2] WFPV6CHG faster transition animations on larger screens
  • [3] SGMA5JLE save the list of tests in repo
  • [4] 4SR3Z4Y3 document the version of LÖVE I've been using
  • [5] K2X6G75Z start writing some tests for drawings
  • [6] 3QNOKBFM beginnings of a test harness
  • [7] VXRYVZ74 Merge text.love
  • [8] R5QXEHUI somebody stop me
  • [9] LRDM35CE app running again
  • [10] 2DVVKKVA flesh out Readme
  • [11] VEAVIL4X resize handler
  • [12] 36Z442IV back to commit 8123959e52f without code editing
  • [13] N2NUGNN4 include a brief reference enabling many useful apps
  • [14] LXTTOB33 extract a couple of files
  • [15] ZLJYLPOT Merge lines.love
  • [16] RU4HIK43 Merge lines.love
  • [17] MZ3DMYPD start sketching out a scrollbar
  • [18] 2L5MEZV3 experiment: new edit namespace
  • [19] BULPIBEG beginnings of a module for the text editor
  • [20] SW5GN5LP suggest a default layout for freewheeling apps
  • [21] 2CFLXLIE Merge text.love
  • [22] VHQCNMAR several more modules
  • [23] JOPVPUSA editing source code from within the app
  • [24] Q6RXCILQ Merge text.love
  • [25] VLTU33KW resolve conflicts
  • [26] OTIBCAUJ love2d scaffold
  • [27] 34BZ5ZKN Merge lines.love
  • [28] 5OVKHVY6 nice way to make on.* handlers more discoverable
  • [29] I52S4E5F running `print` now appends to output editor
  • [30] VP5KC4XZ Merge lines.love
  • [31] M5JXTW56 Merge text.love
  • [32] VAVXKWZV aggregate global state inside a 'pane' object
  • [33] 5RUFNRJO start of the visual skeleton
  • [34] FS2ITYYH record a known issue
  • [35] 6VJTQKW7 start supporting LÖVE v12
  • [36] 4YDBYBA4 clean up memory leak experiments
  • [37] VXORMHME delete experimental REPL
  • [38] D2TYFYG2 Merge text.love
  • [39] WR2WMEPE implement 'Run' button
  • [40] ORKN6EOB Merge lines.love
  • [41] TVCPXAAU rename
  • [42] XX7G2FFJ intermingle freehand line drawings with text
  • [43] 3PSFWAIL Merge lines.love
  • [44] QD4LOFQR Merge text.love
  • [45] LWPFEZBI Merge lines.love
  • [46] VUF2SX7B implement carousel buttons for inserting/switching current pane
  • [47] T4FRZSYL delete an ancient, unused file
  • [48] Z5M23NTK implement second, 'output' editor
  • [49] D2GCFTTT clean up repl functionality
  • [50] AVTNUQYR basic test-enabled framework
  • [51] 66X36NZN a little more prose describing manual_tests
  • [52] KKMFQDR4 editing source code from within the app
  • [53] CAG7PP5Y Merge text.love
  • [54] IP4LD33D mouse events for scrollbar
  • [55] UEG224LH debug animations
  • [56] KKQKPGCI resolve conflicts
  • [57] ED4Z6ORC cleaner API for file-system access
  • [58] 73OCE2MC after much struggle, a brute-force undo
  • [59] OL7ZCZWD Merge text.love
  • [60] EZHO4TSW new file-system format for freewheeling apps
  • [61] KMSL74GA support selections in the source editor
  • [62] YF2ATH2Q Merge lines.love
  • [63] TBTRYEBP Merge lines.love
  • [64] D43U7GQ4 alter on-disk representation (manifest files)
  • [65] VHUNJHXB Merge lines.love
  • [66] CZQ3NJ4N Merge text0
  • [67] 57HKHZ7Z include the tool that's mentioned in representation.md
  • [68] PJ5PQAQE record support for multiple versions
  • [69] ZM7NOBRM new fork: carousel shell
  • [70] 6RYGW5H3 bugfix: output border color
  • [71] BJ5X5O4A let's prevent the text cursor from ever getting on a drawing
  • [72] TLOAPLBJ add a license
  • [73] OGUV4HSA remove some memory leaks from rendered fragments
  • [74] BLWAYPKV extract a module
  • [75] 2Q437U4F starting to experiment with animated pane transitions
  • [76] FM5LDKGT Merge text.love
  • [77] 6LJZN727 handle chords
  • [78] 4GX6NAY4 some very basic animations for switching panes
  • [79] RSZD5A7G forgot to add json.lua
  • [80] PRE6XPRN responsively increase/decrease font height
  • [81] CE4LZV4T drop last couple of manual tests

Change contents

  • file deletion: 0060-draw_previous_canvas (----------)
    [3.2][3.0:49](),[3.49][3.50:50]()
    draw_previous_canvas = function(canvas, x)
    if canvas == nil then return end
    love.graphics.setBlendMode('replace', 'premultiplied')
    love.graphics.setColor(1,1,1,1)
    love.graphics.draw(canvas, x,0)
    love.graphics.setBlendMode('alpha')
    end
  • file deletion: 0059-slide_canvas (----------)
    [3.2][3.390:431](),[3.431][3.1:1]()
    slide_canvas = function(pane_index, dir)
    return function()
    end_frame()
    if dir == 'right' then
    end_frame()
    end
    elseif dir == 'left' then
    end_frame()
    end
    end
    end
    end
    for x=0,-App.screen.width,-speed do
    draw_previous_canvas(Panes[pane_index].canvas, x)
    for x=0,App.screen.width,speed do
    draw_previous_canvas(Panes[pane_index].canvas, x)
    local speed = App.screen.width/0.5/60 -- px/frame
  • edit in 0051-run_button at line 14
    [3.591][3.509:550]()
    love.graphics.setBlendMode('replace')
  • edit in 0051-run_button at line 15
    [3.634][3.551:661]()
    love.graphics.setColor(1,1,1)
    love.graphics.rectangle('fill', 0,0, App.screen.width, App.screen.height)
  • replacement in 0042-draw_canvas at line 3
    [3.234][3.662:757]()
    love.graphics.setBlendMode('replace')
    -- love.graphics.setBlendMode('alpha', 'premultiplied')
    [3.234]
    [3.318]
    love.graphics.setBlendMode('alpha', 'premultiplied')
  • edit in 0021-draw_menu at line 28
    [3.1336][3.2009:2066]()
    animate(slide_canvas(Current_pane_index+1, 'right'))
  • edit in 0021-draw_menu at line 42
    [3.1784][3.2067:2123]()
    animate(slide_canvas(Current_pane_index-1, 'left'))
  • edit in 0021-draw_menu at line 53
    [3.2220][3.2124:2180]()
    animate(slide_canvas(Current_pane_index-1, 'left'))