aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-26Fix missed space-to-underscore conversion in lookupPage.pyTerry Truong
2022-05-26Fix bug with searching-for-tile in ancestry-barTerry Truong
2022-05-26Add some enwiki redirect data as alt-namesTerry Truong
2022-05-26Make ancestry-bar scroll-to-end when added toTerry Truong
2022-05-26Trim otol tree to avoid certain slowdownsTerry Truong
Some nodes had multiple ancestors with over 10k children, and jump-searching to them could take almost a minute for vue to load.
2022-05-24Make search suggestions appear during long user-input runsTerry Truong
2022-05-24Do post-collapsing-relayout relayoutTerry Truong
2022-05-24Fix compound-image sub-image misalignmentTerry Truong
2022-05-24Add settings save and reset buttonsTerry Truong
2022-05-24Fix None-indexing bug in server.pyTerry Truong
2022-05-24Upon expand-to-view, remove ancestor other-descendants from layout treeTerry Truong
2022-05-24Add jump-to-searched-node settingTerry Truong
2022-05-24Don't show blank image in info-modal for for compound-image with only 1 ↵Terry Truong
sub-image
2022-05-24For compound-nodes without sub-images, don't use a child imageTerry Truong
2022-05-24Reduce compound-image sub-image movement during transitionTerry Truong
2022-05-24Fix small sql-param mismatch bugTerry Truong
2022-05-24Don't generate compound-image if both sub-images non-existentTerry Truong
2022-05-24Scale/recenter images in compound-imagesTerry Truong
2022-05-24Close welcome message upon other-actionTerry Truong
2022-05-24Clean up tutorial disabled/trigger-action codeTerry Truong
2022-05-24Add feature-use triggers that advance tutorialTerry Truong
2022-05-23Add help modal button that opens tutorialTerry Truong
Needed to add code for skipping tutorial pane's welcome message. Also fixed small unwanted click-propagation bug in SettingsModal.
2022-05-23Make tutorial disable features until introducedTerry Truong
Also add tutorial finish button and close icon
2022-05-23Add tutorial stages, with prev/next buttonsTerry Truong
2022-05-23Add initial tutorial pane contentsTerry Truong
2022-05-23Display separate images tile-info for compound-image nodeTerry Truong
2022-05-23Make settings icon fit-in with search/help/etcTerry Truong
2022-05-23Make small info-modal fixesTerry Truong
2022-05-23Enable vertical wheel-scroll on horizontal ancestry barTerry Truong
2022-05-23Display 'compound images'Terry Truong
Adjust genLinkedImgs.py to associate multiple images to compound-nodes. Adjust server to send multiple image filenames for such nodes. Adjust Tile and TileInfoModal to display those compound-images.
2022-05-22Make ancestor-hiding during searches extend halfway to active-rootTerry Truong
2022-05-22Display multiple descriptions for compound-nodesTerry Truong
2022-05-22Hide more ancestors upon search layout-failureTerry Truong
2022-05-22Up-propgate images for usage in parents without imagesTerry Truong
Also adjust vite config to avoid apparent redundant processing when images are being downloaded.
2022-05-19Unescape EOL alt-name dataTerry Truong
2022-05-19Fix not scrolling to focused nodesTerry Truong
2022-05-18Add wikipedia-link to tile-info displayTerry Truong
Add 'wiki_id' and 'from_dbp' columns to 'descs' table, adjust dbpedia data to include wikipedia IDs, adjust data generations scripts, make server send extra data, and make TileInfo display it.
2022-05-18For dbpedia data, prioritise manual conflict resolutionsTerry Truong
2022-05-17Make reduced tree generation check non-alt-namesTerry Truong
2022-05-17Remove certain same-name alt-namesTerry Truong
2022-05-17Make search suggestions include non-alt-namesTerry Truong
2022-05-17Fix small genDbpData.py typoTerry Truong
2022-05-17Improve enwiki description extractionTerry Truong
Adjust enwiki code to handle single dump file, and add scripts for 'convenient' page-content lookup.
2022-05-15Adjust resize/scroll throttling to reliably include end casesTerry Truong
2022-05-15Load only visible tiles when overflowingTerry Truong
2022-05-15Converted nodes+r_nodes tables into nodes+edges+r_nodes+r_edgesTerry Truong
Conversion avoids encoding node children as JSON strings, and allows for easier querying of edge data. Adjusted server to use new format. Also added some table indexes for common operations.
2022-05-14Add desc-resolution special-case for root nodeTerry Truong
2022-05-14Supplement DBpedia descs with enwiki'sTerry Truong
2022-05-14Use DBpedia data for node descriptionsTerry Truong
Add backend/data/dbpedia/ directory containing scripts and README for obtaining DBpedia data, storing it into a db, converting/adding description data to data.db, and for resolving tol-node DBpedia-node association conflicts (via DBpedia relations, manual listing, etc). Resulted in less (about 3/4 as many) descriptions as with using enwiki, but with notably less mis-associations (eg: node Thor is described as a shrimp instead of a god).
2022-05-13Fix info-modal not display image for composite-nodesTerry Truong