Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Macro for easier css value access | bptato | 2021-12-18 | 2 | -36/+32 | |
| | ||||||
* | Move... things | bptato | 2021-12-17 | 3 | -29/+34 | |
| | ||||||
* | More code formatting consistency | bptato | 2021-12-17 | 11 | -22/+21 | |
| | ||||||
* | More deduplication | bptato | 2021-12-17 | 2 | -36/+65 | |
| | ||||||
* | List CSS stuff | bptato | 2021-12-17 | 1 | -2/+10 | |
| | ||||||
* | Simplify layout engine code | bptato | 2021-12-17 | 2 | -111/+92 | |
| | ||||||
* | Length unit fixes | bptato | 2021-12-15 | 2 | -1/+7 | |
| | ||||||
* | Better inline block support | bptato | 2021-12-15 | 3 | -37/+63 | |
| | | | | | | Still needs a refactoring of at least the inline processing algorithm to work somewhat correctly. (how that should be done is another question...) | |||||
* | Initial (and defective) inline-block implementation | bptato | 2021-12-15 | 3 | -39/+79 | |
| | ||||||
* | Simplify code | bptato | 2021-12-15 | 2 | -83/+78 | |
| | ||||||
* | Do not render text outside of buffer | bptato | 2021-12-15 | 2 | -5/+11 | |
| | ||||||
* | Some parser fixes | bptato | 2021-12-15 | 5 | -101/+90 | |
| | ||||||
* | Add roman list style type | bptato | 2021-12-15 | 2 | -18/+37 | |
| | ||||||
* | Use bit fields in cell formatting | bptato | 2021-12-15 | 2 | -17/+52 | |
| | ||||||
* | Refactor enums | bptato | 2021-12-15 | 12 | -164/+161 | |
| | ||||||
* | DL support and BR fixes | bptato | 2021-12-14 | 3 | -18/+31 | |
| | ||||||
* | Support all css length units | bptato | 2021-12-14 | 7 | -81/+130 | |
| | ||||||
* | Fix ":is" function | bptato | 2021-12-14 | 1 | -3/+3 | |
| | ||||||
* | Unicode unordered list markers | bptato | 2021-12-14 | 2 | -5/+5 | |
| | ||||||
* | Remove anonymous block box generation | bptato | 2021-12-14 | 1 | -74/+9 | |
| | | | | | It doesn't really work anyway, and too many things have to be rewritten to make it work | |||||
* | Add lists, function selector fixes | bptato | 2021-12-14 | 9 | -72/+341 | |
| | ||||||
* | Limit display values to those we can actually display | bptato | 2021-12-13 | 1 | -10/+10 | |
| | ||||||
* | Support height, fix margin | bptato | 2021-12-13 | 4 | -14/+43 | |
| | ||||||
* | Support width property | bptato | 2021-12-13 | 4 | -5/+21 | |
| | ||||||
* | Support ::before, ::after pseudo elements | bptato | 2021-12-13 | 7 | -31/+166 | |
| | ||||||
* | Support more colors, config.nim refactoring | bptato | 2021-12-10 | 6 | -63/+238 | |
| | ||||||
* | Support inline style attributes | bptato | 2021-12-10 | 3 | -37/+35 | |
| | ||||||
* | Avoid negative fromx | bptato | 2021-12-05 | 1 | -1/+1 | |
| | ||||||
* | Change configuration format to toml | bptato | 2021-12-05 | 12 | -213/+613 | |
| | ||||||
* | Fix last line not being updated by SwapOutput | bptato | 2021-11-27 | 1 | -0/+5 | |
| | ||||||
* | Implement anonymous block boxes | bptato | 2021-11-26 | 2 | -3/+44 | |
| | | | | Without inline box splitting, for now. | |||||
* | Refactor some parts of the layout engine | bptato | 2021-11-25 | 4 | -135/+144 | |
| | ||||||
* | Fix displayBufferSwapOutput | bptato | 2021-11-24 | 1 | -37/+55 | |
| | ||||||
* | Fix some cursor movement bugs | bptato | 2021-11-23 | 2 | -19/+37 | |
| | ||||||
* | Support CSS word break | bptato | 2021-11-23 | 6 | -111/+254 | |
| | ||||||
* | Add margin to p, fix inline wrapping | bptato | 2021-11-23 | 2 | -1/+6 | |
| | ||||||
* | Allow matching root element, write last buffer display line instantly | bptato | 2021-11-23 | 3 | -6/+9 | |
| | ||||||
* | Fix a refreshDisplay bug | bptato | 2021-11-23 | 1 | -1/+1 | |
| | ||||||
* | Support CSS next- and subsequent sibling combinators | bptato | 2021-11-23 | 4 | -27/+81 | |
| | ||||||
* | Support CSS child combinators | bptato | 2021-11-23 | 2 | -26/+56 | |
| | ||||||
* | Support CSS descendant combinators | bptato | 2021-11-23 | 3 | -38/+110 | |
| | ||||||
* | Bugfixes & documentation | bptato | 2021-11-20 | 6 | -49/+139 | |
| | ||||||
* | Fix delete character | bptato | 2021-11-20 | 1 | -2/+20 | |
| | ||||||
* | Refactor cascading logic and css values | bptato | 2021-11-19 | 6 | -720/+724 | |
| | | | | | applyStylesheets is now in style.nim and computed values etc in values.nim | |||||
* | User stylesheets and applyStylesheets optimizations | bptato | 2021-11-19 | 8 | -119/+224 | |
| | ||||||
* | Ignore final newline in source view | bptato | 2021-11-19 | 1 | -5/+6 | |
| | ||||||
* | Various performance optimizations (...part two) | bptato | 2021-11-19 | 4 | -75/+112 | |
| | ||||||
* | Operation "get rid of FlexibleCell" part one | bptato | 2021-11-19 | 3 | -30/+56 | |
| | ||||||
* | Abstract away FlexibleCell, fix pageUp/pageDown | bptato | 2021-11-15 | 3 | -47/+47 | |
| | ||||||
* | Profiling and more CSS compatibility | bptato | 2021-11-15 | 5 | -13/+31 | |
| |