about summary refs log tree commit diff stats
path: root/reference.md
Commit message (Collapse)AuthorAgeFilesLines
* Merge lines.loveKartik K. Agaram2024-05-191-0/+7
|\
| * document recent handlersKartik K. Agaram2024-05-191-0/+7
| |
* | Merge lines.loveKartik K. Agaram2024-02-041-2/+2
|\|
| * more realism in one more helperKartik K. Agaram2024-02-041-2/+2
| |
* | Merge lines.loveKartik K. Agaram2023-12-291-2/+2
|\|
| * bugfixKartik K. Agaram2023-12-291-2/+2
| | | | | | | | | | | | | | | | | | scenario: run without config file, quit, run again expected: font size remains the same on second run Before this commit it was increasing on each run. It turns out the font height that you pass into love.graphics.newFont() is not the result of font:getHeight().
| * update docKartik K. Agaram2023-12-291-1/+1
| |
* | Merge lines.loveKartik K. Agaram2023-12-191-3/+6
|\|
| * document a missing editor APIKartik K. Agaram2023-12-191-3/+6
| |
* | Merge lines.loveKartik K. Agaram2023-12-181-10/+9
|\|
| * make button backgrounds optionalKartik K. Agaram2023-12-181-10/+9
| |
* | Merge lines.loveKartik K. Agaram2023-12-181-3/+6
|\|
| * add a helper and update some docsKartik K. Agaram2023-12-181-3/+6
| |
* | Merge lines.loveKartik K. Agaram2023-12-161-2/+2
|\|
| * streamline button.luaKartik K. Agaram2023-12-161-2/+2
| |
* | Merge lines.loveKartik K. Agaram2023-12-061-0/+3
|\|
| * redo version checksKartik K. Agaram2023-12-061-0/+3
| | | | | | | | This is still ugly, but hopefully easier to follow.
* | 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