Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cleaner API for file-system access | Kartik K. Agaram | 2023-08-30 | 1 | -6/+2 |
| | | | | | | | | | | | | | | | | | | | | | Thanks to physfs and nativefs.lua nativefs still introduces some inconsistencies with love.filesystem with relative paths: * love.fs.read: reads from save dir if it exists, falls back to source dir if not * nativefs.read: reads from save dir if it exists, falls back to source dir if not ✓ * love.fs.write: always writes to save dir * nativefs.write: always writes to source dir (since no restrictions) * love.fs.newFile followed by file:open('r'): reads from save dir if it exists, source dir if not * nativefs.newFile followed by file:open('r'): always reads from working dir * love.fs.newFile followed by file:open('w'): always writes to save dir * nativefs.newFile followed by file:open('w'): always writes to working dir So avoid using relative paths with App primitives. | ||||
* | make a few names consistent with snake_case | Kartik K. Agaram | 2023-08-30 | 1 | -3/+3 |
| | |||||
* | correct various names in this and other pre-freewheeling forks | Kartik K. Agaram | 2023-08-26 | 1 | -7/+7 |
| | |||||
* | fix method name in documentation | Kartik K. Agaram | 2023-08-26 | 1 | -1/+1 |
| | |||||
* | document some editor constants | Kartik K. Agaram | 2023-06-07 | 1 | -0/+19 |
| | |||||
* | document facilities for buttons on screen | Kartik K. Agaram | 2023-06-06 | 1 | -0/+54 |
| | |||||
* | document a couple of miscellaneous helpers | Kartik K. Agaram | 2023-06-05 | 1 | -0/+6 |
| | |||||
* | document a few more keyboard primitives | Kartik K. Agaram | 2023-06-05 | 1 | -0/+9 |
| | |||||
* | rename modifier_down to key_down | Kartik K. Agaram | 2023-06-05 | 1 | -2/+1 |
| | | | | The old name was confusing, as its description showed. | ||||
* | primitives for writing tests | Kartik K. Agaram | 2023-04-11 | 1 | -0/+27 |
| | |||||
* | couple of typos | Kartik K. Agaram | 2023-04-11 | 1 | -4/+4 |
| | |||||
* | editor documentation | Kartik K. Agaram | 2023-04-10 | 1 | -0/+49 |
| | |||||
* | include a brief reference enabling many useful apps | Kartik K. Agaram | 2023-04-09 | 1 | -0/+264 |