Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Merge lines.love | Kartik K. Agaram | 2022-11-03 | 1 | -2/+2 | |
|\| | ||||||
| * | stop tracking wallclock time | Kartik K. Agaram | 2022-11-03 | 1 | -2/+2 | |
| | | | | | | | | We only need time differences. | |||||
* | | Merge lines.love | Kartik K. Agaram | 2022-09-10 | 1 | -1/+1 | |
|\| | ||||||
| * | bugfix: path munging on Windows | Kartik K. Agaram | 2022-09-10 | 1 | -1/+1 | |
| | | ||||||
* | | Merge lines.love | Kartik K. Agaram | 2022-09-07 | 1 | -1/+4 | |
|\| | ||||||
| * | self-documenting 0 Test_right_margin | Kartik K. Agaram | 2022-09-07 | 1 | -1/+4 | |
| | | ||||||
* | | Merge lines.love | Kartik K. Agaram | 2022-09-05 | 1 | -3/+5 | |
|\| | ||||||
| * | support drawings in the source editor | Kartik K. Agaram | 2022-09-05 | 1 | -3/+5 | |
| | | ||||||
| * | editing source code from within the app | Kartik K. Agaram | 2022-09-03 | 1 | -9/+0 | |
| | | | | | | | | | | integrated from pong.love via text.love: https://merveilles.town/@akkartik/108933336531898243 | |||||
* | | editing source code from within the app | Kartik K. Agaram | 2022-09-03 | 1 | -5/+0 | |
| | | | | | | | | integrated from pong.love: https://merveilles.town/@akkartik/108933336531898243 | |||||
* | | Merge lines.love | Kartik K. Agaram | 2022-08-24 | 1 | -0/+1 | |
|\| | ||||||
| * | infrastructure for caching LÖVE text objects | Kartik K. Agaram | 2022-08-24 | 1 | -0/+1 | |
| | | ||||||
* | | Merge lines.love | Kartik K. Agaram | 2022-08-23 | 1 | -12/+16 | |
|\| | ||||||
| * | flip return value of button handlers | Kartik K. Agaram | 2022-08-23 | 1 | -2/+1 | |
| | | | | | | | | | | | | This is compatible with Javascript, and it also seems like a better default; when people forget to think about return values in click handlers, they should be consumed. | |||||
| * | stop putting button state in a global | Kartik K. Agaram | 2022-08-23 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Symptom: a test (test_click_to_create_drawing) started randomly failing after I inserted a `return` 2 commits ago. Cause: my tests call edit.draw, but button handlers only get cleared in app.draw. So my tests weren't clearing button handlers, and every call to edit.draw was accumulating states. Still unclear why those were going to different state objects after the `return`, but anyway. I'm not going to understand every last thing that happens when things go wrong, just guarantee they can't go wrong. And the way to do that is to decentralize button handlers to each state that receives them. The State object in buttons.lua doesn't have to be Editor_state. It just has to be some table that provides a Schelling Point for shared state. | |||||
| * | allow buttons to interrupt events | Kartik K. Agaram | 2022-08-23 | 1 | -1/+5 | |
| | | | | | | | | Most button onpress1 handlers will want to return true. | |||||
| * | distinguish consistently between mouse buttons and other buttons | Kartik K. Agaram | 2022-08-23 | 1 | -11/+11 | |
| | | ||||||
* | | Merge lines.love | Kartik K. Agaram | 2022-08-18 | 1 | -0/+2 | |
|\| | ||||||
| * | subsection headings in a long switch | Kartik K. Agaram | 2022-08-18 | 1 | -0/+2 | |
| | | ||||||
* | | Merge lines.love | Kartik K. Agaram | 2022-08-17 | 1 | -5/+3 | |
|\| | ||||||
| * | simplify cursor-on-screen check | Kartik K. Agaram | 2022-08-17 | 1 | -5/+3 | |
| | | ||||||
* | | bring back a level of wrapping | Kartik K. Agaram | 2022-08-15 | 1 | -2/+2 | |
| | | | | | | | | | | Many projects will require the ability to add metadata to lines, so let's not drop that. | |||||
* | | clean up a few more loose ends | Kartik K. Agaram | 2022-08-14 | 1 | -4/+0 | |
| | | ||||||
* | | new fork: rip out drawing support | Kartik K. Agaram | 2022-08-14 | 1 | -186/+48 | |
|/ | ||||||
* | remove some duplication | Kartik K. Agaram | 2022-08-14 | 1 | -6/+4 | |
| | ||||||
* | bugfix: obsolete location for attribute | Kartik K. Agaram | 2022-08-14 | 1 | -2/+2 | |
| | ||||||
* | click to the left of a line | Kartik K. Agaram | 2022-07-29 | 1 | -2/+4 | |
| | ||||||
* | copying to clipboard can never scroll | Kartik K. Agaram | 2022-07-27 | 1 | -1/+0 | |
| | ||||||
* | line.y -> line_cache.starty in a few more places | Kartik K. Agaram | 2022-07-27 | 1 | -8/+8 | |
| | | | | | | Disquieting that none of my tests caught these. On the other hand, I also haven't noticed any issues in practice. Perhaps cache invalidation is often unnecessary. | |||||
* | have file API operate on state object | Kartik K. Agaram | 2022-07-25 | 1 | -2/+2 | |
| | ||||||
* | extract method | Kartik K. Agaram | 2022-07-23 | 1 | -0/+11 | |
| | ||||||
* | move drawing.starty into line cache | Kartik K. Agaram | 2022-07-20 | 1 | -4/+4 | |
| | ||||||
* | use line cache for drawings as well | Kartik K. Agaram | 2022-07-20 | 1 | -4/+4 | |
| | ||||||
* | separate data structure for each line's cache data | Kartik K. Agaram | 2022-07-17 | 1 | -8/+13 | |
| | | | | I have no idea what the performance implications of this are.. | |||||
* | keep all text cache writes inside text.lua | Kartik K. Agaram | 2022-07-17 | 1 | -4/+3 | |
| | ||||||
* | switch to line index in a function | Kartik K. Agaram | 2022-07-17 | 1 | -2/+2 | |
| | | | | - Text.to_pos_on_line | |||||
* | switch to line index in a function | Kartik K. Agaram | 2022-07-17 | 1 | -2/+2 | |
| | | | | - Text.in_line | |||||
* | drop some extra args | Kartik K. Agaram | 2022-07-17 | 1 | -4/+4 | |
| | ||||||
* | fold together two largely similar cases | Kartik K. Agaram | 2022-07-17 | 1 | -28/+23 | |
| | ||||||
* | drop some redundant args from Text.draw | Kartik K. Agaram | 2022-07-17 | 1 | -3/+3 | |
| | ||||||
* | formatting | Kartik K. Agaram | 2022-07-16 | 1 | -1/+1 | |
| | ||||||
* | bring back a set of constants | Kartik K. Agaram | 2022-07-16 | 1 | -7/+6 | |
| | | | | | It's starting to sink in that I don't want hard-coded constants inside objects. | |||||
* | more precise name | Kartik K. Agaram | 2022-07-15 | 1 | -3/+10 | |
| | ||||||
* | make test initializations a little more obvious | Kartik K. Agaram | 2022-07-15 | 1 | -7/+17 | |
| | ||||||
* | a bug I've never run into | Kartik K. Agaram | 2022-07-13 | 1 | -2/+8 | |
| | | | | | | The previous commit was failing inside a test that I can't reproduce manually. Perhaps it's something about how often draw/update run in practice. Anyways, it's definitely uncovered a real issue. | |||||
* | replace globals with args in a few functions | Kartik K. Agaram | 2022-07-12 | 1 | -2/+2 | |
| | | | | | | | | | - Drawing.draw_shape - Drawing.draw_pending_shape - Drawing.in_drawing - Drawing.find_or_insert_point - Drawing.near - Drawing.pixels | |||||
* | correct a mis-named threshold | Kartik K. Agaram | 2022-07-12 | 1 | -0/+2 | |
| | ||||||
* | deduce left/right from state where possible | Kartik K. Agaram | 2022-07-12 | 1 | -1/+1 | |
| | ||||||
* | left/right margin -> left/right coordinates | Kartik K. Agaram | 2022-07-12 | 1 | -16/+19 | |
| | | | | | Editor state initialization now depends on window dimensions, so we have to more carefully orchestrate startup. | |||||
* | add state arg to a few functions | Kartik K. Agaram | 2022-07-12 | 1 | -1/+1 | |
| | | | | | | | - Drawing.current_drawing - Drawing.select_shape_at_mouse - Drawing.select_point_at_mouse - Drawing.select_drawing_at_mouse |