fix some arg names

[?]
Dec 24, 2022, 4:43 AM
IM6GSGVZTVICWIBWRCUXLIMXT3XE3H5LKJ3AITUA4AB3FTW5AJUAC

Dependencies

  • [2] 2CK5QI7W make love event names consistent
  • [3] TXDMRA5J bugfix: alt-tab shouldn't emit keypress events
  • [4] EMHRPJ3R no, that's not right
  • [5] 6DE7RBZ6 move mouse_released events to Drawing
  • [6] BYG5CEMV support for naming points
  • [7] VHQCNMAR several more modules
  • [8] KKMFQDR4 editing source code from within the app
  • [9] LNUHQOGH start passing in Editor_state explicitly
  • [10] APX2PY6G stop tracking wallclock time
  • [11] AVTNUQYR basic test-enabled framework
  • [12] HRWN5V6J Devine's suggestion to try to live with just freehand
  • [13] EF6MFB46 assume we always have a filename
  • [14] FYS7TCDW bugfix
  • [15] 2L5MEZV3 experiment: new edit namespace
  • [16] CIQN2MDE bugfix: typing a capital letter deletes selection
  • [17] PX7DDEMO autosave slightly less aggressively
  • [18] IFGAJAF7 add a level of indirection to vertices of shapes
  • [19] JCSLDGAH beginnings of support for multiple shapes
  • [20] S7ZZA3YE ugh, handle absolute as well as relative paths
  • [*] OTIBCAUJ love2d scaffold

Change contents

  • replacement in main.lua at line 212
    [3.3121][3.190187:190224]()
    function App.keyreleased(chord, key)
    [3.3121]
    [3.190224]
    function App.keyreleased(key, scancode)
  • replacement in main.lua at line 219
    [3.190333][2.4824:4884]()
    if run.key_release then run.key_release(chord, key) end
    [3.190333]
    [3.190395]
    if run.key_release then run.key_release(key, scancode) end
  • replacement in main.lua at line 221
    [3.190433][2.4885:4951]()
    if source.key_release then source.key_release(chord, key) end
    [3.190433]
    [3.190501]
    if source.key_release then source.key_release(key, scancode) end