Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | test: autosave after any shape | Kartik K. Agaram | 2022-06-14 | 1 | -1/+1 |
| | |||||
* | avoid some string concatenations | Kartik K. Agaram | 2022-06-10 | 1 | -6/+6 |
| | | | | | | | | file:write can write multiple args one after another; no need to concatenate them first. I'm starting to pay attention to memory usage after the experience of turning off the JIT. | ||||
* | ignore 'deleted' shapes when saving to disk | Kartik K. Agaram | 2022-05-30 | 1 | -0/+6 |
| | |||||
* | typos | Kartik K. Agaram | 2022-05-25 | 1 | -2/+2 |
| | |||||
* | couple more tests | Kartik K. Agaram | 2022-05-25 | 1 | -1/+1 |
| | | | | Along with the App helpers needed for them. | ||||
* | first successful pagedown test, first bug found by test | Kartik K. Agaram | 2022-05-23 | 1 | -3/+9 |
| | | | | | | | | | | | | | | | | | | | I also really need to rethink how people debug my programs. My approach of inserting and deleting print() takes a lot of commitment. I need my old trace-based whitebox testing idea. However, in my past projects I never did figure out a good framework for tweaking how verbose a trace to emit. Perhaps that's too many knobs. Perhaps we just need a way to run a single test with the most verbose trace possible. Then it's just a matter of having the trace tell a coherent story? But even if the trace stays out of program output in that situation, it's still in the programmer's face in the _code_. Ugh. Current plan: ship program with maximum tests and zero commented-out prints. If you want to debug, insert prints. This is better than previous, text-mode, projects just by virtue of the stdout channel being dedicated to debug stuff. | ||||
* | first test! | Kartik K. Agaram | 2022-05-22 | 1 | -0/+56 |
| | |||||
* | support for naming points | Kartik K. Agaram | 2022-05-21 | 1 | -1/+11 |
| | | | | There's still an absence of affordance showing when you're in naming mode. | ||||
* | bugfix: rectangles and squares are now saved | Kartik K. Agaram | 2022-05-21 | 1 | -2/+8 |
| | |||||
* | several more modules | Kartik K. Agaram | 2022-05-17 | 1 | -0/+88 |
This is probably not ideal; let's see how it goes.. |