aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-07-11Update backend documentationTerry Truong
2022-07-11Make backend dev server script serve the image filesTerry Truong
Previously, image files in backend/data/img were moved to, or symlinked from, public/. This needed to be changed before each build, otherwise vite would end up copying gigabytes of images.
2022-07-10Update project-level and client-side documentationTerry Truong
2022-07-10Add preload <link> for fontTerry Truong
2022-07-10Add meta tags for SEOTerry Truong
2022-07-10Add scrollbar colorsTerry Truong
2022-07-10Add FAQs section to help infoTerry Truong
2022-07-10Add processing indicatorTerry Truong
2022-07-10Add onActionStart() and onActionEnd()Terry Truong
2022-07-09Add some non-monophyletic-name info in help-sectionTerry Truong
2022-07-09Make clicking 'Tilo' collapse the treeTerry Truong
2022-07-09Fix jump-to-overflowing after startup producing collapsed nodeTerry Truong
Turns out the closing of the tutorial-pane triggered a relayoutWithCollapse() which collapsed the node.
2022-07-09Fix search suggestions wrong-text on mobileTerry Truong
Turns out the input wasn't converted to lowercase before being matched with suggestion data, and this was more noticeable on mobile due to auto-capitalisation
2022-07-09Fix links-to-node failing on loadTerry Truong
Was setting SERVER_URL incorrectly Also changed server API to include 'excl' param
2022-07-09Replace CGI script with WSGI script and dev serverTerry Truong
2022-07-08Revert back to using vite-proxy for avoiding CORS issuesTerry Truong
2022-07-08Send activeRoot to server, for reducing toroot response sizesTerry Truong
2022-07-08Fix jump-to-direct-child-of-ancestor layout-failTerry Truong
2022-07-08Hard-code root-name in cgi scriptTerry Truong
2022-07-08Adjust SCollapsible, allowing for v-model and @openTerry Truong
2022-07-07Fix corner-squished retained-overflow on resize-to-largerTerry Truong
2022-07-07Adapt loading-modal to show other messagesTerry Truong
Was intending to add 'Arranging tiles' and 'Rendering tiles' messages, but they wouldn't trigger during 'uncontrived' test cases, including with throttled CPU
2022-07-07Add auto-hiding of ancestors on leaf-clickTerry Truong
2022-07-07Use subAction parameter to simplify action-functionsTerry Truong
Stop using @transitionend in Tile, as it seems oddly unreliable (using @transitioncancel as well didn't help)
2022-07-07Only relayout once during tut_pane/ancestry_bar transitionsTerry Truong
2022-07-07Add somewhat-dynamic font-sizes in headersTerry Truong
2022-07-06During tutorial, avoid disabling actions the user has already usedTerry Truong
For auto-mode and search, enable prerequisite actions when used
2022-07-06Smoothen initial loading where URL has target nodeTerry Truong
2022-07-06Use URLSearchParams instead of plain stringsTerry Truong
2022-07-06Add link-to-node functionalityTerry Truong
2022-07-05Remove some redundant display:block specifiersTerry Truong
2022-07-05Add loading-from-server indicatorTerry Truong
2022-07-05Revert to showing px in settings instead of mmTerry Truong
With mm, moving the slider would sometimes leave the value unchanged
2022-07-05Fix unreliable touch-detection on mobile-mode-swapTerry Truong
2022-07-05Fix SCollapsible sometimes not fully expandingTerry Truong
2022-07-05Add licensing informationTerry Truong
2022-07-05Add images to help informationTerry Truong
2022-07-04Update IconButton to maintain equal width/heightTerry Truong
2022-07-04Add help-info contentTerry Truong
2022-07-03Add SCollapsible componentTerry Truong
Also update info-modal source-info styling
2022-07-03Add styling, mainly for TileInfoModal and SettingsTerry Truong
2022-07-02Adjust tutorial contentTerry Truong
2022-07-02For the 'images' reduced tree, trim from many-child nodesTerry Truong
2022-07-01Do more 'collapsible' node trimming in 'images' reduced-treeTerry Truong
2022-07-01Fix abruptness/cancellation of an expansion done quickly after a ↵Terry Truong
tree-setting change
2022-07-01For the 'images' reduced tree, remove composite nodesTerry Truong
2022-07-01Fix parent-swept-tiles flash-after-unhidden bugTerry Truong
2022-07-01Account for compound-node info-lookup sub-name-denoted node absenceTerry Truong
Return a null entry in such cases, and have client indicate this with tile-info message.
2022-07-01Generate 3 reduced trees, keeping the original, and serve only thoseTerry Truong
Generate a 'trimmed' reduced tree instead of changing the original. Generate an 'images-only' reduced tree, and use it as the default. Combine 'picked' reduced tree code with that of other reduced trees. Adapt server API to allow selecting between more than 2 trees. Add client setting for selecting between 3 trees.
2022-06-30Avoid displaying empty img-src infoTerry Truong