summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * Remove invalid file name characters from Anki media files (#496)toasted-nutbread2020-05-06
| | | | | | | | | | * Replace invalid file name characters * Replace "filename" with "fileName"
| * Text selection fixes (#511)siikamiika2020-05-07
| | | | | | | | | | * select matched text in Frontend.findKanji * blur search query input when setting content
| * Fix modifier key condition data (#506)siikamiika2020-05-06
| | | | | | | | | | | | | | | | | | | | | | | | | | * save transformed data for modifier key conditions * validate transformed input * fix regression * undo rename * refactor transformInput handling * don't overwrite value with null
| * support meta as scanning modifier (#502)siikamiika2020-05-05
| |
| * Extract textSource text inside TextScanner (#500)siikamiika2020-05-05
| | | | | | | | | | * extract text inside TextScanner * clone textSource before text extraction
| * Modifier key profile condition (#487)siikamiika2020-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update Frontend options on modifier change * add modifier key profile condition * use select element for modifier condition value * support "is" and "is not" modifier key conditions * use plural * remove dead null check it's never null in that function * pass element on rather than assigning to this * rename event * remove Firefox OS key to Meta detection * hide Meta from dropdown on Firefox * move input type
| * Fix incorrect static call (#498)toasted-nutbread2020-05-02
| |
| * DOMTextScanner (#458)toasted-nutbread2020-05-02
| | | | | | | | | | | | | | * Create new class for scanning text in a document * Update test styles * Add tests
| * Style fixes (#494)toasted-nutbread2020-05-02
| | | | | | | | | | | | | | * Place multi-line expression parentheses on the correct line * Add function-paren-newline eslint rule * Add some additional eslint rules
| * Validate document nodes before use (#493)toasted-nutbread2020-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | * Validate document.body before use in loadScripts This also fixes an issue where reject wasn't being passed to loadScriptSentinel. * Validate document nodes before use in _getSiteColor * Validate document.body before use in _getViewport * Validate document.body before use in setContentScale * Validate document.body before use in docImposterCreate
| * Catch WrongDocumentError thrown by compareBoundaryPoints (#491)toasted-nutbread2020-05-02
| | | | | | | | | | * Catch WrongDocumentError thrown by compareBoundaryPoints * Filter error based on name
| * Remove and unload the popup frame if an unexpected load occurs (#490)toasted-nutbread2020-05-02
| | | | | | | | | | | | | | | | | | * Remove and unload the popup frame if an unexpected load occurs * Remove unused fields * Only update _injectPromiseComplete if the promise is the most recent one * Remove redundant this._injectPromise !== null check
| * Don't parent the popup frame to elements which cause unload (#488)toasted-nutbread2020-05-02
| |
| * Object property accessor API update (#485)toasted-nutbread2020-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Simplify function names * Add delete and swap functions * Remove custom setter Not currently part of the expected use cases. * Add documentation * Update tests * Add delete test functions * Update tests to use fresh objects * Add swap test functions * Add empty tests * Disable delete on arrays
| * Api invoke with progress (#483)toasted-nutbread2020-05-02
| | | | | | | | | | | | | | * Create an internal API function to open a port * Create system for running actions over a special port * Don't assign in expression
| * Refactor frontend API classes (#482)toasted-nutbread2020-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | * Mark functions as private * Remove constructor side effects * Use safer handler invocation * Mark functions as private * Mark fields as private * Update BackendApiForwarder public API
| * Anki audio download (#477)toasted-nutbread2020-05-02
| | | | | | | | | | | | | | * Update how audio is added to Anki cards * Upgrade Anki templates * Update comments
| * Remove Frontend inheritance (#486)toasted-nutbread2020-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Make Frontend use composition instead of inheritance for TextScanner * Use push instead of concat * Update setOptions and setEnabled APIs * Update how onWindowMessage event listener is added/removed * Rename options to _options * Use bind instead of arrow function * Fix selection being cleared due to settings changes
| * Add helpful link for markers in settings.html (#489)Allan Wirth2020-05-01
| |
| * Add duplicateScope: 'deck' option (#476)toasted-nutbread2020-04-27
| | | | | | | | | | | | | | | | | | * Add duplicateScope: 'deck' option * Add option to control duplicate scope * Use duplicateScope for findNoteIds * Update location of quotes
| * Frontend refactor (part 1) (#484)toasted-nutbread2020-04-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove _getVisualViewportScale * Use super's mouse event listener definitions * Remove redundant override * Remove getTouchEventListeners override * Rename Display.onSearchClear to onEscape * Change onSearchClear to clearSelection and use an event * Update how text is marked for selection and deselection * Replace onError with yomichan.logError * Update setEnabled to refresh all event listeners
| * Use dynamicLoader for main (#481)toasted-nutbread2020-04-26
| | | | | | | | | | * Update style of search-main and float-main to have better parity * Use dynamicLoader to inject scripts and CSS
| * Add Yomichan icon SVG (#478)toasted-nutbread2020-04-26
| | | | | | | | | | | | | | * Create Yomichan icon SVG and 32x32 PNG * Update icons * Add 32x32 icon definition to HTML pages
| * Error logging refactoring (#454)toasted-nutbread2020-04-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Create new logging methods on yomichan object * Use new yomichan.logError instead of global logError * Remove old logError * Handle unhandledrejection events * Add addEventListener stub * Update log function * Update error conversion to support more types * Add log event * Add API log function * Log errors to the backend * Make error/warning logs update the badge * Clear log error indicator on extension button click * Log correct URL on the background page * Fix incorrect error conversion * Remove unhandledrejection handling Firefox doesn't support it properly. * Remove unused argument type from log function * Improve function name * Change console.warn to yomichan.logWarning * Move log forwarding initialization into main scripts
| * Update Popup and DisplayFloat optionsContext from Frontend (#464)siikamiika2020-04-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * set optionsContext from Frontend * update Popup+Display options on Frontend change * remove popup setOptions * only update DisplayFloat options from Frontend * fix optionsContext usage * fix preview frame arguments * keep Frontend URL up to date * cache url * fix preview frame * trigger modifyingProfileChange in correct places * remove async from function not using await * refactor optionsContext in Frontend
| * Merge pull request #472 from toasted-nutbread/fix-pitch-accent-high-calculationtoasted-nutbread2020-04-23
| |\ | | | | | | Fix high pitch calculation
| | * Update teststoasted-nutbread2020-04-22
| | |
| | * Fix high pitch calculationtoasted-nutbread2020-04-22
| | |
| * | Merge pull request #467 from toasted-nutbread/dynamic-loadertoasted-nutbread2020-04-23
| |\ \ | | | | | | | | Create dynamic script/CSS loader utility
| | * | Remove sentinel script node after loadtoasted-nutbread2020-04-22
| | | |
| | * | Create dynamic script/CSS loader utilitytoasted-nutbread2020-04-21
| | |/
| * | Merge pull request #463 from toasted-nutbread/explicit-entry-pointtoasted-nutbread2020-04-23
| |\ \ | | | | | | | | Explicit entry points
| | * | Use IIFE for entry pointstoasted-nutbread2020-04-22
| | | |
| | * | Move popup-nested content into float-maintoasted-nutbread2020-04-21
| | | |
| | * | Create float-main.jstoasted-nutbread2020-04-19
| | | |
| | * | Create popup-preview-frame-main.jstoasted-nutbread2020-04-19
| | | |
| | * | Rename search-frontend.js to search-main.jstoasted-nutbread2020-04-19
| | | | | | | | | | | | | | | | Also move DisplaySearch creation into the main() function.
| | * | Rename context.js to context-main.jstoasted-nutbread2020-04-19
| | | |
| | * | Create background-main.jstoasted-nutbread2020-04-19
| | | |
| | * | Change frontend-initialize.js to content-script-main.jstoasted-nutbread2020-04-19
| | | |
| * | | Merge pull request #474 from siikamiika/fix-custom-anki-templatessiikamiika2020-04-24
| |\ \ \ | | | | | | | | | | fix custom anki templates
| | * | | fix custom anki templatessiikamiika2020-04-23
| |/ / /
| * | / Pitch accent support now available everywhereAlex Yatskov2020-04-22
| | |/ | |/|
| * | Merge pull request #466 from toasted-nutbread/wanakana-globaltoasted-nutbread2020-04-21
| |\ \ | | |/ | |/| Use wanakana object directly
| | * Use wanakana object directlytoasted-nutbread2020-04-20
| |/
| * Merge pull request #446 from toasted-nutbread/dictionary-imagestoasted-nutbread2020-04-19
| |\ | | | | | | Dictionary images
| | * Change some test variables using 'source' instead of 'content'toasted-nutbread2020-04-19
| | |
| | * Change some more variables using 'source' instead of 'content'toasted-nutbread2020-04-19
| | |
| | * Add documentationtoasted-nutbread2020-04-19
| | |
| | * Rename loadImage to loadImageBase64 for claritytoasted-nutbread2020-04-19
| | |