Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | snapshot: migrate all sample apps to new format | Kartik K. Agaram | 2021-12-11 | 1 | -298/+263 |
| | |||||
* | start showing call stack on errors | Kartik K. Agaram | 2021-12-04 | 1 | -0/+1 |
| | | | | | | | | It turns out Lua has been providing us this information all along! I'd just not created the space on screen to show it. Make it persist better. Kilo now no longer tracks its own status messages, which is a regression in a rare condition. | ||||
* | . | Kartik K. Agaram | 2021-11-26 | 1 | -17/+34 |
| | |||||
* | save timestamp on change; show in recent changes | Kartik K. Agaram | 2021-11-26 | 1 | -0/+17 |
| | |||||
* | monotonically accumulate versions of definitions | Kartik K. Agaram | 2021-11-24 | 1 | -1/+36 |
| | | | | | | | | | | | One old drawback now has a new look. Before, we loaded definitions in order, so global definitions had to exist before other global definitions that used them. See window and grid in life.tlv. Now we load definitions in reverse order, so initialization needs to change. Worse, if we update window, we need to edit grid just to fix the order. This implies that we can't yet optimize away bindings where there are no new changes. | ||||
* | indent | Kartik K. Agaram | 2021-11-23 | 1 | -17/+17 |
| | |||||
* | chess: tweak colors a bit | Kartik K. Agaram | 2021-11-23 | 1 | -4/+4 |
| | |||||
* | chess: extract color parameters | Kartik K. Agaram | 2021-11-23 | 1 | -16/+16 |
| | |||||
* | chess: extract a new function | Kartik K. Agaram | 2021-11-23 | 1 | -2/+6 |
| | |||||
* | chess: fix inconsistency in light piece color | Kartik K. Agaram | 2021-11-23 | 1 | -2/+2 |
| | |||||
* | chess: make white pieces red for legibility | Kartik K. Agaram | 2021-11-22 | 1 | -8/+10 |
| | |||||
* | chesstv: light colored square on bottom right | Kartik K. Agaram | 2021-11-22 | 1 | -2/+2 |
| | | | | 1-based indexing is a hassle. | ||||
* | chesstv.tlv: render clocks | Kartik K. Agaram | 2021-11-21 | 1 | -0/+8 |
| | |||||
* | chesstv.tlv: looking much better | Kartik K. Agaram | 2021-11-21 | 1 | -24/+55 |
| | | | | | | | | | - square colors are slightly different - moves are now highlighted In the process I found lots of bugs in the rendering, and gave up on supporting adjustable orientation. Just always keep White's side at the bottom. | ||||
* | chess: better colors | Kartik K. Agaram | 2021-11-21 | 1 | -6/+38 |
| | |||||
* | almost done with chess app | Kartik K. Agaram | 2021-11-21 | 1 | -2/+111 |
| | | | | It's still not very legible. | ||||
* | figured out streaming http! | Kartik K. Agaram | 2021-11-21 | 1 | -3/+22 |
| | | | | http://lua-users.org/wiki/FiltersSourcesAndSinks | ||||
* | basic http requests starting to work | Kartik K. Agaram | 2021-11-21 | 1 | -1/+17 |
| | | | | | In the process we're starting to load almost all of luasocket by default. And everything is working as expected, no unpleasant surprises. | ||||
* | start on HTTP client | Kartik K. Agaram | 2021-11-21 | 1 | -0/+7 |