about summary refs log tree commit diff stats
path: root/reference.md
Commit message (Collapse)AuthorAgeFilesLines
* Merge lines.loveKartik K. Agaram2023-08-301-9/+5
|\
| * cleaner API for file-system accessKartik K. Agaram2023-08-301-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_caseKartik K. Agaram2023-08-301-3/+3
| |
* | Merge lines.loveKartik K. Agaram2023-08-261-8/+8
|\|
| * correct various names in this and other pre-freewheeling forksKartik K. Agaram2023-08-261-7/+7
| |
| * fix method name in documentationKartik K. Agaram2023-08-261-1/+1
| |
* | Merge lines.loveKartik K. Agaram2023-06-071-0/+8
|\|
| * document some editor constantsKartik K. Agaram2023-06-071-0/+19
| |
* | Merge lines.loveKartik K. Agaram2023-06-061-0/+54
|\|
| * document facilities for buttons on screenKartik K. Agaram2023-06-061-0/+54
| |
* | Merge lines.loveKartik K. Agaram2023-06-051-2/+16
|\|
| * document a couple of miscellaneous helpersKartik K. Agaram2023-06-051-0/+6
| |
| * document a few more keyboard primitivesKartik K. Agaram2023-06-051-0/+9
| |
| * rename modifier_down to key_downKartik K. Agaram2023-06-051-2/+1
| | | | | | | | The old name was confusing, as its description showed.
* | Merge lines.loveKartik K. Agaram2023-04-111-4/+31
|\|
| * primitives for writing testsKartik K. Agaram2023-04-111-0/+27
| |
| * couple of typosKartik K. Agaram2023-04-111-4/+4
| |
* | Merge lines.loveKartik K. Agaram2023-04-101-0/+49
|\|
| * editor documentationKartik K. Agaram2023-04-101-0/+49
|/
* include a brief reference enabling many useful appsKartik K. Agaram2023-04-091-0/+264