Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | document recent handlers | Kartik K. Agaram | 2024-05-19 | 1 | -0/+7 |
| | |||||
* | more realism in one more helper | Kartik K. Agaram | 2024-02-04 | 1 | -2/+2 |
| | |||||
* | bugfix | Kartik K. Agaram | 2023-12-29 | 1 | -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 doc | Kartik K. Agaram | 2023-12-29 | 1 | -1/+1 |
| | |||||
* | document a missing editor API | Kartik K. Agaram | 2023-12-19 | 1 | -3/+6 |
| | |||||
* | make button backgrounds optional | Kartik K. Agaram | 2023-12-18 | 1 | -10/+9 |
| | |||||
* | add a helper and update some docs | Kartik K. Agaram | 2023-12-18 | 1 | -3/+6 |
| | |||||
* | streamline button.lua | Kartik K. Agaram | 2023-12-16 | 1 | -2/+2 |
| | |||||
* | redo version checks | Kartik K. Agaram | 2023-12-06 | 1 | -0/+3 |
| | | | | This is still ugly, but hopefully easier to follow. | ||||
* | 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 |