resolve conflicts
Dependencies
- [2]
7QBK5QASresolve conflicts - [3]
LPSPW23Cresolve conflicts - [4]
X6DXCO6Kresolve conflicts - [5]
VZPH3XJKupdate source editor - [6]
SGMA5JLEsave the list of tests in repo - [7]
ED4Z6ORCcleaner API for file-system access - [8]
FS2ITYYHrecord a known issue - [9]
2EELKVO2resolve conflicts - [10]
BRBXUGRGresolve conflicts - [11]
F4RUTONDsplit up editor tests between LÖVE 11 and LÖVE 12 - [12]
RLCO2SNKwrap lines like lines2 forks - [13]
FYJXSWXVresolve conflicts - [14]
OTIBCAUJlove2d scaffold - [15]
N2NUGNN4include a brief reference enabling many useful apps - [16]
A3PSROTJreenable DPI scaling - [17]
D43U7GQ4alter on-disk representation (manifest files) - [18]
VHUNJHXBMerge lines.love - [19]
4YDBYBA4clean up memory leak experiments - [20]
3V2R6YS6merge bugfix - [21]
6LJZN727handle chords - [22]
VXRYVZ74Merge text.love - [23]
VLTU33KWresolve conflicts - [24]
RSZD5A7Gforgot to add json.lua - [25]
U3ILRRMObackport a critical patch for iOS - [26]
RUB7L6GYresolve conflicts - [27]
HKZATWO5resolve conflicts - [28]
XX7G2FFJintermingle freehand line drawings with text - [29]
73OCE2MCafter much struggle, a brute-force undo - [30]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [31]
K2X6G75Zstart writing some tests for drawings - [32]
KKMFQDR4editing source code from within the app - [33]
3PSFWAILMerge lines.love - [34]
2L5MEZV3experiment: new edit namespace - [35]
MBAJPTDJresolve conflicts - [36]
PJ5PQAQErecord support for multiple versions - [37]
PCHTG7YUresolve conflicts - [38]
T4FRZSYLdelete an ancient, unused file - [39]
TVCPXAAUrename - [40]
UEG224LHdebug animations - [41]
ML34DNNDdelete a stale file - [42]
FDUYCS33resolve conflicts - [43]
ORKN6EOBMerge lines.love - [44]
KMSL74GAsupport selections in the source editor - [45]
36Z442IVback to commit 8123959e52f without code editing - [46]
T42Y5MLOexplicitly specify app name - [47]
R6MNUXDJpijul bug - [48]
JOPVPUSAediting source code from within the app - [49]
AVTNUQYRbasic test-enabled framework - [50]
DHPAIM7Jresolve conflicts - [51]
CZ6X73VYmerge bugfix - [52]
4Y2QDDAZresolve conflicts - [53]
3QNOKBFMbeginnings of a test harness - [54]
6VJTQKW7start supporting LÖVE v12 - [55]
66X36NZNa little more prose describing manual_tests - [56]
5255G4IVresolve conflicts - [57]
MEWFN45Rresolve conflicts - [58]
OL7ZCZWDMerge text.love - [59]
5OVKHVY6nice way to make on.* handlers more discoverable - [60]
UZHSWA3DMerge text0 - [61]
CZQ3NJ4NMerge text0 - [62]
57HKHZ7Zinclude the tool that's mentioned in representation.md - [63]
LXTTOB33extract a couple of files - [64]
B4USRORMdisable DPI scaling - [65]
LWPFEZBIMerge lines.love - [66]
BLWAYPKVextract a module - [67]
JNJ4R56Xsupport running tests multiple times - [68]
VHQCNMARseveral more modules - [69]
VXORMHMEdelete experimental REPL - [70]
LRDM35CEapp running again - [71]
BULPIBEGbeginnings of a module for the text editor - [72]
CE4LZV4Tdrop last couple of manual tests - [73]
ZLJYLPOTMerge lines.love - [74]
HZENSQEQresolve conflicts - [75]
VP5KC4XZMerge lines.love - [76]
5T2AKBEXresolve conflicts - [77]
R5QXEHUIsomebody stop me - [78]
I5OOVAZOresolve conflicts - [79]
KKQKPGCIresolve conflicts - [80]
D2GCFTTTclean up repl functionality - [81]
SW5GN5LPsuggest a default layout for freewheeling apps - [82]
CD7JC76Cresolve conflicts - [83]
EZHO4TSWnew file-system format for freewheeling apps - [84]
2DVVKKVAflesh out Readme - [85]
4SR3Z4Y3document the version of LÖVE I've been using - [86]
OGUV4HSAremove some memory leaks from rendered fragments - [87]
GVOLLPQFbugfix: initial textinput event on iOS - [88]
TLOAPLBJadd a license - [89]
2CFLXLIEMerge text.love
Change contents
- file deletion: text_tests_love12.lua text_tests_love12.lua
App.screen.check(y, 'I’m ad', 'screen:3')App.screen.check(y, 'hi ', 'baseline/screen:3')App.screen.check(y, 'hi ', 'screen:1')App.screen.check(y, 'jkl m', 'screen:2')App.screen.check(y, 'no p', 'screen:3')endfunction test_pagedown_never_moves_up()-- draw the final screen line of a wrapping lineApp.screen.init{width=Editor_state.left+30, height=60}Editor_state = edit.initialize_test_state()Editor_state.lines = load_array{'abc def ghi'}Text.redraw_all(Editor_state)y = y + Editor_state.line_heighty = y + Editor_state.line_height-- after pagedown we scroll down the very long wrapping lineedit.run_after_keychord(Editor_state, 'pagedown', 'pagedown')check_eq(Editor_state.screen_top1.line, 1, 'screen_top:line')endfunction test_click_past_end_of_screen_line()-- display a wrapping lineApp.screen.init{width=75, height=80}Editor_state = edit.initialize_test_state()-- 12345678901234Editor_state.lines = load_array{"madam I'm adam"}Text.redraw_all(Editor_state)Editor_state.cursor1 = {line=1, pos=1}Editor_state.screen_top1 = {line=1, pos=1} - edit in conf.lua at line 3
- edit in app.lua at line 74[2.76]→[5.283:353](∅→∅),[5.283]→[5.283:353](∅→∅),[5.353]→[2.77:351](∅→∅),[2.351]→[5.0:39](∅→∅),[5.548]→[5.0:39](∅→∅),[5.39]→[5.548:563](∅→∅),[5.548]→[5.548:563](∅→∅),[5.870]→[4.23:67](∅→∅)
love.window.setMode(width, height, flags)if OS == 'iOS' thenlove.keyboard.setTextInput(has_text_input) -- iOS recreates the window on setMode-- this property is part of the window-- https://github.com/love2d/love/issues/1959love.keyboard.setKeyRepeat(true)endendApp.screen.resize = function(w, h, flags) - resolve order conflict in app.lua at line 74
- replacement in app.lua at line 82
w, h = love.window.toPixels(w, h)width, height = love.window.toPixels(width, height) - replacement in app.lua at line 84
love.window.setMode(w, h, flags)love.window.setMode(width, height, flags)if OS == 'iOS' thenlove.keyboard.setTextInput(has_text_input) -- iOS recreates the window on setMode-- this property is part of the window-- https://github.com/love2d/love/issues/1959love.keyboard.setKeyRepeat(true)end - edit in app.lua at line 92