about summary refs log tree commit diff stats
path: root/app.lua
Commit message (Expand)AuthorAgeFilesLines
* crap, fix some final changes in the source editorKartik K. Agaram2024-06-111-1/+1
* stop caching startyKartik K. Agaram2024-06-111-1/+1
* stop caching screen_bottom1Kartik K. Agaram2024-06-111-1/+4
* more realism in one more helperKartik K. Agaram2024-02-041-3/+3
* don't save settings on error in source editorKartik K. Agaram2024-01-121-1/+2
* clean up test mocks before abortingKartik K. Agaram2024-01-121-0/+1
* add a helper and update some docsKartik K. Agaram2023-12-181-0/+1
* redo version checks yet againKartik K. Agaram2023-12-061-1/+0
* redo version checksKartik K. Agaram2023-12-061-3/+14
* _yet another_ bugfix to the version check X-(Kartik K. Agaram2023-12-061-0/+1
* yet another bugfix to the version checkKartik K. Agaram2023-12-031-2/+1
* bugfix: version checkKartik K. Agaram2023-12-031-0/+1
* late-bind my App.* handlersKartik K. Agaram2023-11-181-1/+2
* improve a nameKartik K. Agaram2023-11-101-2/+2
* clean up a debug printKartik K. Agaram2023-11-101-1/+0
* clean up some cruft from error callstacksKartik K. Agaram2023-11-101-1/+22
* remove a no-op regex munging on callstacksKartik K. Agaram2023-11-101-1/+1
* use my name for a dirKartik K. Agaram2023-10-271-1/+1
* clearer API for drawing a buttonKartik K. Agaram2023-10-161-4/+0
* start supporting LÖVE v12Kartik K. Agaram2023-10-091-0/+1
* yet another bugfix X-(Kartik K. Agaram2023-09-091-2/+2
* two bugfixesKartik K. Agaram2023-09-091-2/+3
* new primitives for reading/writing filesKartik K. Agaram2023-09-091-0/+34
* reorderKartik K. Agaram2023-09-091-11/+11
* a few more testable file-system operationsKartik K. Agaram2023-09-081-0/+13
* switch to source editor on errorKartik K. Agaram2023-09-041-3/+18
* stop using keyboard.isDownKartik K. Agaram2023-09-041-2/+18
* cleaner API for file-system accessKartik K. Agaram2023-08-301-44/+34
* make a few names consistent with snake_caseKartik K. Agaram2023-08-301-11/+11
* reorganize app.lua and its commentsKartik K. Agaram2023-08-261-166/+142
* rename modifier_down to key_downKartik K. Agaram2023-06-051-2/+2
* change how we handle clicks above top marginKartik K. Agaram2023-06-031-0/+1
* wait, fix testsKartik K. Agaram2023-05-301-9/+19
* primitives for writing testsKartik K. Agaram2023-04-111-1/+1
* include a brief reference enabling many useful appsKartik K. Agaram2023-04-091-12/+0
* avoid saving fragments in linesKartik K. Agaram2023-04-011-1/+1
* show count of test failuresKartik K. Agaram2023-04-011-1/+1
* no more Text allocationsKartik K. Agaram2023-04-011-9/+0
* App.width can no longer take a TextKartik K. Agaram2023-04-011-10/+1
* get rid of to_textKartik K. Agaram2023-04-011-1/+9
* bugfix: naming pointsKartik K. Agaram2023-03-261-1/+3
* remove a conditionKartik K. Agaram2023-01-221-1/+1
* clean up a printKartik K. Agaram2023-01-201-1/+0
* deduce test names on failuresKartik K. Agaram2023-01-201-1/+14
* link to default love.run for comparisonKartik K. Agaram2023-01-201-2/+2
* make love event names consistentKartik K. Agaram2022-12-231-7/+7
* undo an ancient hack; be an idiomatic LÖVE appKartik K. Agaram2022-11-271-3/+3
* support mouse clicks in file navigatorKartik K. Agaram2022-09-181-0/+4
* get rid of ugly side-effects in testsKartik K. Agaram2022-09-171-0/+25
* bugfix: save modified files in save directoryKartik K. Agaram2022-09-051-2/+26
91469364d635b6a5eb877b0c4e3333ce'>fa786ea7 ^
b1635a5c ^
33352536 ^

52daf072 ^
33352536 ^

52daf072 ^
33352536 ^
8aeb85f0 ^
52daf072 ^
33352536 ^

52daf072 ^
33352536 ^







52daf072 ^

33352536 ^

b1635a5c ^
33352536 ^

52daf072 ^




fa786ea7 ^
52daf072 ^

8aeb85f0 ^
52daf072 ^











34c84469 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154