Merge lines.love

[?]
Sep 4, 2023, 10:22 PM
3SB6YT3AH4MMC2X7663KPTYKF7CFB4VT75ZSU3ZSI7RRUXBAMOYAC

Dependencies

  • [2] B6DS4GZC Merge lines.love
  • [3] EHADZNMB show any error after switching to source editor
  • [4] OB5XOXVC deemphasize the source editor
  • [5] R5QXEHUI somebody stop me
  • [6] CE4LZV4T drop last couple of manual tests
  • [7] VXORMHME delete experimental REPL
  • [8] 66X36NZN a little more prose describing manual_tests
  • [9] KKMFQDR4 editing source code from within the app
  • [10] 2CTN2IEF Merge lines.love
  • [11] LXTTOB33 extract a couple of files
  • [12] 4YDBYBA4 clean up memory leak experiments
  • [13] ORKN6EOB Merge lines.love
  • [14] LWPFEZBI Merge lines.love
  • [15] G54H3YG2 get rid of all bifold text
  • [16] D2GCFTTT clean up repl functionality
  • [17] MD3W5IRA new fork: rip out drawing support
  • [18] FS2ITYYH record a known issue
  • [19] 2344TV56 Merge lines.love
  • [20] TVCPXAAU rename
  • [21] TLOAPLBJ add a license
  • [22] HWTLXESC Merge lines.love
  • [23] KMSL74GA support selections in the source editor
  • [24] OGUV4HSA remove some memory leaks from rendered fragments
  • [25] 73OCE2MC after much struggle, a brute-force undo
  • [26] BYKXF3YY bugfix: draw menu after everything else
  • [27] N2NUGNN4 include a brief reference enabling many useful apps
  • [28] ONHKBLLC Merge lines.love
  • [29] XX7G2FFJ intermingle freehand line drawings with text
  • [30] JZR3QMTN Merge lines.love
  • [31] BLWAYPKV extract a module
  • [32] RU4HIK43 Merge lines.love
  • [33] RSZD5A7G forgot to add json.lua
  • [34] 3QNOKBFM beginnings of a test harness
  • [35] 4SR3Z4Y3 document the version of LÖVE I've been using
  • [36] ED4Z6ORC cleaner API for file-system access
  • [37] VBU5YHLR Merge lines.love
  • [38] 2L5MEZV3 experiment: new edit namespace
  • [39] AVTNUQYR basic test-enabled framework
  • [40] K74U4BAU Merge lines.love
  • [41] VHUNJHXB Merge lines.love
  • [42] BULPIBEG beginnings of a module for the text editor
  • [43] WB6SIB7H Merge lines.love
  • [44] SGMA5JLE save the list of tests in repo
  • [45] KWHC65JI Merge lines.love
  • [46] 6LJZN727 handle chords
  • [47] T4FRZSYL delete an ancient, unused file
  • [48] OTIBCAUJ love2d scaffold
  • [49] ZLJYLPOT Merge lines.love
  • [50] JOPVPUSA editing source code from within the app
  • [51] VHQCNMAR several more modules
  • [52] K2X6G75Z start writing some tests for drawings
  • [53] 3PSFWAIL Merge lines.love
  • [54] VP5KC4XZ Merge lines.love
  • [55] BJ5X5O4A let's prevent the text cursor from ever getting on a drawing

Change contents

  • file deletion: source.lua (----------)source.lua (----------)
    [4.2][4.177652:177686](),[4.2][4.177652:177686](),[4.177686][4.165766:165766]()
    if Error_message then
    local height = math.min(20*Editor_state.line_height, App.screen.height*0.2)
    App.color{r=0.8,g=0,b=0}
    love.graphics.rectangle('fill', 150, App.screen.height - height-10, App.screen.width, height+10)
    App.color{r=0,g=0,b=0}
    love.graphics.print(Error_message, 150+10, App.screen.height - height)
    end
    end
    function source.update(dt)
    Cursor_time = Cursor_time + dt
    if App.mouse_x() < Editor_state.right then
    edit.update(Editor_state, dt)
    elseif Show_log_browser_side then
    log_browser.update(Log_browser_state, dt)
    end
    end
    function source.quit()
    edit.quit(Editor_state)
    log_browser.quit(Log_browser_state)
  • edit in source.lua at line 255
    [4.630]
    [4.173192]
    if Error_message then
    local height = math.min(20*Editor_state.line_height, App.screen.height*0.2)
    App.color{r=0.8,g=0,b=0}
    love.graphics.rectangle('fill', 150, App.screen.height - height-10, App.screen.width, height+10)
    App.color{r=0,g=0,b=0}
    love.graphics.print(Error_message, 150+10, App.screen.height - height)
    end