resolve conflicts
Dependencies
- [2]
KJLZCK2Rresolve conflicts - [3]
WOVVBEQQdocument recent handlers - [4]
KM6WXSKVpijul bugfix - [5]
36Z442IVback to commit 8123959e52f without code editing - [6]
VOU73AK6Merge lines.love - [7]
5GHT3LUXcopy correct warning message - [8]
VPRGENLAhide some details within the 'warning' state - [9]
N2NUGNN4include a brief reference enabling many useful apps - [10]
TXDMRA5Jbugfix: alt-tab shouldn't emit keypress events - [11]
CM76TS5Rmousefocus handler - [12]
Y5XAFGMWMerge text.love - [13]
JOPVPUSAediting source code from within the app - [14]
27GDAM5Jcorrect various names in this and other pre-freewheeling forks - [15]
JRLBUB6Lmore intuitive point delete from polygons - [16]
KKMFQDR4editing source code from within the app - [17]
6VJTQKW7start supporting LÖVE v12 - [18]
YF2ATH2QMerge lines.love - [19]
LXFHXL2NMerge text.love - [20]
GFXWHTE6mouse wheel support - [21]
E3PF2R6Qstray dead code - [22]
2Y7YH7UPinfrastructure for caching LÖVE text objects - [23]
2CTN2IEFMerge lines.love - [24]
ULKNZUZKresolve conflicts - [25]
D2TYFYG2Merge text.love - [26]
MX7YD2WCresolve conflicts - [27]
2IOWGOPGmousemoved handler - [28]
3AU3KLEUresolve conflicts - [*]
OTIBCAUJlove2d scaffold
Change contents
- edit in reference.md at line 75
* `App.mousemoved(x,y, dx,dy, is_touch)` -- called any time the mouse moves.(Based on [LÖVE](https://love2d.org/wiki/love.mousemoved).) - edit in reference.md at line 82
* `App.mousefocus(in_focus)` -- called when the mouse pointer moves on or offthe app window.(Based on [LÖVE](https://love2d.org/wiki/love.mousefocus).) - edit in main.lua at line 275[5.336]→[2.12:12](∅→∅),[5.1059]→[5.273:332](∅→∅),[5.1059]→[5.273:332](∅→∅),[5.1059]→[5.273:332](∅→∅),[5.956]→[5.219:272](∅→∅),[5.956]→[5.219:272](∅→∅),[5.889]→[5.21:21](∅→∅),[5.889]→[5.21:21](∅→∅),[5.889]→[5.21:21](∅→∅),[5.364]→[5.172:218](∅→∅),[5.364]→[5.172:218](∅→∅),[5.364]→[5.172:218](∅→∅),[5.364]→[5.172:218](∅→∅),[5.364]→[5.172:218](∅→∅),[5.171]→[5.293:364](∅→∅),[5.293]→[5.293:364](∅→∅),[5.293]→[5.293:364](∅→∅),[5.293]→[5.293:364](∅→∅),[5.234]→[5.94:171](∅→∅),[5.234]→[5.94:171](∅→∅),[5.234]→[5.94:171](∅→∅),[5.234]→[5.94:171](∅→∅),[5.93]→[5.196:234](∅→∅),[5.196]→[5.196:234](∅→∅),[5.196]→[5.196:234](∅→∅),[5.196]→[5.196:234](∅→∅),[5.143]→[5.22:93](∅→∅),[5.143]→[5.22:93](∅→∅),[5.143]→[5.22:93](∅→∅),[5.21]→[5.66:143](∅→∅),[5.66]→[5.66:143](∅→∅),[5.66]→[5.66:143](∅→∅),[5.66]→[5.66:143](∅→∅),[5.346]→[5.20:351](∅→∅),[5.102]→[5.20:351](∅→∅),[5.102]→[5.20:351](∅→∅)
if source.mouse_move then source.mouse_move(dx,dy) endif run.mouse_move then run.mouse_move(dx,dy) endfunction App.mousemoved(x,y, dx,dy, is_touch)elseassert(false, 'unknown app "'..Current_app..'"')endendif source.mouse_release then source.mouse_release(x,y, mouse_button) endelseif Current_app == 'source' thenif run.mouse_release then run.mouse_release(x,y, mouse_button) endif current_app_is_warning() then return endif Current_app == 'run' thenfunction App.mousefocus(in_focus)if current_app_is_warning() then return endif Current_app == 'run' thenif run.mouse_focus then run.mouse_focus(in_focus) endelseif Current_app == 'source' thenif source.mouse_focus then source.mouse_focus(in_focus) endelseassert(false, 'unknown app "'..Current_app..'"') - resolve order conflict in main.lua at line 275