about summary refs log tree commit diff stats
path: root/src/io
Commit message (Collapse)AuthorAgeFilesLines
...
* Refactor enumsbptato2021-12-151-1/+1
|
* Support all css length unitsbptato2021-12-141-1/+1
|
* Support width propertybptato2021-12-131-1/+1
|
* Support ::before, ::after pseudo elementsbptato2021-12-131-3/+9
|
* Support more colors, config.nim refactoringbptato2021-12-101-8/+8
|
* Avoid negative fromxbptato2021-12-051-1/+1
|
* Change configuration format to tomlbptato2021-12-052-1/+1
|
* Fix last line not being updated by SwapOutputbptato2021-11-271-0/+5
|
* Fix displayBufferSwapOutputbptato2021-11-241-37/+55
|
* Fix some cursor movement bugsbptato2021-11-232-19/+37
|
* Allow matching root element, write last buffer display line instantlybptato2021-11-231-0/+1
|
* Fix a refreshDisplay bugbptato2021-11-231-1/+1
|
* Support CSS descendant combinatorsbptato2021-11-231-6/+2
|
* Bugfixes & documentationbptato2021-11-202-23/+16
|
* Refactor cascading logic and css valuesbptato2021-11-191-1/+2
| | | | | applyStylesheets is now in style.nim and computed values etc in values.nim
* User stylesheets and applyStylesheets optimizationsbptato2021-11-191-19/+41
|
* Ignore final newline in source viewbptato2021-11-191-5/+6
|
* Various performance optimizations (...part two)bptato2021-11-192-69/+105
|
* Operation "get rid of FlexibleCell" part onebptato2021-11-192-29/+55
|
* Abstract away FlexibleCell, fix pageUp/pageDownbptato2021-11-152-42/+40
|
* Profiling and more CSS compatibilitybptato2021-11-151-9/+17
|
* Try to output as little as possible with reshapebptato2021-11-151-13/+2
|
* Fix some whitespace bugsbptato2021-11-151-15/+16
|
* Store pixels per character/rowbptato2021-11-142-24/+41
|
* Initial implementation of CSS :hoverbptato2021-11-142-82/+152
|
* Parse ansi escape codes when displaying plain textbptato2021-11-132-63/+146
|
* Refactor output formatting code, drop non-ansi supportbptato2021-11-132-176/+145
|
* Optimized generateFullOutputbptato2021-11-132-147/+160
|
* Implement text-decorationbptato2021-11-132-2/+15
|
* Clean up unused importsbptato2021-11-121-1/+0
|
* Colors, italic, bold, read from pipebptato2021-11-121-4/+44
|
* Layout engine improvements, use author style sheetbptato2021-11-101-69/+54
|
* It's broken but it could be worsebptato2021-11-091-7/+17
|
* Actual layout engine progress plus some bug fixesbptato2021-11-081-17/+47
|
* Another failed attempt at the layout enginebptato2021-11-071-11/+7
|
* Remove composebptato2021-10-031-92/+49
|
* Add RowBox structurebptato2021-10-031-1/+27
|
* Rewrite renderer (still non-functional)bptato2021-08-282-7/+43
|
* Minor changesbptato2021-08-161-0/+1
|
* Get rid of some old code, work on css property handlingbptato2021-08-111-32/+2
|
* Some refactoringbptato2021-08-102-39/+50
|
* Clear buffer before rendering a documentbptato2021-08-081-0/+1
|
* Implement CSS display none in box renderer etc.bptato2021-08-081-0/+9
| | | | | Other changes being bugfixes and a temporary implementation of "view source"
* Reorganize importsbptato2021-08-072-21/+12
|
* HTML display with highly broken box modelbptato2021-08-061-2/+13
|
* More efficient display algorithmsbptato2021-08-061-8/+156
| | | | | | | displayBuffer now only kills lines after a replacement has been outputted. An expermiental procedure displayBufferSwapOutput was also added, it isn't currently used as it's best for small changes like link highlighting.
* Refactoring in buffer.nimbptato2021-08-062-56/+62
|
* Refactor display.nim and twtio.nimbptato2021-08-063-405/+141
|
* Config refactoring, width aware cursor movementbptato2021-08-063-35/+52
|
* Implement new buffer model which supports X coordsbptato2021-08-054-343/+308
| | | | ...also, one can kinda use this as a file viewer now I guess