Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | learning about Lua's debug infrastructure | Kartik K. Agaram | 2021-11-11 | 1 | -0/+21 |
| | | | | https://www.lua.org/pil/23.2.html | ||||
* | main function for other apps besides life.teliva | Kartik K. Agaram | 2021-11-10 | 1 | -22/+25 |
| | |||||
* | why do we refresh screen after reading keyboard? | Kartik K. Agaram | 2021-11-10 | 1 | -2/+0 |
| | |||||
* | . | Kartik K. Agaram | 2021-11-07 | 1 | -0/+1 |
| | |||||
* | new example: counter app | Kartik K. Agaram | 2021-11-06 | 1 | -1/+0 |
| | |||||
* | simple interface for adding to app menu | Kartik K. Agaram | 2021-11-06 | 1 | -0/+1 |
| | | | | | | We're not going to enforce that the menu items actually do what they advertise. It's just a way to draw on the bottom line of screen, something apps aren't otherwise allowed to do. | ||||
* | adjust app style a tad denser | Kartik K. Agaram | 2021-11-06 | 1 | -18/+9 |
| | |||||
* | tweak the example app | Kartik K. Agaram | 2021-11-06 | 1 | -8/+9 |
| | |||||
* | slightly improve hanoi rendering | Kartik K. Agaram | 2021-11-05 | 1 | -1/+1 |
| | |||||
* | colors: init_pair/color_pair | Kartik K. Agaram | 2021-11-05 | 1 | -4/+13 |
| | |||||
* | slightly clearer rendering in the example app | Kartik K. Agaram | 2021-11-05 | 1 | -3/+11 |
| | |||||
* | make some space for the global menu | Kartik K. Agaram | 2021-11-05 | 1 | -0/+1 |
| | | | | We'll eventually need some interface to add entries to it. | ||||
* | rename 'screen' to 'window' | Kartik K. Agaram | 2021-11-05 | 1 | -17/+17 |
| | | | | | We're going to set aside a portion of the screen soon that apps can't touch. | ||||
* | resist the temptation to add to the Lua API | Kartik K. Agaram | 2021-11-05 | 1 | -4/+13 |
| | | | | | Instead we'll include code in the Lua app itself, to minimize the differences between what runs on regular Lua and what runs on Teliva. | ||||
* | ok, what do we need next for hanoi.lua? | Kartik K. Agaram | 2021-11-05 | 1 | -2/+2 |
| | |||||
* | a simple test "app": towers of hanoi | Kartik K. Agaram | 2021-10-23 | 1 | -0/+78 |
Currently it works with stock Lua and lcurses. Our job now is to build in the bindings to make it work here. |