Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | . | Kartik K. Agaram | 2022-09-15 | 1 | -1/+1 | |
| | ||||||
* | new test | Kartik K. Agaram | 2022-09-15 | 3 | -2/+21 | |
| | ||||||
* | more correct absolute path detection | Kartik K. Agaram | 2022-09-11 | 4 | -6/+38 | |
| | ||||||
* | bugfix: path munging on Windows | Kartik K. Agaram | 2022-09-10 | 4 | -6/+8 | |
| | ||||||
* | self-documenting 0 Test_right_margin | Kartik K. Agaram | 2022-09-07 | 4 | -8/+16 | |
| | ||||||
* | one issue less | Kartik K. Agaram | 2022-09-06 | 1 | -3/+1 | |
| | | | | | Selecting text is also almost done. I just need to figure out what to do with bifold text. | |||||
* | switch shortcuts for bifold text | Kartik K. Agaram | 2022-09-06 | 2 | -5/+5 | |
| | | | | | | I've been running out of ctrl+ shortcuts, and I just remembered my original idea to keep ctrl+ for drawings/mouse operations and alt+ for everything else. | |||||
* | support selections in the source editor | Kartik K. Agaram | 2022-09-06 | 6 | -6/+708 | |
| | | | | | I've only tested side A so far, and included a statement of how I want side B to behave. | |||||
* | support hyperlinks in the source editor | Kartik K. Agaram | 2022-09-05 | 3 | -0/+40 | |
| | | | | Integrated from the pensieve fork. | |||||
* | bugfix: save modified files in save directory | Kartik K. Agaram | 2022-09-05 | 1 | -2/+26 | |
| | | | | | | scenario: open app from .love file, press ctrl+e Before this change the source file showed up empty. | |||||
* | . | Kartik K. Agaram | 2022-09-05 | 1 | -1/+3 | |
| | ||||||
* | support drawings in the source editor | Kartik K. Agaram | 2022-09-05 | 11 | -128/+545 | |
| | ||||||
* | include some missing source files | Kartik K. Agaram | 2022-09-05 | 1 | -0/+4 | |
| | ||||||
* | bugfix: cold start | Kartik K. Agaram | 2022-09-03 | 1 | -0/+3 | |
| | ||||||
* | dedup points while loading drawing from disk | Kartik K. Agaram | 2022-09-03 | 2 | -13/+8 | |
| | ||||||
* | set window title within each app | Kartik K. Agaram | 2022-09-03 | 2 | -2/+2 | |
| | | | | The main app shows the file being edited, but the programming environment does not. | |||||
* | remember window positions across restart/ctrl+e | Kartik K. Agaram | 2022-09-03 | 1 | -3/+5 | |
| | ||||||
* | duplicate | Kartik K. Agaram | 2022-09-03 | 1 | -10/+0 | |
| | ||||||
* | bugfix: window title | Kartik K. Agaram | 2022-09-03 | 1 | -2/+2 | |
| | ||||||
* | editing source code from within the app | Kartik K. Agaram | 2022-09-03 | 22 | -203/+5164 | |
| | | | | | integrated from pong.love via text.love: https://merveilles.town/@akkartik/108933336531898243 | |||||
* | bugfix: propagate mouse press if any button would | Kartik K. Agaram | 2022-08-24 | 1 | -4/+6 | |
| | | | | | Before this commit I was propagating press events only if _all_ buttons would. | |||||
* | infrastructure for caching LÖVE text objects | Kartik K. Agaram | 2022-08-24 | 3 | -6/+13 | |
| | ||||||
* | set color for each fragment | Kartik K. Agaram | 2022-08-23 | 1 | -1/+1 | |
| | | | | | In general it seems like good practice to minimize assumptions about the current color. | |||||
* | helper: trimming whitespace from strings | Kartik K. Agaram | 2022-08-23 | 1 | -0/+12 | |
| | ||||||
* | helper: file_exists | Kartik K. Agaram | 2022-08-23 | 1 | -0/+10 | |
| | ||||||
* | make App.open_for_* look more like io.open | Kartik K. Agaram | 2022-08-23 | 1 | -7/+9 | |
| | | | | Now missing files will result in similar behavior: nil file handles. | |||||
* | pass all button params to the icon | Kartik K. Agaram | 2022-08-23 | 2 | -2/+3 | |
| | ||||||
* | allow buttons to nest as well | Kartik K. Agaram | 2022-08-23 | 1 | -2/+11 | |
| | ||||||
* | flip return value of button handlers | Kartik K. Agaram | 2022-08-23 | 2 | -6/+4 | |
| | | | | | | 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 | 3 | -9/+13 | |
| | | | | | | | | | | | | | | | | 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. | |||||
* | improve explanation for buttons | Kartik K. Agaram | 2022-08-23 | 1 | -1/+4 | |
| | ||||||
* | allow buttons to interrupt events | Kartik K. Agaram | 2022-08-23 | 2 | -2/+6 | |
| | | | | Most button onpress1 handlers will want to return true. | |||||
* | indent | Kartik K. Agaram | 2022-08-23 | 1 | -1/+3 | |
| | ||||||
* | distinguish consistently between mouse buttons and other buttons | Kartik K. Agaram | 2022-08-23 | 3 | -30/+30 | |
| | ||||||
* | include pensieve.love even though it's in development | Kartik K. Agaram | 2022-08-22 | 1 | -0/+5 | |
| | ||||||
* | include a fork | Kartik K. Agaram | 2022-08-21 | 1 | -0/+2 | |
| | ||||||
* | correct a comment | Kartik K. Agaram | 2022-08-21 | 1 | -1/+1 | |
| | | | | We no longer have undo history directly in globals. | |||||
* | regression: dropping files on the window | Kartik K. Agaram | 2022-08-19 | 2 | -0/+3 | |
| | | | | Also improve the test to catch this next time. | |||||
* | fix a name | Kartik K. Agaram | 2022-08-19 | 1 | -4/+4 | |
| | ||||||
* | reclaim a couple more functions after tests | Kartik K. Agaram | 2022-08-19 | 1 | -0/+2 | |
| | ||||||
* | couple of accidental globals | Kartik K. Agaram | 2022-08-18 | 1 | -2/+2 | |
| | | | | Luckily they didn't bite me yet. | |||||
* | get rid of some ridiculous code | Kartik K. Agaram | 2022-08-18 | 1 | -15/+5 | |
| | | | | | | I guess I wrote it before I settled into the idiom of: * first change cursor * then scroll if necessary | |||||
* | spurious args | Kartik K. Agaram | 2022-08-18 | 1 | -18/+18 | |
| | ||||||
* | dead code | Kartik K. Agaram | 2022-08-18 | 1 | -2/+0 | |
| | ||||||
* | generalize a function | Kartik K. Agaram | 2022-08-18 | 3 | -12/+13 | |
| | ||||||
* | drop some obsolete args | Kartik K. Agaram | 2022-08-18 | 1 | -2/+2 | |
| | ||||||
* | subsection headings in a long switch | Kartik K. Agaram | 2022-08-18 | 1 | -0/+2 | |
| | ||||||
* | extract a variable | Kartik K. Agaram | 2022-08-18 | 1 | -2/+3 | |
| | ||||||
* | simplify | Kartik K. Agaram | 2022-08-18 | 1 | -4/+1 | |
| | ||||||
* | simpler location comparison | Kartik K. Agaram | 2022-08-17 | 1 | -5/+2 | |
| |