about summary refs log tree commit diff stats
path: root/drawing.lua
Commit message (Expand)AuthorAgeFilesLines
* dedup points while loading drawing from diskKartik K. Agaram2022-09-031-5/+0
* distinguish consistently between mouse buttons and other buttonsKartik K. Agaram2022-08-231-2/+2
* bugfix: imprecision in drawingKartik K. Agaram2022-08-031-0/+3
* round one coordinateKartik K. Agaram2022-07-301-1/+1
* round coordinates to integers in a few placesKartik K. Agaram2022-07-291-7/+11
* bugfix: online helpKartik K. Agaram2022-07-221-2/+2
* move drawing.starty into line cacheKartik K. Agaram2022-07-201-46/+57
* a more radical attempt at ignoring nil y'sKartik K. Agaram2022-07-131-4/+0
* no, bring back that defenseKartik K. Agaram2022-07-131-0/+4
* a bug I've never run intoKartik K. Agaram2022-07-131-3/+0
* hoist couple of variables outKartik K. Agaram2022-07-131-3/+6
* use available variablesKartik K. Agaram2022-07-131-1/+1
* more idiomatic variable namesKartik K. Agaram2022-07-131-5/+5
* chunking by simple local variableKartik K. Agaram2022-07-131-4/+6
* make local functions look differentKartik K. Agaram2022-07-131-6/+6
* more chunks, same approachKartik K. Agaram2022-07-131-3/+6
* chunk up some long linesKartik K. Agaram2022-07-131-32/+32
* drop final mention of state global beyond main.luaKartik K. Agaram2022-07-121-29/+28
* replace globals with args in a few functionsKartik K. Agaram2022-07-121-71/+74
* correct a mis-named thresholdKartik K. Agaram2022-07-121-2/+2
* drop heavyweight near check on file load/storeKartik K. Agaram2022-07-121-19/+25
* left/right margin -> left/right coordinatesKartik K. Agaram2022-07-121-34/+34
* add state arg to a few functionsKartik K. Agaram2022-07-121-25/+25
* add state arg to few functionsKartik K. Agaram2022-07-121-2/+2
* add state arg to Drawing.updateKartik K. Agaram2022-07-121-7/+7
* add state arg to Drawing.drawKartik K. Agaram2022-07-121-15/+15
* add state arg to Drawing.mouse_releasedKartik K. Agaram2022-07-121-20/+20
* add state arg to Drawing.keychord_pressedKartik K. Agaram2022-07-121-32/+32
* add state arg to Drawing.mouse_pressedKartik K. Agaram2022-07-121-15/+15
* group all editor globalsKartik K. Agaram2022-07-121-94/+94
* make colors easier to editKartik K. Agaram2022-07-111-7/+7
* stop pretending globals are localKartik K. Agaram2022-07-111-4/+0
* make freehand drawings smootherKartik K. Agaram2022-07-051-1/+17
* bugfix: 'escape' to cancel a strokeKartik K. Agaram2022-07-051-1/+6
* right marginKartik K. Agaram2022-06-301-7/+7
* rip out notion of Line_widthKartik K. Agaram2022-06-301-7/+7
* keep drawings within the line width slider as wellKartik K. Agaram2022-06-221-7/+7
* clean upKartik K. Agaram2022-06-171-17/+0
* more precise shape selectionKartik K. Agaram2022-06-171-0/+17
* correct commit f3abc2cbf2Kartik K. Agaram2022-06-171-7/+22
* better handle moving pointsKartik K. Agaram2022-06-171-0/+5
* dead codeKartik K. Agaram2022-06-151-45/+0
* moveKartik K. Agaram2022-06-151-28/+28
* .Kartik K. Agaram2022-06-151-6/+3
* stop recording points for arcsKartik K. Agaram2022-06-151-1/+0
* move current mode indicator slightlyKartik K. Agaram2022-06-151-2/+2
* standardize on ordering of casesKartik K. Agaram2022-06-151-9/+9
* test: moving a pointKartik K. Agaram2022-06-141-13/+4
* tests for drawing polygonsKartik K. Agaram2022-06-141-1/+9
* start writing some tests for drawingsKartik K. Agaram2022-06-141-1/+3
:56:21 +0100 committer hut <hut@lavabit.com> 2010-02-16 02:03:46 +0100 incremented version number and updated pydoc html files' href='/akspecs/ranger/commit/doc/pydoc/ranger.container.commandlist.html?h=v1.7.0&id=34a60763e79546e0f84e30fbcc430632f3dbb39e'>34a60763 ^
4e9450f9 ^

f07bb12f ^





















34a60763 ^
f07bb12f ^

34a60763 ^
f07bb12f ^

34a60763 ^
f07bb12f ^














4c13e1f2 ^








f07bb12f ^
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220