Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 1861 - bugfix: saving sandboxes | Kartik K. Agaram | 2015-07-27 | 1 | -0/+2 |
| | | | | Still no tests for save/restore. Gigantic hacks. | ||||
* | 1860 - new primitive: $system | Kartik K. Agaram | 2015-07-27 | 5 | -195/+217 |
| | | | | Also reorganize my miscellaneous hacky primitives. | ||||
* | 1859 | Kartik K. Agaram | 2015-07-27 | 1 | -1/+1 |
| | |||||
* | 1858 - switch from F10 to F4 | Kartik K. Agaram | 2015-07-27 | 1 | -37/+37 |
| | | | | F10 seems to be a popular keybinding in the window manager. | ||||
* | 1857 - editor supports autoindent | Kartik K. Agaram | 2015-07-27 | 1 | -4/+80 |
| | |||||
* | 1856 | Kartik K. Agaram | 2015-07-26 | 1 | -2/+3 |
| | |||||
* | 1855 | Kartik K. Agaram | 2015-07-26 | 1 | -5/+5 |
| | |||||
* | 1854 - 'tab' key support | Kartik K. Agaram | 2015-07-26 | 1 | -4/+33 |
| | |||||
* | 1853 | Kartik K. Agaram | 2015-07-25 | 69 | -2104/+2579 |
| | |||||
* | 1852 | Kartik K. Agaram | 2015-07-25 | 1 | -1/+1 |
| | |||||
* | 1851 | Kartik K. Agaram | 2015-07-25 | 1 | -2/+2 |
| | |||||
* | 1850 - fix a warning on 32-bit systems | Kartik K. Agaram | 2015-07-25 | 1 | -1/+1 |
| | |||||
* | 1849 | Kartik K. Agaram | 2015-07-25 | 5 | -49/+4 |
| | |||||
* | 1848 - core instructions now check for ingredients | Kartik K. Agaram | 2015-07-25 | 28 | -154/+358 |
| | | | | Also standardized warnings. | ||||
* | 1847 | Kartik K. Agaram | 2015-07-25 | 1 | -2/+2 |
| | |||||
* | 1846 | Kartik K. Agaram | 2015-07-25 | 3 | -6/+6 |
| | |||||
* | 1845 - never ever redefine the scenario's recipe | Kartik K. Agaram | 2015-07-25 | 2 | -7/+27 |
| | | | | | | A couple of times now I've accidentally named a scenario the same thing as a recipe inside it that I define using 'run' or something. The resulting infinite loop is invariably non-trivial to debug. | ||||
* | 1844 - explicitly end each trace line | Kartik K. Agaram | 2015-07-25 | 29 | -203/+205 |
| | | | | | | | | | More verbose, but it saves trouble when debugging; there's never something you thought should be traced but just never came out the other end. Also got rid of fatal errors entirely. Everything's a warning now, and code after a warning isn't guaranteed to run. | ||||
* | 1843 | Kartik K. Agaram | 2015-07-24 | 1 | -0/+4 |
| | |||||
* | 1842 - get layers building again after 2 weeks | Kartik K. Agaram | 2015-07-24 | 6 | -121/+120 |
| | | | | | Also, turns out I haven't been building 999spaces.cc in my default build. Now fixed. | ||||
* | 1841 - reenable old layers | Kartik K. Agaram | 2015-07-24 | 2 | -9/+16 |
| | |||||
* | 1840 | Kartik K. Agaram | 2015-07-24 | 1 | -1/+0 |
| | |||||
* | 1839 - clear entire screen on F10 | Kartik K. Agaram | 2015-07-24 | 1 | -2/+14 |
| | | | | | Just in case we had many lines of warnings before that are now cleared up. Again, I'm feeling confident enough to not write a test. | ||||
* | 1838 | Kartik K. Agaram | 2015-07-24 | 1 | -17/+19 |
| | |||||
* | 1837 | Kartik K. Agaram | 2015-07-24 | 1 | -4/+4 |
| | | | | | | Don't die on unbalanced '{'. I won't bother adding more tests for warnings. Suffice it to say that we need to gradually eliminate all asserts that check for illegal mu code. | ||||
* | 1836 | Kartik K. Agaram | 2015-07-24 | 1 | -2/+8 |
| | |||||
* | 1835 | Kartik K. Agaram | 2015-07-24 | 1 | -3/+12 |
| | |||||
* | 1834 | Kartik K. Agaram | 2015-07-24 | 1 | -4/+8 |
| | |||||
* | 1833 | Kartik K. Agaram | 2015-07-24 | 1 | -1/+8 |
| | |||||
* | 1832 | Kartik K. Agaram | 2015-07-24 | 4 | -3/+38 |
| | |||||
* | 1831 | Kartik K. Agaram | 2015-07-24 | 1 | -0/+28 |
| | |||||
* | 1830 | Kartik K. Agaram | 2015-07-23 | 4 | -7/+10 |
| | |||||
* | 1829 | Kartik K. Agaram | 2015-07-23 | 3 | -7/+38 |
| | |||||
* | 1828 | Kartik K. Agaram | 2015-07-23 | 1 | -6/+6 |
| | |||||
* | 1827 | Kartik K. Agaram | 2015-07-23 | 1 | -2/+2 |
| | |||||
* | 1826 - edit: start carefully showing all errors | Kartik K. Agaram | 2015-07-21 | 4 | -4/+55 |
| | | | | | | | | | | | | | | | | | | | | | Eventually we might be able to get rid of die entirely. This is just a preliminary stab at a random error. In the process I ran into two issues that have impeded debugging before: a) Naming conflicts within scenarios are a real no-no. I need to warn on them, but the rules are getting complicated: Always print warnings on redefine But not in interactive mode Or in scenarios checking warning behavior Unless the scenario recipe itself is overridden b) Now that we've added collect_layers and a long time can go between traces, debugging is a minefield because trace lines don't print to screen immediately after they're created. Need to do something about that. Maybe explicitly trigger collection by tracing '\n' or something. These are the next two items on my todo list. | ||||
* | 1825 | Kartik K. Agaram | 2015-07-21 | 1 | -0/+10 |
| | |||||
* | 1824 | Kartik K. Agaram | 2015-07-20 | 1 | -1/+2 |
| | |||||
* | 1823 - restore sandboxes from previous session | Kartik K. Agaram | 2015-07-19 | 2 | -7/+43 |
| | | | | | | Starting to feel some need to test this persistence support. Next time I'll create a fake storage handle and support for 'assume-storage filename'. | ||||
* | 1822 | Kartik K. Agaram | 2015-07-19 | 3 | -11/+11 |
| | |||||
* | 1821 | Kartik K. Agaram | 2015-07-19 | 1 | -82/+82 |
| | |||||
* | 1820 | Kartik K. Agaram | 2015-07-19 | 1 | -2/+2 |
| | |||||
* | 1819 | Kartik K. Agaram | 2015-07-18 | 1 | -0/+0 |
| | | | | How did this image get corrupted? | ||||
* | 1818 | Kartik K. Agaram | 2015-07-18 | 28 | -382/+1785 |
| | |||||
* | 1817 - save for sandboxes | Kartik K. Agaram | 2015-07-18 | 2 | -10/+34 |
| | | | | | | | No restore. We'll have to do that manually for the first lesson. The version control is also super ugly; every save creates a new commit. But that's ok; version control is just the backup of last resort. | ||||
* | 1816 - ack, accidental namespace collision | Kartik K. Agaram | 2015-07-18 | 2 | -5/+5 |
| | |||||
* | 1815 - git commit only if lesson/.git exists | Kartik K. Agaram | 2015-07-18 | 1 | -0/+10 |
| | | | | | We want to avoid accidentally mixing lessons into ourselves. Require users to git-enable it first. | ||||
* | 1814 - save code in editor | Kartik K. Agaram | 2015-07-18 | 5 | -14/+62 |
| | | | | | | | Very rudimentary ability to read/write from file+version control. No control over name. Recipes now saved. But what to do about sandboxes? | ||||
* | 1813 - ignore strings when highlighting | Kartik K. Agaram | 2015-07-18 | 1 | -116/+2 |
| | | | | | Otherwise can't use colors inside recipes! This will do for now, until we start distinguishing '[' at end of line. | ||||
* | 1812 - brighter comment color | Kartik K. Agaram | 2015-07-18 | 1 | -5/+5 |
| |