Merge text.love
[?]
Sep 9, 2023, 4:51 PM
BHVEPXG422PNMGDUUYHIPDVNNALLYK7VCDNSAWE526XFDTDRPTUACDependencies
- [2]
JCRUUD2SMerge text.love - [3]
AQOJ62LNtwo bugfixes - [4]
HKV72RZVbugfix: save modified files in save directory - [5]
FQURPLDAnew primitives for reading/writing files - [6]
ED4Z6ORCcleaner API for file-system access - [7]
AVTNUQYRbasic test-enabled framework - [8]
36Z442IVback to commit 8123959e52f without code editing - [*]
3QNOKBFMbeginnings of a test harness
Change contents
- edit in app.lua at line 428
end - resurrect zombie in app.lua at line 428[4.16250]→[4.224:246](∅→∅),[4.16250]→[4.224:246](∅→∅),[4.246]→[3.36:54](∅→∅),[4.246]→[3.36:54](∅→∅),[3.54]→[4.259:526](∅→∅),[4.259]→[4.259:526](∅→∅),[4.259]→[4.259:526](∅→∅),[4.636]→[4.527:603](∅→∅),[4.636]→[4.527:603](∅→∅)
endendApp.read_file =function(path)if not is_absolute_path(path) thenreturn --[[status]] false, 'Please use an unambiguous absolute path.'endlocal f, err = App.open_for_reading(path)if err thenreturn --[[status]] false, errlocal contents = f:read()f:close()return contents - edit in app.lua at line 438
end