| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix crash when encountering incomplete ANSI codes | Tomas Åkesson | 2023-04-02 | 1 | -6/+6 |
| | | | | | | Add bounds checking before increasing iterator pointer, to prevent incomplete ANSI codes causing iterators going to far. | ||||
| * | Introduce Qt 6 support | Alexey Andreyev | 2023-03-24 | 1 | -0/+5 |
| | | | | | With QT_VERSION_CHECK and core5compat module | ||||
| * | Improves caching api related to urls, implements fragment handling, fixes #237 | Felix "xq" Queißner | 2021-11-20 | 1 | -2/+5 |
| | | |||||
| * | GeminiRenderer: remove empty GeminiDocument class and unused includes | Karol Kosek | 2021-04-11 | 2 | -22/+3 |
| | | |||||
| * | MarkdownRenderer: remove resetFormatting function from blockquotes | Karol Kosek | 2021-04-09 | 1 | -1/+0 |
| | | | | | It caused some spacing issues with nested blockquotes. | ||||
| * | MarkdownRenderer: suppress first block | Karol Kosek | 2021-04-05 | 1 | -1/+1 |
| | | |||||
| * | MarkdownRenderer: apply replacing quotes | Karol Kosek | 2021-04-05 | 1 | -1/+2 |
| | | |||||
| * | Move replace_quotes to renderhelpers | Karol Kosek | 2021-04-05 | 3 | -81/+81 |
| | | |||||
| * | MarkdownRenderer: use blockquotes style from config | Karol Kosek | 2021-04-05 | 1 | -0/+6 |
| | | |||||
| * | MarkdownRenderer: use bullet list style from config | Karol Kosek | 2021-04-05 | 1 | -3/+1 |
| | | |||||
| * | MarkdownRenderer: use unordered list style from config | Karol Kosek | 2021-04-05 | 1 | -4/+5 |
| | | |||||
| * | MarkdownRenderer: follow centering first header option | Karol Kosek | 2021-04-05 | 1 | -1/+11 |
| | | |||||
| * | MarkdownRenderer: use header formatting from config | Karol Kosek | 2021-04-05 | 1 | -0/+3 |
| | | | | | | | | | | Now, resetFormatting() between a header and a list block will add an empty block (because that's what resetFormatting()'s doing), which might look a bit off. I couldn't find a better way to this, since using cursor.movePosition(QTextCursor::NextBlock) won't centre the first header in the next commit. :// | ||||
| * | MarkdownRenderer: add default format parameter to resetFormatting() | Karol Kosek | 2021-04-05 | 1 | -5/+5 |
| | | |||||
| * | MarkdownRenderer: move resetting format to a separate function | Karol Kosek | 2021-04-05 | 1 | -8/+9 |
| | | |||||
| * | MarkdownRenderer: move page_title to RenderState struct | Karol Kosek | 2021-04-05 | 1 | -16/+19 |
| | | |||||
| * | Strip carriage-returns in gemtext | Mike Skec | 2021-03-17 | 1 | -0/+2 |
| | | |||||
| * | Fixes #41. | Felix (xq) Queißner | 2021-03-08 | 1 | -2/+5 |
| | | |||||
| * | Restructures option dialog even more, adds option to strip '<nav>' tags. | Felix (xq) Queißner | 2021-03-08 | 1 | -3/+3 |
| | | |||||
| * | Starts cleaning up the settings UI a bit. | Felix (xq) Queißner | 2021-03-08 | 1 | -6/+0 |
| | | |||||
| * | Fixes missing header. | Felix (xq) Queißner | 2021-03-08 | 1 | -0/+3 |
| | | |||||
| * | New HTML rendering via HTML code generation. | Felix (xq) Queißner | 2021-03-08 | 1 | -211/+100 |
| | | |||||
| * | Experiments. | Felix (xq) Queißner | 2021-03-08 | 1 | -11/+9 |
| | | |||||
| * | Starts to implement new HTML renderer based on gumbo. Everything is a bit ↵ | Felix (xq) Queißner | 2021-03-08 | 5 | -8/+485 |
| | | | | | borked and only trivial documents work correctly. | ||||
| * | Add preference for ANSI escape codes | Mike Skec | 2021-03-07 | 2 | -14/+18 |
| | | |||||
| * | Add multi-line ansi escape sequences | Mike Skec | 2021-03-07 | 5 | -8/+13 |
| | | |||||
| * | GeminiRenderer: basis for ansi rendering in gemtext added | Mike Skec | 2021-03-07 | 1 | -2/+13 |
| | | | | | Only applied to preformatted text currently. Does not work across multiple lines. No preference just yet | ||||
| * | GeminiRenderer: restructure code; makes highlighting work on non-paragraphs | Mike Skec | 2021-03-07 | 1 | -322/+328 |
| | | |||||
| * | Moves all globals into a structure that can be deleted before the app ↵ | Felix (xq) Queißner | 2021-03-06 | 3 | -4/+4 |
| | | | | | exists. Fixes #193. | ||||
| * | Resolves gophermap rendering. Closes #22. | Felix (xq) Queißner | 2021-03-06 | 1 | -12/+20 |
| | | |||||
| * | Fix double line-feed in plain text documents | Mike Skec | 2021-03-01 | 1 | -1/+15 |
| | | |||||
| * | URI fix: mention RFC reference | Mike Skec | 2021-03-01 | 1 | -4/+4 |
| | | | | | also checks if the *authority* is empty rather than the host | ||||
| * | Domain-relative URL fix | Mike Skec | 2021-03-01 | 1 | -1/+12 |
| | | |||||
| * | Add preference for centred H1 | Mike Skec | 2021-02-28 | 1 | -1/+1 |
| | | | | | Also moves the 'enable text width' checkbox to next to the text width option, to save space. | ||||
| * | GeminiRenderer: add centred first H1 capability | Mike Skec | 2021-02-28 | 1 | -1/+16 |
| | | | | | Pref added in next commit | ||||
| * | GeminiRenderer: list indentation fix | Mike Skec | 2021-02-27 | 1 | -1/+3 |
| | | |||||
| * | GeminiRenderer: don't replace quotes in page title | Mike Skec | 2021-02-27 | 1 | -4/+4 |
| | | |||||
| * | More consistent line height in headings and preformatted blocks | Mike Skec | 2021-02-23 | 1 | -0/+9 |
| | | | | | Also updates help.gemini to reflect changes | ||||
| * | Add 'indent size' option | Mike Skec | 2021-02-23 | 3 | -3/+5 |
| | | | | | Also includes some about:help additions | ||||
| * | Fix experimental text highlights | Mike Skec | 2021-02-20 | 1 | -42/+133 |
| | | | | | The that was used to achieve this is a bit messy/crazy, however, it seems to work quite well for all the cases I tested it on. This will finally close #141 | ||||
| * | List item symbol prefernece | Mike Skec | 2021-02-20 | 1 | -1/+1 |
| | | |||||
| * | Improved blockquotes | Mike Skec | 2021-02-16 | 4 | -13/+31 |
| | | |||||
| * | renderhelpers: move global funcs to namespace | Mike Skec | 2021-02-13 | 4 | -10/+11 |
| | | |||||
| * | Margins are now split into seperate horizontal/vertical options | Mike Skec | 2021-02-13 | 6 | -6/+27 |
| | | |||||
| * | GeminiRenderer: fix typographer quote bug | Mike Skec | 2021-02-13 | 1 | -1/+1 |
| | | |||||
| * | add pref for typographer quotes | Mike Skec | 2021-02-13 | 1 | -0/+11 |
| | | | | | Also includes a fix for single-quotes on words like "'till" | ||||
| * | Adds typographer's quotes replacement | Mike Skec | 2021-02-13 | 1 | -7/+78 |
| | | |||||
| * | Add preferences for new gemini formatting options | Mike Skec | 2021-02-10 | 3 | -15/+20 |
| | | |||||
| * | geminirenderer: readibility improvements | Mike Skec | 2021-02-10 | 3 | -4/+35 |
| | | | | | Values are hard-coded at the moment. Need preferences | ||||
| * | MarkdownRenderer: remove redundant reinitialization | Karol Kosek | 2021-01-20 | 1 | -4/+0 |
| | | |||||
