Merge lines.love

[?]
Dec 13, 2022, 6:52 AM
UYCVUHI5F2NUSYGYOSIJPKZ3KJONGM6GLRQC4T7YYKN7S4OXSLXAC

Dependencies

  • [2] JJDUDMVX Merge lines.love
  • [3] FISC4HIN repeat bugfix on source editor
  • [4] LXTTOB33 extract a couple of files
  • [5] T4FRZSYL delete an ancient, unused file
  • [6] 3PSFWAIL Merge lines.love
  • [7] R5QXEHUI somebody stop me
  • [8] KMSL74GA support selections in the source editor
  • [9] XX7G2FFJ intermingle freehand line drawings with text
  • [10] D2GCFTTT clean up repl functionality
  • [11] OGUV4HSA remove some memory leaks from rendered fragments
  • [12] GUOQRUL7 Merge lines.love
  • [13] 73OCE2MC after much struggle, a brute-force undo
  • [14] 2L5MEZV3 experiment: new edit namespace
  • [15] VHUNJHXB Merge lines.love
  • [16] 4YDBYBA4 clean up memory leak experiments
  • [17] AVTNUQYR basic test-enabled framework
  • [18] D4B52CQ2 Merge lines.love
  • [19] BLWAYPKV extract a module
  • [20] TVCPXAAU rename
  • [21] K2X6G75Z start writing some tests for drawings
  • [22] MD3W5IRA new fork: rip out drawing support
  • [23] CE4LZV4T drop last couple of manual tests
  • [24] 2CTN2IEF Merge lines.love
  • [25] VO2ZVTWK Merge lines.love
  • [26] VP5KC4XZ Merge lines.love
  • [27] ETXNVRPT Merge lines.love
  • [28] NMRUNROT Merge lines.love
  • [29] TLOAPLBJ add a license
  • [30] BULPIBEG beginnings of a module for the text editor
  • [31] BJ5X5O4A let's prevent the text cursor from ever getting on a drawing
  • [32] RSZD5A7G forgot to add json.lua
  • [33] OI4FPFIN support drawings in the source editor
  • [34] VXORMHME delete experimental REPL
  • [35] JOPVPUSA editing source code from within the app
  • [36] VBU5YHLR Merge lines.love
  • [37] 66X36NZN a little more prose describing manual_tests
  • [38] EG5CRNWC Merge lines.love
  • [39] OTIBCAUJ love2d scaffold
  • [40] 6LJZN727 handle chords
  • [41] 32V6ZHQB Merge lines.love
  • [42] 2WGHUWE6 self-documenting 0 Test_right_margin
  • [43] VHQCNMAR several more modules
  • [44] FS2ITYYH record a known issue
  • [45] 3QNOKBFM beginnings of a test harness
  • [46] KKMFQDR4 editing source code from within the app
  • [47] TFM6F5OD Merge lines.love

Change contents

  • file deletion: source_edit.lua (----------)source_edit.lua (----------)
    [4.2][4.165725:165764](),[4.2][4.165725:165764](),[4.165764][4.152440:152440]()
    edit.update(State, 0)
    edit.draw(State)
    end
    edit.update(State, 0)
    edit.draw(State)
    end
    function edit.run_after_mouse_release(State, x,y, mouse_button)
    App.fake_mouse_release(x,y, mouse_button)
    edit.mouse_released(State, x,y, mouse_button)
    App.screen.contents = {}
    edit.update(State, 0)
    edit.draw(State)
    end
    function edit.run_after_mouse_press(State, x,y, mouse_button)
    App.fake_mouse_press(x,y, mouse_button)
    edit.mouse_pressed(State, x,y, mouse_button)
    App.screen.contents = {}
    edit.update(State, 0)
    edit.draw(State)
    end
    function edit.run_after_mouse_click(State, x,y, mouse_button)
    App.fake_mouse_press(x,y, mouse_button)
    edit.mouse_pressed(State, x,y, mouse_button)
    App.fake_mouse_release(x,y, mouse_button)
    edit.mouse_released(State, x,y, mouse_button)
    App.screen.contents = {}
    edit.update(State, 0)
    edit.draw(State)
    end
    -- not all keys are textinput
    function edit.run_after_keychord(State, chord)
    edit.keychord_pressed(State, chord)
    edit.key_released(State, chord)
    App.screen.contents = {}
    for _,line_cache in ipairs(State.line_cache) do line_cache.starty = nil end -- just in case we scroll
    Text.textinput(State, t)
    end
    schedule_save(State)
    end
    function edit.keychord_pressed(State, chord, key)
  • edit in source_edit.lua at line 291
    [4.157855][4.157855:157960]()
    for _,line_cache in ipairs(State.line_cache) do line_cache.starty = nil end -- just in case we scroll
  • edit in source_edit.lua at line 302
    [4.158096]
    [4.158096]
    for _,line_cache in ipairs(State.line_cache) do line_cache.starty = nil end -- just in case we scroll
  • edit in source_edit.lua at line 546
    [4.164861]
    [4.164861]
    edit.update(State, 0)
  • edit in source_edit.lua at line 555
    [4.165061]
    [4.165061]
    edit.update(State, 0)
  • edit in source_edit.lua at line 565
    [4.165355]
    [4.165355]
    edit.update(State, 0)
  • edit in source_edit.lua at line 573
    [4.165557]
    [4.165557]
    edit.update(State, 0)
  • edit in source_edit.lua at line 581
    [4.165764]
    [4.165764]
    edit.update(State, 0)