Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | ensure integer coordinates | Kartik K. Agaram | 2022-05-19 | 1 | -1/+1 | |
| | | | | | https://love2d.org/wiki/Text says text can appear blurry otherwise. I can't tell yet, though. | |||||
* | handle tab characters | Kartik K. Agaram | 2022-05-18 | 1 | -1/+8 | |
| | ||||||
* | bugfix: ensure Cursor_line is always on a text line | Kartik K. Agaram | 2022-05-18 | 3 | -3/+45 | |
| | | | | | | | | | | | | | | | | | | | | Manual test used here: abc ```lines {"p1":{"y":72,"x":82},"mode":"line","p2":{"y":29,"x":169}} ``` def ```lines {"p1":{"y":36,"x":56},"mode":"line","p2":{"y":59,"x":163}} ``` ```lines ``` ghi jkl Hitting page-down moves the cursor from abc to ghi. The 'ghi' line should be fully visible on screen. | |||||
* | bugfix: position cursor up top when loading file | Kartik K. Agaram | 2022-05-18 | 1 | -0/+2 | |
| | ||||||
* | scroll past first page | Kartik K. Agaram | 2022-05-18 | 3 | -20/+63 | |
| | | | | | | Still some limitations. The text cursor has to be visible on screen, so if you have a long series of drawings without intervening lines of text you won't be able to scroll through them all. | |||||
* | rectangle and square shapes | Kartik K. Agaram | 2022-05-18 | 4 | -7/+215 | |
| | ||||||
* | lighter color for in-progress strokes | Kartik K. Agaram | 2022-05-18 | 1 | -0/+1 | |
| | ||||||
* | use the provided args everywhere | Kartik K. Agaram | 2022-05-18 | 1 | -4/+4 | |
| | | | | This will be important when we implement scrolling.. | |||||
* | casting about for more helpers to extract.. | Kartik K. Agaram | 2022-05-18 | 1 | -3/+3 | |
| | ||||||
* | move | Kartik K. Agaram | 2022-05-18 | 1 | -91/+92 | |
| | ||||||
* | highlight another global | Kartik K. Agaram | 2022-05-17 | 2 | -4/+4 | |
| | ||||||
* | forgot to move this special case out | Kartik K. Agaram | 2022-05-17 | 2 | -3/+5 | |
| | ||||||
* | . | Kartik K. Agaram | 2022-05-17 | 2 | -4/+6 | |
| | ||||||
* | delegate update events to drawings | Kartik K. Agaram | 2022-05-17 | 2 | -21/+26 | |
| | ||||||
* | DRY some code | Kartik K. Agaram | 2022-05-17 | 2 | -22/+18 | |
| | ||||||
* | move mouse_released events to Drawing | Kartik K. Agaram | 2022-05-17 | 2 | -57/+61 | |
| | ||||||
* | split mouse_pressed events between Text and Drawing | Kartik K. Agaram | 2022-05-17 | 3 | -27/+44 | |
| | ||||||
* | split keyboard handling between Text and Drawing | Kartik K. Agaram | 2022-05-17 | 4 | -291/+302 | |
| | ||||||
* | autosave in a couple more places | Kartik K. Agaram | 2022-05-17 | 1 | -0/+3 | |
| | ||||||
* | assume we always have a filename | Kartik K. Agaram | 2022-05-17 | 1 | -6/+2 | |
| | ||||||
* | . | Kartik K. Agaram | 2022-05-17 | 1 | -6/+4 | |
| | ||||||
* | bugfix: duplicate character on enter | Kartik K. Agaram | 2022-05-17 | 2 | -1/+4 | |
| | ||||||
* | jump between lines on left/right | Kartik K. Agaram | 2022-05-17 | 1 | -0/+22 | |
| | | | | Also skip past drawings. | |||||
* | split lines on enter | Kartik K. Agaram | 2022-05-17 | 1 | -3/+7 | |
| | ||||||
* | rename | Kartik K. Agaram | 2022-05-17 | 1 | -4/+4 | |
| | ||||||
* | . | Kartik K. Agaram | 2022-05-17 | 2 | -1/+2 | |
| | ||||||
* | join lines on delete | Kartik K. Agaram | 2022-05-17 | 1 | -1/+9 | |
| | ||||||
* | move | Kartik K. Agaram | 2022-05-17 | 1 | -13/+13 | |
| | ||||||
* | enable pressing and holding backspace | Kartik K. Agaram | 2022-05-17 | 1 | -0/+1 | |
| | ||||||
* | several more modules | Kartik K. Agaram | 2022-05-17 | 6 | -697/+707 | |
| | | | | This is probably not ideal; let's see how it goes.. | |||||
* | bugfix typo | Kartik K. Agaram | 2022-05-17 | 2 | -1/+3 | |
| | ||||||
* | beginnings of a module for the text editor | Kartik K. Agaram | 2022-05-17 | 2 | -52/+61 | |
| | ||||||
* | longer names for indices in long loops | Kartik K. Agaram | 2022-05-17 | 1 | -11/+11 | |
| | ||||||
* | extract a module | Kartik K. Agaram | 2022-05-17 | 2 | -47/+54 | |
| | | | | | I want to use `drawing` for locals, so I'll use uppercase the module name just like globals. | |||||
* | finish uppercasing all globals | Kartik K. Agaram | 2022-05-17 | 1 | -208/+208 | |
| | ||||||
* | start uppercasing globals | Kartik K. Agaram | 2022-05-17 | 1 | -94/+94 | |
| | | | | We're starting to have a few. Text editing is surprisingly more complex than drawing. | |||||
* | record a known issue | Kartik K. Agaram | 2022-05-17 | 1 | -0/+4 | |
| | | | | Discovered while showing this to Dan Oblinger. | |||||
* | let's prevent the text cursor from ever getting on a drawing | Kartik K. Agaram | 2022-05-17 | 2 | -38/+54 | |
| | ||||||
* | bugfix typo | Kartik K. Agaram | 2022-05-17 | 1 | -1/+1 | |
| | ||||||
* | start imposing some organization | Kartik K. Agaram | 2022-05-17 | 1 | -7/+9 | |
| | ||||||
* | much better help color and copy | Kartik K. Agaram | 2022-05-17 | 1 | -14/+14 | |
| | ||||||
* | bit more polish to help screen | Kartik K. Agaram | 2022-05-17 | 1 | -5/+6 | |
| | | | | Still looks like ass. | |||||
* | reset zoom | Kartik K. Agaram | 2022-05-17 | 1 | -0/+6 | |
| | ||||||
* | respect zoom when drawing drawings | Kartik K. Agaram | 2022-05-16 | 1 | -0/+4 | |
| | ||||||
* | respect zoom when printing online help | Kartik K. Agaram | 2022-05-16 | 1 | -51/+54 | |
| | ||||||
* | ctrl-+ and ctrl-- to adjust font size | Kartik K. Agaram | 2022-05-16 | 1 | -4/+12 | |
| | ||||||
* | reorg | Kartik K. Agaram | 2022-05-16 | 1 | -13/+16 | |
| | ||||||
* | more precise cursor positioning | Kartik K. Agaram | 2022-05-16 | 1 | -3/+4 | |
| | ||||||
* | position cursor by clicking on text | Kartik K. Agaram | 2022-05-16 | 1 | -6/+13 | |
| | | | | In the process, a bugfix: up/down from line to drawing or vice versa. | |||||
* | allow text to be typed while mouse hovers over drawing | Kartik K. Agaram | 2022-05-16 | 1 | -13/+0 | |
| | | | | | The whole point of my keyboard shortcuts scheme is that if you press a regular key and the mouse is not down, it goes in at the cursor. |