make a few names consistent with snake_case
[?]
Aug 30, 2023, 1:43 PM
FPY4LO2WZNXUYCZ6MOQBSPGCC3M3PE7YX2TJIFRNEQLJ4ACWUPVACDependencies
- [2]
CUFW4EJLreorganize app.lua and its comments - [3]
LNUHQOGHstart passing in Editor_state explicitly - [4]
KKMFQDR4editing source code from within the app - [5]
S2MISTTMadd state arg to a few functions - [6]
OI4FPFINsupport drawings in the source editor - [7]
Z5HLXU4Padd state arg to a few functions - [8]
7CLGG7J2test: autosave after any shape - [9]
7IDHIAYIrename modifier_down to key_down - [10]
ISOFHXB2App.width can no longer take a Text - [11]
BH7BT36Lctrl+a: select entire buffer - [12]
2L4DL7PGgo through App in a couple more places - [13]
4KC7I3E2make colors easier to edit - [14]
LF7BWEG4group all editor globals - [15]
G54H3YG2get rid of all bifold text - [16]
H4R5BHVYno more Text allocations - [17]
UHB4GARJleft/right margin -> left/right coordinates - [18]
JFFUF5ALoverride mouse state lookups in tests - [19]
HKV72RZVbugfix: save modified files in save directory - [20]
IFTYOERMline.y -> line_cache.starty in a few more places - [21]
P7FOVH3Ddocument a couple of miscellaneous helpers - [22]
PX7DDEMOautosave slightly less aggressively - [23]
2L5MEZV3experiment: new edit namespace - [24]
R3KXFRZNget rid of to_text - [25]
N2NUGNN4include a brief reference enabling many useful apps - [26]
AD34IX2Zcouple more tests - [27]
ZLJGZYQGselect text with shift + mouseclick - [28]
MTJEVRJRadd state arg to a few functions - [29]
JF5L2BBStest harness now supports copy/paste - [30]
PTDO2SOTadd state arg to schedule_save - [31]
3QWK3GSAsupport mouse clicks in file navigator - [32]
AVTNUQYRbasic test-enabled framework - [*]
3QNOKBFMbeginnings of a test harness
Change contents
- replacement in source_edit.lua at line 451
App.setClipboardText(s)App.set_clipboard(s) - replacement in source_edit.lua at line 457
App.setClipboardText(s)App.set_clipboard(s) - replacement in source_edit.lua at line 466
local clipboard_data = App.getClipboardText()local clipboard_data = App.get_clipboard() - replacement in reference.md at line 382
* `App.getTime()` -- returns the number of seconds elapsed since some* `App.get_time()` -- returns the number of seconds elapsed since some - replacement in reference.md at line 386
* `App.getClipboardText()` -- returns a string with the current clipboard* `App.get_clipboard()` -- returns a string with the current clipboard - replacement in reference.md at line 390
* `App.setClipboardText(text)` -- stores the string `text` in the clipboard.* `App.set_clipboard(text)` -- stores the string `text` in the clipboard. - replacement in edit.lua at line 462
App.setClipboardText(s)App.set_clipboard(s) - replacement in edit.lua at line 468
App.setClipboardText(s)App.set_clipboard(s) - replacement in edit.lua at line 477
local clipboard_data = App.getClipboardText()local clipboard_data = App.get_clipboard() - replacement in app.lua at line 172
-- If you access the time using App.getTime instead of love.timer.getTime,-- If you access the time using App.get_time instead of love.timer.getTime, - replacement in app.lua at line 177
function App.getTime()function App.get_time() - replacement in app.lua at line 188
-- If you access the clipboard using App.getClipboardText and-- App.setClipboardText instead of love.system.getClipboardText and-- love.system.setClipboardText respectively, tests will be able to manipulate-- the clipboard by reading/writing App.clipboard.-- If you access the clipboard using App.get_clipboard and App.set_clipboard-- instead of love.system.getClipboardText and love.system.setClipboardText-- respectively, tests will be able to manipulate the clipboard by-- reading/writing App.clipboard. - replacement in app.lua at line 194
function App.getClipboardText()function App.get_clipboard() - replacement in app.lua at line 197
function App.setClipboardText(s)function App.set_clipboard(s) - replacement in app.lua at line 420[3.913]→[3.1742:1777](∅→∅),[3.2791]→[3.1742:1777](∅→∅),[3.1777]→[3.2953:3061](∅→∅),[3.2791]→[3.2953:3061](∅→∅)
App.getTime = love.timer.getTimeApp.getClipboardText = love.system.getClipboardTextApp.setClipboardText = love.system.setClipboardTextApp.get_time = love.timer.getTimeApp.get_clipboard = love.system.getClipboardTextApp.set_clipboard = love.system.setClipboardText