summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-15CleanupJaakko Keränen
2020-09-15Updated README with macOS notesJaakko Keränen
2020-09-15DocumentWidget: Check current tab for commandsJaakko Keränen
Some commands were being handled by all tabs even though they are relevant only to the current one. IssueID #3
2020-09-15macOS: Diff about a small SDL (2.0.12+) tweakJaakko Keränen
SDL 2.0.12 on macOS currently emulates a regular mouse wheel when swiping on the trackpad, which is not a great experience for GUI apps. Lagrange uses momentum scrolling, so these changes to SDL are needed to enable single-pixel mouse wheel increments.
2020-09-15Updated HelpJaakko Keränen
2020-09-14Bumped version to 0.2Jaakko Keränen
2020-09-14Default sidebar modeJaakko Keränen
Logically the default should be the first sidebar tab.
2020-09-14Updated version historyJaakko Keränen
2020-09-14Removed questionable forced modification of const dataJaakko Keränen
The embedded data blocks were declared as global const variables, but the compiler was forced to initialize them as non-const data. There is no real need to keep these const, so let's not do this.
2020-09-14Updated READMEJaakko Keränen
Specified required OpenSSL version and added a note about git submodules.
2020-09-14Configuring without the_Foundation submoduleJaakko Keränen
2020-09-14Added the_Foundation as a Git submoduleJaakko Keränen
2020-09-14Windows: Open default browser via "cmd.exe start"Jaakko Keränen
This is not a super robust solution, but should work in most cases.
2020-09-13Default set of bookmarks for first runJaakko Keränen
2020-09-13Updated READMEJaakko Keränen
2020-09-13DocumentWidget: Drawing images that have alphaJaakko Keränen
2020-09-13Updated READMEJaakko Keränen
2020-09-13Added repository README and example screenshotJaakko Keränen
2020-09-13Updated version.gmi with 0.1 featuresJaakko Keränen
2020-09-13Updated Help pageJaakko Keränen
2020-09-13Added Kosugi Maru for Japanese textJaakko Keränen
Kosugi Maru is from Google Fonts and licensed used Apache License 2.0.
2020-09-12CleanupJaakko Keränen
2020-09-12DocumentWidget: Drawing marked rangesJaakko Keränen
2020-09-12Paint: Keeping track of the set render targetJaakko Keränen
2020-09-12Text: Slightly fewer render target switchesJaakko Keränen
2020-09-12Added range helperJaakko Keränen
2020-09-12DocumentWidget: Use VisBuf for bufferingJaakko Keränen
2020-09-12VisBuf: Method for marking textures as validJaakko Keränen
2020-09-12ListWidget: CleanupJaakko Keränen
2020-09-12GmDocument: Bolder arrow for linksJaakko Keränen
2020-09-12CopyrightJaakko Keränen
2020-09-12Separated VisBuf from ListWidgetJaakko Keränen
This will be used in DocumentWidget as well.
2020-09-12ListWidget: Tweaking item drawingJaakko Keränen
2020-09-12CleanupJaakko Keränen
2020-09-12ListWidget: CleanupJaakko Keränen
2020-09-11ListWidget: Improved scroll bufferingJaakko Keränen
Using less memory and doing less copying/drawing.
2020-09-11Integer range utilitiesJaakko Keränen
2020-09-11CleanupJaakko Keränen
2020-09-11DocumentWidget: Smooth mouse wheel scrollingJaakko Keränen
2020-09-11XDG: Gemini scheme handler; URLs on the command lineJaakko Keränen
2020-09-11macOS: Handling launch URLs and drop'n'dropJaakko Keränen
Improved drop and drop event handling: multiple dropped files/URLs open in new tabs. The application registers gemini: as a handled URL scheme.
2020-09-10MSYS: Don't install static librariesJaakko Keränen
2020-09-10Fixed switching focus with Tab keyJaakko Keränen
Focus should go from URL bar to lookup results, and only then to the find bar.
2020-09-10SidebarWidget: Show menu only for itemsJaakko Keränen
2020-09-10Linux: Tweaking shortcut keysJaakko Keränen
2020-09-10CleanupJaakko Keränen
2020-09-10CleanupJaakko Keränen
2020-09-10GmCerts: Creating the 'idents' directoryJaakko Keränen
2020-09-09Added header file for keyboard shortcutsJaakko Keränen
2020-09-09InputWidget: Clear selection when text is changedJaakko Keränen