resolve conflicts

akkartik
Oct 26, 2025, 6:29 AM
K55LM3DPVFNOUQEWDFZ7TYESMTLPIDPEDZ5QSWOXHFQIXSSQHJEQC

Dependencies

  • [2] FYJXSWXV resolve conflicts
  • [3] B5F4DYAD update source editor
  • [4] D2GCFTTT clean up repl functionality
  • [5] MBAJPTDJ resolve conflicts
  • [6] 6VJTQKW7 start supporting LÖVE v12
  • [7] TVCPXAAU rename
  • [8] KMSL74GA support selections in the source editor
  • [9] 6LJZN727 handle chords
  • [10] APX2PY6G stop tracking wallclock time
  • [11] ZLJYLPOT Merge lines.love
  • [12] 3PSFWAIL Merge lines.love
  • [13] KKQKPGCI resolve conflicts
  • [14] VXORMHME delete experimental REPL
  • [15] 2CTN2IEF Merge lines.love
  • [16] RUB7L6GY resolve conflicts
  • [17] BJ5X5O4A let's prevent the text cursor from ever getting on a drawing
  • [18] 2L5MEZV3 experiment: new edit namespace
  • [19] ORKN6EOB Merge lines.love
  • [20] OGUV4HSA remove some memory leaks from rendered fragments
  • [21] 66X36NZN a little more prose describing manual_tests
  • [22] BLWAYPKV extract a module
  • [23] 5XA7TKWY pull font into editor
  • [24] LXTTOB33 extract a couple of files
  • [25] 4YDBYBA4 clean up memory leak experiments
  • [26] XX7G2FFJ intermingle freehand line drawings with text
  • [27] AVTNUQYR basic test-enabled framework
  • [28] LWPFEZBI Merge lines.love
  • [29] R5QXEHUI somebody stop me
  • [30] N2NUGNN4 include a brief reference enabling many useful apps
  • [31] 73OCE2MC after much struggle, a brute-force undo
  • [32] 3QNOKBFM beginnings of a test harness
  • [33] CE4LZV4T drop last couple of manual tests
  • [34] JOPVPUSA editing source code from within the app
  • [35] T42Y5MLO explicitly specify app name
  • [36] OI4FPFIN support drawings in the source editor
  • [37] TLOAPLBJ add a license
  • [38] VP5KC4XZ Merge lines.love
  • [39] 4SR3Z4Y3 document the version of LÖVE I've been using
  • [40] BULPIBEG beginnings of a module for the text editor
  • [41] VHQCNMAR several more modules
  • [42] ONHKBLLC Merge lines.love
  • [43] T4FRZSYL delete an ancient, unused file
  • [44] K2X6G75Z start writing some tests for drawings
  • [45] RSZD5A7G forgot to add json.lua
  • [46] VZPH3XJK update source editor
  • [47] ED4Z6ORC cleaner API for file-system access
  • [48] F4RUTOND split up editor tests between LÖVE 11 and LÖVE 12
  • [49] 5SM6DRHK port inscript's bugfix to source editor
  • [50] OTIBCAUJ love2d scaffold
  • [51] FS2ITYYH record a known issue
  • [52] QMRQL2FO resolve conflicts
  • [53] 2EELKVO2 resolve conflicts
  • [54] KKMFQDR4 editing source code from within the app
  • [55] VHUNJHXB Merge lines.love
  • [56] SGMA5JLE save the list of tests in repo

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]()
    Hand_icon = love.mouse.getSystemCursor('hand')
    Arrow_icon = love.mouse.getSystemCursor('arrow')
    button_handlers = {},
    local x, y = love.mouse.getPosition()
    if mouse_hover_on_any_button(State, x,y) then
    love.mouse.setCursor(Hand_icon)
    else
    love.mouse.setCursor(Arrow_icon)
    end
    Drawing.update(State, dt)
    }
    return result
  • edit in source_edit.lua at line 24
    [4.16955]
    [4.16955]
    Hand_icon = love.mouse.getSystemCursor('hand')
    Arrow_icon = love.mouse.getSystemCursor('arrow')
  • edit in source_edit.lua at line 108
    [4.155363]
    [4.155363]
    button_handlers = {},
  • edit in source_edit.lua at line 218
    [4.156691]
    [4.20062]
    local x, y = love.mouse.getPosition()
    if mouse_hover_on_any_button(State, x,y) then
    love.mouse.setCursor(Hand_icon)
    else
    love.mouse.setCursor(Arrow_icon)
    end