about summary refs log tree commit diff stats
path: root/file.lua
Commit message (Collapse)AuthorAgeFilesLines
* avoid some string concatenationsKartik K. Agaram2022-06-101-6/+6
| | | | | | | | file:write can write multiple args one after another; no need to concatenate them first. I'm starting to pay attention to memory usage after the experience of turning off the JIT.
* ignore 'deleted' shapes when saving to diskKartik K. Agaram2022-05-301-0/+6
|
* typosKartik K. Agaram2022-05-251-2/+2
|
* couple more testsKartik K. Agaram2022-05-251-1/+1
| | | | Along with the App helpers needed for them.
* first successful pagedown test, first bug found by testKartik K. Agaram2022-05-231-3/+9
| | | | | | | | | | | | | | | | | | | I also really need to rethink how people debug my programs. My approach of inserting and deleting print() takes a lot of commitment. I need my old trace-based whitebox testing idea. However, in my past projects I never did figure out a good framework for tweaking how verbose a trace to emit. Perhaps that's too many knobs. Perhaps we just need a way to run a single test with the most verbose trace possible. Then it's just a matter of having the trace tell a coherent story? But even if the trace stays out of program output in that situation, it's still in the programmer's face in the _code_. Ugh. Current plan: ship program with maximum tests and zero commented-out prints. If you want to debug, insert prints. This is better than previous, text-mode, projects just by virtue of the stdout channel being dedicated to debug stuff.
* first test!Kartik K. Agaram2022-05-221-0/+56
|
* support for naming pointsKartik K. Agaram2022-05-211-1/+11
| | | | There's still an absence of affordance showing when you're in naming mode.
* bugfix: rectangles and squares are now savedKartik K. Agaram2022-05-211-2/+8
|
* several more modulesKartik K. Agaram2022-05-171-0/+88
This is probably not ideal; let's see how it goes..
> 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327