about summary refs log tree commit diff stats
path: root/html
Commit message (Collapse)AuthorAgeFilesLines
* 3897 - various updates to documentationKartik K. Agaram2017-05-2963-1180/+1183
|
* 3896Kartik K. Agaram2017-05-291-2/+2
|
* 3895Kartik K. Agaram2017-05-2925-8774/+9151
|
* 3883Kartik K. Agaram2017-05-2717-1740/+1977
|
* 3879Kartik K. Agaram2017-05-263-64/+58
|
* 3878Kartik K. Agaram2017-05-261-105/+108
|
* 3877Kartik K. Agaram2017-05-2640-446/+441
|
* 3876Kartik K. Agaram2017-05-213-369/+377
| | | | Thanks Ella Couch for reporting this issue.
* 3875Kartik K. Agaram2017-05-214-978/+977
|
* 3872Kartik K. Agaram2017-05-202-506/+521
| | | | Starting to look for lack of organization in the edit/ app.
* 3871Kartik K. Agaram2017-05-207-911/+905
| | | | | | | | Strange race condition: if I repeatedly press <enter> and <backspace> so the screen is constantly playing catch up, it will sometimes fail these assertions when it does eventually catch up. Somehow the cursor ends up misplaced. Let's just take them out. It's likely some low-level implementation detail of the terminal.
* 3870 - seldom draw both sides of edit/Kartik K. Agaram2017-05-208-526/+533
|
* 3869Kartik K. Agaram2017-05-198-2603/+2731
| | | | Clean up a few superficial things in Caleb's commit.
* 3867Kartik K. Agaram2017-05-1927-6281/+6313
|
* 3856Kartik K. Agaram2017-05-138-448/+449
| | | | | Bugfix on commit 3853: clear `render-all-on-no-more-events` once you've actually run the `render-all`.
* 3855Kartik K. Agaram2017-05-1318-3501/+3679
|
* 3849Kartik K. Agaram2017-05-101-356/+356
|
* 3848Kartik K. Agaram2017-05-062-150/+147
| | | | | Improve an error message. Still lots of room for improving how we render reagents in errors.
* 3847Kartik K. Agaram2017-05-062-149/+157
| | | | | Fix a crash on an invalid program. Thanks Lakshman Swaminathan for reporting this issue.
* 3845Kartik K. Agaram2017-05-0625-1457/+1364
|
* 3840Kartik K. Agaram2017-04-202-1549/+1547
| | | | | | | | Fix CI. Our previous approach was breaking because a test was generating different results depending on what layer you stopped at. Turns out we rename instructions in layer 54. So let's save the original_name in the same layer.
* 3839Kartik K. Agaram2017-04-202-1046/+1048
| | | | | | Fix CI. In the process I also fixed a bug in the tangle/ utility.
* 3838 - further improve an error messageKartik K. Agaram2017-04-201-473/+478
| | | | | | | Expanded instructions don't seem to be worth the space they take up. Let people think through the types of variables for themselves. Thanks again to Ella Couch.
* 3837Kartik K. Agaram2017-04-1913-1674/+1720
|
* 3831Kartik K. Agaram2017-04-183-7/+7
| | | | Fix CI.
* 3830 - crosslink shape-shifting containers in htmlKartik K. Agaram2017-04-1826-565/+565
|
* 3829Kartik K. Agaram2017-04-1811-1345/+1345
|
* 3825Kartik K. Agaram2017-04-1618-3654/+3535
|
* 3823Kartik K. Agaram2017-04-148-1561/+1571
|
* 3820Kartik K. Agaram2017-04-1318-2561/+2609
|
* 3813Kartik K. Agaram2017-04-041-4/+4
|
* 3812Kartik K. Agaram2017-04-041-3/+3
| | | | Fix CI.
* 3811Kartik K. Agaram2017-04-043-4/+4
|
* 3810Kartik K. Agaram2017-04-043-17/+17
| | | | | | | Stop naming 'jump' instructions in their errors since they're so often rewritten from 'break' or 'loop' instructions. Thanks Lakshman Swaminathan for running into this issue.
* 3809Kartik K. Agaram2017-04-043-229/+230
|
* 3808 - 'length' for duplex listsKartik K. Agaram2017-03-314-762/+777
|
* 3806Kartik K. Agaram2017-03-211-60/+55
|
* 3805Kartik K. Agaram2017-03-201-204/+246
|
* 3804Kartik K. Agaram2017-03-201-2/+2
| | | | Drop the inaccurate cross-links to 'truncate' everywhere.
* 3803Kartik K. Agaram2017-03-203-223/+222
|
* 3802 - more accurate sandbox resultsKartik K. Agaram2017-03-202-480/+501
| | | | Thanks Lakshman Swaminathan for reporting this issue.
* 3801Kartik K. Agaram2017-03-201-5/+5
|
* 3800Kartik K. Agaram2017-03-181-449/+469
|
* 3799Kartik K. Agaram2017-03-182-3/+3
|
* 3798 - trace-browser: make search like in viKartik K. Agaram2017-03-151-439/+460
|
* 3797Kartik K. Agaram2017-03-1510-740/+738
|
* 3796Kartik K. Agaram2017-03-143-874/+893
| | | | | | Standardize the order of some common blocks in `render`, `render-text` and `render-code`. This is preparation for trying to reorganize them to reduce duplicate code.
* 3794Kartik K. Agaram2017-03-141-2/+2
| | | | Fix a _very_ misleading comment.
* 3793Kartik K. Agaram2017-03-144-910/+910
| | | | | | Move 'render-code' to the layer where it's used. Thanks Caleb Couch for finding this bit of ugliness.
* 3792Kartik K. Agaram2017-03-121-267/+292
| | | | | | | Bugfix: make sure 'print 0, 0' always does the right thing, no matter how it's overloaded. Thanks Ella Couch for reporting this.