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

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