about summary refs log tree commit diff stats
path: root/zet.tlv
Commit message (Collapse)AuthorAgeFilesLines
* zet.tlv: refine the initial UX some moreKartik K. Agaram2022-02-101-0/+47
| | | | | | | | | | | | | | | | | | | | Conundrum: I want the app to provide some sample data for people to interact with. However, I also want them to be able to delete it to make it their own. BUT I'm not yet convinced the app should allow deletion in general. Besides, deleting stuff robustly and reliably is a whole other level of programming. Solution: Make people edit the app to clear the initial sample zettels. This has the "beneficial" side-effect of getting them editing apps on Teliva.
* zet.tlv: copy in sample zettelsKartik K. Agaram2022-02-101-4/+4
|
* zet.tlv: saving/loading to/from diskKartik K. Agaram2022-02-101-0/+76
|
* zet.tlvKartik K. Agaram2022-02-101-0/+131
|
* zet.tlv: resizing zettel card sizesKartik K. Agaram2022-02-101-0/+124
|
* zet.tlv: creating new zettelsKartik K. Agaram2022-02-091-0/+211
|
* zet.tlv: bugfixes to editor cursor handlingKartik K. Agaram2022-02-091-5/+4
|
* .Kartik K. Agaram2022-02-091-2/+2
|
* standardize key order in .tlv filesKartik K. Agaram2022-02-091-15/+15
| | | | This will eliminate some spurious git diffs I keep having to clean up.
* zet.tlv: simpler UI, simpler editorKartik K. Agaram2022-02-091-0/+184
|
* bugfix in rendering non-top zettelsKartik K. Agaram2022-02-081-1/+1
|
* Lua gotcha: iterating over strings yields stringsKartik K. Agaram2022-02-081-1/+1
|
* zet.tlv: expand editor to accomodate more textKartik K. Agaram2022-02-081-7/+12
| | | | | Still won't show up in view mode for now. Soon we'll be able to adjust zettel dimensions.
* zet.tlv: editing a single zettelKartik K. Agaram2022-02-081-7/+307
|
* zet.tlv: clean up historyKartik K. Agaram2022-02-071-2590/+17
|
* experimental app: zettelkastenKartik K. Agaram2022-02-041-0/+2963
https://merveilles.town/@akkartik/107742821323590471 What we have so far: a representation (see 'zettels') parent/child next/prev sibling (todo: misc cross-links) ability to render zettels in multiple columns based on 'view_settings' all zettels render with same size alternate backgrounds between zettels for legibility skip rendering duplicates (if we ever hit cycles) a highlighted 'current zettel' ability to move current zettel by screen location (arrow keys) by network structure (h/j/k/l) Still can't edit zettels or load/save from/to disk.