@internetarchive/bookreader 5.0.0-9 → 5.0.0-91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +21 -19
- package/.github/workflows/node.js.yml +76 -11
- package/.github/workflows/npm-publish.yml +6 -20
- package/.testcaferc.js +10 -0
- package/BookReader/BookReader.css +404 -1125
- package/BookReader/BookReader.js +1 -1
- package/BookReader/BookReader.js.LICENSE.txt +20 -20
- package/BookReader/BookReader.js.map +1 -1
- package/BookReader/ia-bookreader-bundle.js +1782 -0
- package/BookReader/ia-bookreader-bundle.js.LICENSE.txt +7 -0
- package/BookReader/ia-bookreader-bundle.js.map +1 -0
- package/BookReader/icons/1up.svg +1 -1
- package/BookReader/icons/2up.svg +1 -1
- package/BookReader/icons/advance.svg +1 -1
- package/BookReader/icons/chevron-right.svg +1 -1
- package/BookReader/icons/close-circle-dark.svg +1 -1
- package/BookReader/icons/close-circle.svg +1 -1
- package/BookReader/icons/fullscreen.svg +1 -1
- package/BookReader/icons/fullscreen_exit.svg +1 -1
- package/BookReader/icons/hamburger.svg +1 -1
- package/BookReader/icons/left-arrow.svg +1 -1
- package/BookReader/icons/magnify-minus.svg +1 -1
- package/BookReader/icons/magnify-plus.svg +1 -1
- package/BookReader/icons/magnify.svg +1 -1
- package/BookReader/icons/pause.svg +1 -1
- package/BookReader/icons/play.svg +1 -1
- package/BookReader/icons/playback-speed.svg +1 -1
- package/BookReader/icons/read-aloud.svg +1 -1
- package/BookReader/icons/review.svg +1 -1
- package/BookReader/icons/thumbnails.svg +1 -1
- package/BookReader/icons/voice.svg +1 -0
- package/BookReader/icons/volume-full.svg +1 -1
- package/BookReader/images/BRicons.svg +3 -3
- package/BookReader/images/books_graphic.svg +1 -1
- package/BookReader/images/icon_book.svg +1 -1
- package/BookReader/images/icon_bookmark.svg +1 -1
- package/BookReader/images/icon_gear.svg +1 -1
- package/BookReader/images/icon_hamburger.svg +1 -1
- package/BookReader/images/icon_home.svg +1 -1
- package/BookReader/images/icon_info.svg +1 -1
- package/BookReader/images/icon_one_page.svg +1 -1
- package/BookReader/images/icon_pause.svg +1 -1
- package/BookReader/images/icon_play.svg +1 -1
- package/BookReader/images/icon_playback-rate.svg +1 -1
- package/BookReader/images/icon_search_button.svg +1 -1
- package/BookReader/images/icon_share.svg +1 -1
- package/BookReader/images/icon_skip-ahead.svg +1 -1
- package/BookReader/images/icon_skip-back.svg +1 -1
- package/BookReader/images/icon_speaker.svg +1 -1
- package/BookReader/images/icon_speaker_open.svg +1 -1
- package/BookReader/images/icon_thumbnails.svg +1 -1
- package/BookReader/images/icon_toc.svg +1 -1
- package/BookReader/images/icon_two_pages.svg +1 -1
- package/BookReader/images/marker_chap-off.svg +1 -1
- package/BookReader/images/marker_chap-on.svg +1 -1
- package/BookReader/images/marker_srch-on.svg +1 -1
- package/BookReader/images/unviewable_page.png +0 -0
- package/BookReader/jquery-3.js +2 -0
- package/BookReader/jquery-3.js.LICENSE.txt +24 -0
- package/BookReader/plugins/plugin.archive_analytics.js +1 -1
- package/BookReader/plugins/plugin.archive_analytics.js.map +1 -1
- package/BookReader/plugins/plugin.autoplay.js +1 -1
- package/BookReader/plugins/plugin.autoplay.js.map +1 -1
- package/BookReader/plugins/plugin.chapters.js +25 -1
- package/BookReader/plugins/plugin.chapters.js.LICENSE.txt +1 -0
- package/BookReader/plugins/plugin.chapters.js.map +1 -1
- package/BookReader/plugins/plugin.iframe.js +1 -1
- package/BookReader/plugins/plugin.iframe.js.map +1 -1
- package/BookReader/plugins/plugin.iiif.js +2 -0
- package/BookReader/plugins/plugin.iiif.js.map +1 -0
- package/BookReader/plugins/plugin.resume.js +1 -1
- package/BookReader/plugins/plugin.resume.js.map +1 -1
- package/BookReader/plugins/plugin.search.js +2 -1
- package/BookReader/plugins/plugin.search.js.LICENSE.txt +1 -0
- package/BookReader/plugins/plugin.search.js.map +1 -1
- package/BookReader/plugins/plugin.text_selection.js +2 -1
- package/BookReader/plugins/plugin.text_selection.js.LICENSE.txt +1 -0
- package/BookReader/plugins/plugin.text_selection.js.map +1 -1
- package/BookReader/plugins/plugin.tts.js +1 -1
- package/BookReader/plugins/plugin.tts.js.LICENSE.txt +2 -0
- package/BookReader/plugins/plugin.tts.js.map +1 -1
- package/BookReader/plugins/plugin.url.js +1 -1
- package/BookReader/plugins/plugin.url.js.map +1 -1
- package/BookReader/plugins/plugin.vendor-fullscreen.js +1 -1
- package/BookReader/plugins/plugin.vendor-fullscreen.js.map +1 -1
- package/BookReader/webcomponents-bundle.js +3 -0
- package/BookReader/webcomponents-bundle.js.LICENSE.txt +9 -0
- package/BookReader/webcomponents-bundle.js.map +1 -0
- package/BookReaderDemo/BookReaderDemo.css +18 -19
- package/BookReaderDemo/BookReaderJSAdvanced.js +0 -3
- package/BookReaderDemo/BookReaderJSSimple.js +1 -0
- package/BookReaderDemo/IADemoBr.js +144 -0
- package/BookReaderDemo/demo-advanced.html +2 -2
- package/BookReaderDemo/demo-embed-iframe-src.html +2 -1
- package/BookReaderDemo/demo-fullscreen-mobile.html +3 -5
- package/BookReaderDemo/demo-fullscreen.html +2 -4
- package/BookReaderDemo/demo-iiif.html +99 -12
- package/BookReaderDemo/demo-internetarchive.html +214 -18
- package/BookReaderDemo/demo-multiple.html +2 -1
- package/BookReaderDemo/demo-preview-pages.html +526 -525
- package/BookReaderDemo/demo-simple.html +2 -1
- package/BookReaderDemo/demo-vendor-fullscreen.html +2 -4
- package/BookReaderDemo/ia-multiple-volumes-manifest.js +170 -0
- package/BookReaderDemo/immersion-1up.html +2 -2
- package/BookReaderDemo/immersion-mode.html +2 -4
- package/BookReaderDemo/toggle_controls.html +3 -2
- package/BookReaderDemo/view_mode.html +2 -1
- package/BookReaderDemo/viewmode-cycle.html +2 -3
- package/CHANGELOG.md +600 -33
- package/README.md +14 -1
- package/babel.config.js +20 -0
- package/codecov.yml +6 -0
- package/index.html +5 -2
- package/jsconfig.json +19 -0
- package/netlify.toml +9 -0
- package/package.json +70 -62
- package/renovate.json +52 -0
- package/scripts/preversion.js +0 -1
- package/src/BookNavigator/assets/bookmark-colors.js +1 -1
- package/src/BookNavigator/assets/button-base.js +5 -2
- package/src/BookNavigator/assets/ia-logo.js +17 -0
- package/src/BookNavigator/assets/icon_checkmark.js +1 -1
- package/src/BookNavigator/assets/icon_close.js +1 -1
- package/src/BookNavigator/book-navigator.js +590 -0
- package/src/BookNavigator/bookmarks/bookmark-button.js +3 -2
- package/src/BookNavigator/bookmarks/bookmark-edit.js +3 -4
- package/src/BookNavigator/bookmarks/bookmarks-list.js +2 -3
- package/src/BookNavigator/bookmarks/bookmarks-loginCTA.js +4 -9
- package/src/BookNavigator/bookmarks/bookmarks-provider.js +27 -17
- package/src/BookNavigator/bookmarks/ia-bookmarks.js +116 -67
- package/src/BookNavigator/delete-modal-actions.js +1 -1
- package/src/BookNavigator/downloads/downloads-provider.js +36 -21
- package/src/BookNavigator/downloads/downloads.js +29 -25
- package/src/BookNavigator/search/search-provider.js +50 -28
- package/src/BookNavigator/search/search-results.js +24 -10
- package/src/BookNavigator/sharing.js +27 -0
- package/src/BookNavigator/viewable-files.js +95 -0
- package/src/BookNavigator/visual-adjustments/visual-adjustments-provider.js +13 -12
- package/src/BookNavigator/visual-adjustments/visual-adjustments.js +7 -7
- package/src/BookReader/BookModel.js +79 -43
- package/src/BookReader/DragScrollable.js +233 -0
- package/src/BookReader/ImageCache.js +48 -15
- package/src/BookReader/Mode1Up.js +56 -351
- package/src/BookReader/Mode1UpLit.js +388 -0
- package/src/BookReader/Mode2Up.js +73 -1318
- package/src/BookReader/Mode2UpLit.js +777 -0
- package/src/BookReader/ModeCoordinateSpace.js +29 -0
- package/src/BookReader/ModeSmoothZoom.js +312 -0
- package/src/BookReader/ModeThumb.js +19 -13
- package/src/BookReader/Navbar/Navbar.js +70 -54
- package/src/BookReader/PageContainer.js +116 -22
- package/src/BookReader/ReduceSet.js +3 -3
- package/src/BookReader/Toolbar/Toolbar.js +14 -41
- package/src/BookReader/events.js +2 -3
- package/src/BookReader/options.js +75 -15
- package/src/BookReader/utils/HTMLDimensionsCacher.js +44 -0
- package/src/BookReader/utils/ScrollClassAdder.js +31 -0
- package/src/BookReader/utils/SelectionObserver.js +45 -0
- package/src/BookReader/utils/classes.js +1 -1
- package/src/BookReader/utils.js +128 -13
- package/src/BookReader.js +559 -1083
- package/src/BookReaderPlugin.js +44 -0
- package/src/assets/icons/magnify-minus.svg +3 -7
- package/src/assets/icons/magnify-plus.svg +3 -7
- package/src/assets/icons/voice.svg +1 -0
- package/src/assets/images/unviewable_page.png +0 -0
- package/src/css/BookReader.scss +1 -5
- package/src/css/_BRBookmarks.scss +1 -1
- package/src/css/_BRComponent.scss +1 -1
- package/src/css/_BRicon.scss +8 -2
- package/src/css/_BRmain.scss +16 -3
- package/src/css/_BRnav.scss +12 -42
- package/src/css/_BRpages.scss +170 -42
- package/src/css/_BRsearch.scss +68 -25
- package/src/css/_BRtoolbar.scss +5 -5
- package/src/css/_TextSelection.scss +87 -27
- package/src/css/_colorbox.scss +2 -2
- package/src/css/_controls.scss +24 -7
- package/src/css/_icons.scss +1 -1
- package/src/ia-bookreader/ia-bookreader.js +224 -0
- package/src/plugins/plugin.archive_analytics.js +84 -78
- package/src/plugins/plugin.autoplay.js +99 -104
- package/src/plugins/plugin.chapters.js +310 -201
- package/src/plugins/plugin.iframe.js +1 -1
- package/src/plugins/plugin.iiif.js +141 -0
- package/src/plugins/plugin.resume.js +53 -50
- package/src/plugins/plugin.text_selection.js +519 -175
- package/src/plugins/plugin.vendor-fullscreen.js +7 -7
- package/src/plugins/search/plugin.search.js +151 -127
- package/src/plugins/search/utils.js +43 -0
- package/src/plugins/search/view.js +37 -59
- package/src/plugins/tts/AbstractTTSEngine.js +75 -45
- package/src/plugins/tts/FestivalTTSEngine.js +21 -31
- package/src/plugins/tts/PageChunk.js +16 -23
- package/src/plugins/tts/PageChunkIterator.js +11 -17
- package/src/plugins/tts/WebTTSEngine.js +126 -84
- package/src/plugins/tts/plugin.tts.js +308 -350
- package/src/plugins/tts/utils.js +29 -26
- package/src/plugins/url/UrlPlugin.js +191 -0
- package/src/plugins/{plugin.url.js → url/plugin.url.js} +47 -18
- package/src/util/browserSniffing.js +33 -1
- package/src/util/docCookies.js +21 -2
- package/src/util/strings.js +1 -0
- package/tests/e2e/README.md +37 -0
- package/tests/e2e/autoplay.test.js +9 -6
- package/tests/e2e/base.test.js +8 -16
- package/tests/e2e/helpers/base.js +55 -50
- package/tests/e2e/helpers/debug.js +1 -1
- package/tests/e2e/helpers/mockSearch.js +19 -22
- package/tests/e2e/helpers/params.js +17 -0
- package/tests/e2e/helpers/rightToLeft.js +8 -14
- package/tests/e2e/helpers/search.js +73 -0
- package/tests/e2e/models/Navigation.js +20 -37
- package/tests/e2e/rightToLeft.test.js +4 -5
- package/tests/e2e/viewmode.test.js +40 -33
- package/tests/jest/BookNavigator/book-navigator.test.js +661 -0
- package/tests/jest/BookNavigator/bookmarks/bookmark-button.test.js +43 -0
- package/tests/{karma → jest}/BookNavigator/bookmarks/bookmark-edit.test.js +25 -26
- package/tests/{karma → jest}/BookNavigator/bookmarks/bookmarks-list.test.js +41 -42
- package/tests/jest/BookNavigator/bookmarks/ia-bookmarks.test.js +45 -0
- package/tests/jest/BookNavigator/downloads/downloads-provider.test.js +67 -0
- package/tests/jest/BookNavigator/downloads/downloads.test.js +53 -0
- package/tests/jest/BookNavigator/search/search-provider.test.js +167 -0
- package/tests/{karma → jest}/BookNavigator/search/search-results.test.js +109 -60
- package/tests/jest/BookNavigator/sharing/sharing-provider.test.js +49 -0
- package/tests/jest/BookNavigator/viewable-files/viewable-files-provider.test.js +80 -0
- package/tests/jest/BookNavigator/visual-adjustments.test.js +200 -0
- package/tests/{BookReader → jest/BookReader}/BookModel.test.js +74 -14
- package/tests/jest/BookReader/BookReaderPublicFunctions.test.js +263 -0
- package/tests/{BookReader → jest/BookReader}/ImageCache.test.js +4 -4
- package/tests/jest/BookReader/Mode1UpLit.test.js +73 -0
- package/tests/jest/BookReader/Mode2Up.test.js +98 -0
- package/tests/jest/BookReader/Mode2UpLit.test.js +190 -0
- package/tests/jest/BookReader/ModeCoordinateSpace.test.js +16 -0
- package/tests/jest/BookReader/ModeSmoothZoom.test.js +218 -0
- package/tests/jest/BookReader/ModeThumb.test.js +71 -0
- package/tests/{BookReader → jest/BookReader}/Navbar/Navbar.test.js +42 -29
- package/tests/jest/BookReader/PageContainer.test.js +238 -0
- package/tests/{BookReader → jest/BookReader}/ReduceSet.test.js +1 -1
- package/tests/{BookReader → jest/BookReader}/Toolbar/Toolbar.test.js +3 -3
- package/tests/jest/BookReader/utils/HTMLDimensionsCacher.test.js +59 -0
- package/tests/jest/BookReader/utils/ScrollClassAdder.test.js +49 -0
- package/tests/jest/BookReader/utils/SelectionObserver.test.js +57 -0
- package/tests/{BookReader → jest/BookReader}/utils/classes.test.js +1 -1
- package/tests/jest/BookReader/utils.test.js +250 -0
- package/tests/jest/BookReader.keyboard.test.js +190 -0
- package/tests/{BookReader.options.test.js → jest/BookReader.options.test.js} +10 -2
- package/tests/{BookReader.test.js → jest/BookReader.test.js} +43 -53
- package/tests/jest/plugins/plugin.archive_analytics.test.js +20 -0
- package/tests/jest/plugins/plugin.autoplay.test.js +35 -0
- package/tests/jest/plugins/plugin.chapters.test.js +193 -0
- package/tests/{plugins → jest/plugins}/plugin.iframe.test.js +4 -4
- package/tests/{plugins → jest/plugins}/plugin.resume.test.js +22 -35
- package/tests/jest/plugins/plugin.text_selection.test.js +316 -0
- package/tests/{plugins → jest/plugins}/plugin.vendor-fullscreen.test.js +2 -2
- package/tests/{plugins → jest/plugins}/search/plugin.search.test.js +19 -47
- package/tests/{plugins → jest/plugins}/search/plugin.search.view.test.js +42 -9
- package/tests/jest/plugins/search/utils.js +25 -0
- package/tests/jest/plugins/search/utils.test.js +29 -0
- package/tests/{plugins → jest/plugins}/tts/AbstractTTSEngine.test.js +30 -10
- package/tests/{plugins → jest/plugins}/tts/FestivalTTSEngine.test.js +4 -4
- package/tests/{plugins → jest/plugins}/tts/PageChunk.test.js +1 -1
- package/tests/{plugins → jest/plugins}/tts/PageChunkIterator.test.js +3 -3
- package/tests/{plugins → jest/plugins}/tts/WebTTSEngine.test.js +65 -13
- package/tests/{plugins → jest/plugins}/tts/utils.test.js +1 -60
- package/tests/jest/plugins/url/UrlPlugin.test.js +198 -0
- package/tests/{plugins → jest/plugins/url}/plugin.url.test.js +57 -18
- package/tests/jest/setup.js +3 -0
- package/tests/{util → jest/util}/browserSniffing.test.js +10 -4
- package/tests/jest/util/docCookies.test.js +24 -0
- package/tests/{util → jest/util}/strings.test.js +1 -1
- package/tests/jest/utils.js +83 -0
- package/webpack.config.js +16 -10
- package/.babelrc +0 -12
- package/.dependabot/config.yml +0 -6
- package/.testcaferc.json +0 -5
- package/BookReader/bookreader-component-bundle.js +0 -1450
- package/BookReader/bookreader-component-bundle.js.LICENSE.txt +0 -38
- package/BookReader/bookreader-component-bundle.js.map +0 -1
- package/BookReader/jquery-1.10.1.js +0 -2
- package/BookReader/jquery-1.10.1.js.LICENSE.txt +0 -24
- package/BookReader/plugins/plugin.menu_toggle.js +0 -2
- package/BookReader/plugins/plugin.menu_toggle.js.map +0 -1
- package/BookReader/plugins/plugin.mobile_nav.js +0 -2
- package/BookReader/plugins/plugin.mobile_nav.js.map +0 -1
- package/BookReaderDemo/BookReaderJSAutoplay.js +0 -56
- package/BookReaderDemo/IIIFBookReader.js +0 -207
- package/BookReaderDemo/bookreader-template-bundle.js +0 -7178
- package/BookReaderDemo/demo-autoplay.html +0 -38
- package/BookReaderDemo/demo-iiif.js +0 -26
- package/BookReaderDemo/demo-plugin-menu-toggle.html +0 -34
- package/karma.conf.js +0 -23
- package/src/BookNavigator/BookModel.js +0 -14
- package/src/BookNavigator/BookNavigator.js +0 -446
- package/src/BookNavigator/assets/book-loader.js +0 -27
- package/src/BookNavigator/br-fullscreen-mgr.js +0 -83
- package/src/BookNavigator/search/a-search-result.js +0 -55
- package/src/BookReader/DebugConsole.js +0 -54
- package/src/BookReaderComponent/BookReaderComponent.js +0 -112
- package/src/ItemNavigator/ItemNavigator.js +0 -376
- package/src/ItemNavigator/providers/sharing.js +0 -29
- package/src/css/_MobileNav.scss +0 -194
- package/src/dragscrollable-br.js +0 -261
- package/src/plugins/menu_toggle/plugin.menu_toggle.js +0 -324
- package/src/plugins/plugin.mobile_nav.js +0 -287
- package/tests/BookReader/BookReaderPublicFunctions.test.js +0 -171
- package/tests/BookReader/DebugConsole.test.js +0 -25
- package/tests/BookReader/Mode1Up.test.js +0 -164
- package/tests/BookReader/Mode2Up.test.js +0 -247
- package/tests/BookReader/PageContainer.test.js +0 -115
- package/tests/BookReader/utils.test.js +0 -109
- package/tests/e2e/helpers/desktopSearch.js +0 -72
- package/tests/e2e/helpers/mobileSearch.js +0 -85
- package/tests/e2e/ia-production/ia-prod-base.js +0 -17
- package/tests/karma/BookNavigator/book-navigator.test.js +0 -132
- package/tests/karma/BookNavigator/search/search-provider.test.js +0 -23
- package/tests/karma/BookNavigator/visual-adjustments.test.js +0 -201
- package/tests/plugins/menu_toggle/plugin.menu_toggle.test.js +0 -68
- package/tests/plugins/plugin.archive_analytics.test.js +0 -23
- package/tests/plugins/plugin.autoplay.test.js +0 -52
- package/tests/plugins/plugin.chapters.test.js +0 -130
- package/tests/plugins/plugin.mobile_nav.test.js +0 -66
- package/tests/plugins/plugin.text_selection.test.js +0 -203
- package/tests/util/docCookies.test.js +0 -15
- package/tests/utils.js +0 -42
package/CHANGELOG.md
CHANGED
@@ -1,25 +1,491 @@
|
|
1
|
+
# 5.0.0-91
|
2
|
+
- Refactor: Migrate ChaptersPlugin to BookReaderPlugin system @cdrini
|
3
|
+
- Breaking changes:
|
4
|
+
- Options moved:
|
5
|
+
- `options.olHost` → `options.plugins.chapters.olHost`
|
6
|
+
- `options.enableChaptersPlugin` → `options.plugins.chapters.enabled`
|
7
|
+
- Note `table_of_contents` _did not_ move; that is still root-level
|
8
|
+
- All chapters state/methods moved from `BookReader` to `BookReader.plugins.chapters`. Full list:
|
9
|
+
- eg `BookReader._chapters*` has been moved to `BookReader.plugins.chapters._*`
|
10
|
+
- See https://github.com/internetarchive/bookreader/pull/1381
|
11
|
+
- Feature: TextSelectionPlugin now supports `protected` option @cdrini
|
12
|
+
- Feature: New option for ChaptersPlugin for explicit `openLibraryId` @cdrini
|
13
|
+
- Fix: No longer error when book ends on unviewable page @cdrini
|
14
|
+
- Fix: ReadAloud no longer jumps to top of page every time it scrolls @cdrini
|
15
|
+
- Fix: Fix various ReadAloud issues -- ReadAloud stuttering, not stopping, getting stuck, etc. @cdrini
|
16
|
+
|
17
|
+
# 5.0.0-90
|
18
|
+
- Fix: Festival TTS not working @cdrini
|
19
|
+
|
20
|
+
# 5.0.0-89
|
21
|
+
- Refactor: Migrate TextSelection, Autoplay, Resume, IIIF, and TTS to new BookReaderPlugin system @cdrini
|
22
|
+
- Breaking changes:
|
23
|
+
- Options related to these plugins are now in the `plugins` object
|
24
|
+
- Methods related to these plugins are now nested, eg `br.ttsToggle` is now `br._plugins.tts.toggle`
|
25
|
+
- See https://github.com/internetarchive/bookreader/pull/1374 and https://github.com/internetarchive/bookreader/pull/1376 for examples.
|
26
|
+
- Feature: Add autoplay url parameter for `flipSpeed` and `flipDelay`
|
27
|
+
- Feature: Add new renderPageURI option + improve image caching @cdrini
|
28
|
+
- Dev: Fix failing E2E tests @cdrini
|
29
|
+
|
30
|
+
# 5.0.0-88
|
31
|
+
- Fix: Switch to new page number display format @pezvi
|
32
|
+
- Fix: Introduce BookReaderPlugin abstraction and apply to ArchiveAnalyticsPlugin @cdrini
|
33
|
+
|
34
|
+
# 5.0.0-87
|
35
|
+
- Fix: turn on autoplay option @cdrini
|
36
|
+
|
37
|
+
# 5.0.0-86
|
38
|
+
- Fix: Make JSON requests with cookies for protected books @cdrini
|
39
|
+
|
40
|
+
# 5.0.0-85
|
41
|
+
- Dev: Disable JSONP requests to archive.org to make BR CSP-compatible @cdrini
|
42
|
+
|
43
|
+
# 5.0.0-84
|
44
|
+
- Fix: Improve/update wording for downloads @rebecca-shoptaw
|
45
|
+
|
46
|
+
# 5.0.0-83
|
47
|
+
- Fix: Fix typo in search-results.js @sahalbelam
|
48
|
+
- Dev: Bump cache action to v4 @williamtheaker
|
49
|
+
- Fix: Fix toolbar requiring SearchView.init having already been called @cdrini
|
50
|
+
- Dev: Replace deprecated codecov npm package with github action @cdrini
|
51
|
+
- Dev: Add eslint trailing comma rule @cdrini
|
52
|
+
- Fix: Fix IIIF plugin missing last page + error when metadata unspecified @glorieux-f
|
53
|
+
- Fix: Remove polyfill.io from demo files @cdrini
|
54
|
+
- Dev: Update build dependencies @cdrini
|
55
|
+
- Dev: Update some dev deps @cdrini
|
56
|
+
- Fix: Switch to new Thorium URL @rebecca-shoptaw
|
57
|
+
|
58
|
+
# 5.0.0-82
|
59
|
+
- Feature: New option to control unviewable page image: `unviewablePageURI` @cdrini
|
60
|
+
|
61
|
+
# 5.0.0-81
|
62
|
+
- Dev: Update test dependencies @cdrini
|
63
|
+
- Dev: Update build dependencies @cdrini
|
64
|
+
- Fix: BookReader buttons inherit font @rebecca-shoptaw
|
65
|
+
- Fix: Better visual adjustment text @rebecca-shoptaw
|
66
|
+
|
67
|
+
# 5.0.0-80
|
68
|
+
- Dev: Fix/modernize IIIF demo @cdrini
|
69
|
+
- Dev: Fix sharing panel erroring when no IA item metadata specified @cdrini
|
70
|
+
|
71
|
+
# 5.0.0-79
|
72
|
+
|
73
|
+
- Fix: Firefox not scrolling to selected volume in the volume side panel @nsharma123
|
74
|
+
|
75
|
+
# 5.0.0-78
|
76
|
+
|
77
|
+
- Fix: Add button outline to some of the controls @cdrini
|
78
|
+
|
79
|
+
# 5.0.0-77
|
80
|
+
|
81
|
+
- Fix: side panels - show downloads before visual adjustments @iisa
|
82
|
+
|
83
|
+
# 5.0.0-76
|
84
|
+
|
85
|
+
- Fix: Update bookNavigator shortcut menu ordering @dualcnhq
|
86
|
+
|
87
|
+
# 5.0.0-75
|
88
|
+
|
89
|
+
- Dev: Update deps via renovatebot
|
90
|
+
- Dev: Add .env file in .gitignore
|
91
|
+
- Dev: Update CHANGELOG.md @eltociear
|
92
|
+
- Feature: Add ToC icon if enableChapterPlugin @dualcnhq
|
93
|
+
|
94
|
+
# 5.0.0-74
|
95
|
+
|
96
|
+
- See 5.0.0-75
|
97
|
+
|
98
|
+
# 5.0.0-73
|
99
|
+
|
100
|
+
- Feature: Add `table_of_contents` option to work with chapters plugin @cdrini
|
101
|
+
- Fix: Simple demos not working @xonx4l
|
102
|
+
- Dev: Update test/build dependencies @cdrini
|
103
|
+
|
104
|
+
# 5.0.0-72
|
105
|
+
|
106
|
+
- Fix: Play/pause button out of sync with ReadAloud @sbwhitt
|
107
|
+
- Fix: BookReader not loading in sandboxed iframe @cdrini
|
108
|
+
- Dev: Fix noisy sentry error firing on any selection @cdrini
|
109
|
+
- Dev: Update to Node 20 @cdrini
|
110
|
+
|
111
|
+
# 5.0.0-71
|
112
|
+
|
113
|
+
- Dev: update jest monorepo @renovate
|
114
|
+
- Fix: Share & Mutliple View menu panel refactor @iisa
|
115
|
+
|
116
|
+
# 5.0.0-70
|
117
|
+
|
118
|
+
- Feature: Remember ReadAloud voice selection @sbwhitt
|
119
|
+
- Fix: Support page numbers that require url encoding @cdrini
|
120
|
+
|
121
|
+
# 5.0.0-69
|
122
|
+
|
123
|
+
- Fix: Handle ppi incorrectly set to one @cdrini
|
124
|
+
|
125
|
+
# 5.0.0-68
|
126
|
+
|
127
|
+
- Fix: 1up zoom wrong on start/entering full screen @cdrini
|
128
|
+
- Dev: BREAKING: delete `plugin.mobile_nav.js` no longer used @cdrini
|
129
|
+
- Dev: Move page 1 label correction logic to BookReaderJSIA @cdrini
|
130
|
+
|
131
|
+
# 5.0.0-67
|
132
|
+
|
133
|
+
- Feature: Re-enable chapters plugin + migrate off mmenu @cdrini
|
134
|
+
- Fix: Disable tooltips on touchscreens + fix on IA @cdrini
|
135
|
+
- Dev: Remove core-js update block; issue resolved in core-js @cdrini
|
136
|
+
|
137
|
+
# 5.0.0-66
|
138
|
+
|
139
|
+
- Fix: Pinch zooming on iPad/iPhone, Samsung Internet @cdrini
|
140
|
+
|
141
|
+
# 5.0.0-65
|
142
|
+
|
143
|
+
- Dev: Remove Debug console dev helper @cdrini
|
144
|
+
- Dev: Fix deno esm.sh esbuild erroring @cdrini
|
145
|
+
- Dev: Update test/build deps @cdrini
|
146
|
+
|
147
|
+
# 5.0.0-64
|
148
|
+
|
149
|
+
- Dev: update dependencies @renovate
|
150
|
+
- Dev: update build step @cdrini
|
151
|
+
- Fix: Search inside option for {{{/}}} + http support @cdrini
|
152
|
+
|
153
|
+
# 5.0.0-63
|
154
|
+
|
155
|
+
Fix: Don't limit autoFit zoom to real world size @cdrini
|
156
|
+
Dev: Update test deps @cdrini
|
157
|
+
|
158
|
+
# 5.0.0-62
|
159
|
+
|
160
|
+
- Fix: Make text selection work in Safari 15.4+ @cdrini
|
161
|
+
- Fix: Rewrite/improvements to text selection UX @cdrini
|
162
|
+
- Switches from SVG text layer to HTML text layer
|
163
|
+
|
164
|
+
# 5.0.0-61
|
165
|
+
|
166
|
+
- Fix: Mode2up preview pages hanging on first click @cdrini
|
167
|
+
- Dev: Add analytics event for text layer page selection @cdrini
|
168
|
+
|
169
|
+
# 5.0.0-60
|
170
|
+
|
171
|
+
- Fix: Update modal manager to fix duplicate definitions warnings on IA @cdrini
|
172
|
+
- Fix: Common Sentry error `.spread` undefined @cdrini
|
173
|
+
- Fix: entering page appearing early in flip anim @cdrini
|
174
|
+
- Fix: preview pages not working in 1up @cdrini
|
175
|
+
- Dev: Make serve-dev not do full production babeling (This makes it waaaay easier/faster to debug things like promises) @cdrini
|
176
|
+
- Dev: Log an error if search inside fails for sentry @cdrini
|
177
|
+
- Dev: Make dev server support CORS to allow testing via ngrok @cdrini
|
178
|
+
- Refactor: Rm redundant archive_analytics checks @cdrini
|
179
|
+
- Refactor: Dissolve a-search-result.js component @cdrini
|
180
|
+
|
181
|
+
# 5.0.0-59
|
182
|
+
|
183
|
+
- Rewrite 2up view to use css transforms and lit @cdrini
|
184
|
+
- Pretty substantial change. Lots of breaking changes to public methods.
|
185
|
+
|
186
|
+
# 5.0.0-58
|
187
|
+
|
188
|
+
- Fix BookReader sometimes failing to load when starting in Mode1Up @cdrini
|
189
|
+
- Update testing dependencies @cdrini
|
190
|
+
|
191
|
+
# 5.0.0-57
|
192
|
+
|
193
|
+
- Fix - do not show Download pane when there aren't any available @iisa
|
194
|
+
|
195
|
+
# 5.0.0-56
|
196
|
+
|
197
|
+
- Fix DOMException in sandboxed iframe in chrome @cdrini
|
198
|
+
|
199
|
+
# 5.0.0-55
|
200
|
+
|
201
|
+
- Fix BookReader going to 1up in fullscreen on desktop @mheiman
|
202
|
+
- Support BookReader running in sandboxed (cookie-less) iframe @cdrini
|
203
|
+
- Update IA dependencies to avoid duplicate dependencies @cdrini
|
204
|
+
|
205
|
+
# 5.0.0-54
|
206
|
+
|
207
|
+
- Dev: Dispatch custom event from bookreader for ia-book-actions @nsharma123
|
208
|
+
|
209
|
+
# 5.0.0-53
|
210
|
+
|
211
|
+
- Dev: update icons & lit versions to help a.o build @iisa
|
212
|
+
|
213
|
+
# 5.0.0-52
|
214
|
+
|
215
|
+
# 5.0.0-51
|
216
|
+
|
217
|
+
- Fix: Bookmark with subfiles was broken @nsharma123
|
218
|
+
- Feature: Default 1up mode and options.defaults mode override exiting mode @nsharma123
|
219
|
+
|
220
|
+
# 5.0.0-50
|
221
|
+
|
222
|
+
Fix: Search results display @latonv
|
223
|
+
|
224
|
+
# 5.0.0-49
|
225
|
+
|
226
|
+
- Dev: remove class shims, v5 deprecations @cdrini
|
227
|
+
- Dev: update dependency (@open-wc/testing-helpers) @renovate
|
228
|
+
- Dev: e2e - remove ia test + export DesktopNav for external usage @iisa
|
229
|
+
|
230
|
+
# 5.0.0-48
|
231
|
+
|
232
|
+
- Fix: move analytics to sample bucket @iisa
|
233
|
+
- Dev: update dependencies (concurrently, jest) @renovate
|
234
|
+
|
235
|
+
# 5.0.0-47
|
236
|
+
|
237
|
+
- Fix: XSS vulnerability in search results @latonv
|
238
|
+
- Dev: Update jQuery to v3 **BREAKING** @cdrini
|
239
|
+
- If you were importing `BookReader/jquery-1.10.1.js` you will need to change it to `BookReader/jquery-3.js`
|
240
|
+
- Also ensure if other code was using this jquery that it works with jQuery 3!
|
241
|
+
- Dev: Update testing dependencies (jest, testcafe) @renovate
|
242
|
+
|
243
|
+
# 5.0.0-46
|
244
|
+
|
245
|
+
Fix: Leaf positioning during RTL fliip animation @latonv
|
246
|
+
Dev: dependency updates @renovate
|
247
|
+
Fix: Disable contextmenu for restricted books @iisa
|
248
|
+
|
249
|
+
# 5.0.0-45
|
250
|
+
|
251
|
+
# 5.0.0-44
|
252
|
+
|
253
|
+
Fix: dynamic `q=<term>` url parameter @iisa
|
254
|
+
Dev: dependency updates @renovate
|
255
|
+
|
256
|
+
# 5.0.0-43
|
257
|
+
|
258
|
+
Fix: search results panel display asserted page numbers @cdrini
|
259
|
+
Dev: dependency updates @renovate
|
260
|
+
Dev: node-fetch update @cdrini
|
261
|
+
|
262
|
+
# 5.0.0-42
|
263
|
+
|
264
|
+
Dev: update testing dependencies @renovate
|
265
|
+
Dev: update `<ia-item-navigator>` @iisa
|
266
|
+
|
267
|
+
# 5.0.0-40
|
268
|
+
|
269
|
+
Fix: Better search highlights @cdrini
|
270
|
+
Dev: update lit 2 components @iisa
|
271
|
+
Dev: update lit @renovate
|
272
|
+
|
273
|
+
# 5.0.0-39
|
274
|
+
|
275
|
+
Fix: Performance improvements to scroll/zooming when text layer is larger @cdrini
|
276
|
+
Fix: Update zoom in/out icons to match iconochive glyphs @pezvi
|
277
|
+
Dev: update dependencies @renovate
|
278
|
+
|
279
|
+
# 5.0.0-38
|
280
|
+
|
281
|
+
Dev: Add Renovate Bot @cdrini
|
282
|
+
Dev: Update node-fetch @cdrini
|
283
|
+
Fix: Search request promise err & fix tests @cdrini
|
284
|
+
Dev: Split node workflow into different jobs @cdrini
|
285
|
+
Dev: Give cache steps better names in GHA @cdrini
|
286
|
+
Dev: Update concurrently + Small speedup to build & test @cdrini
|
287
|
+
Dev: Renovate - Auto-update dev dependencies for minor/patch @cdrini
|
288
|
+
Fix: Better MS Edge voice selection @cdrini
|
289
|
+
Dev: Allow small drops in codecov coverage (< 0.5%) @cdrini
|
290
|
+
Dev: Renovate - add `^@internetarchive/icon-` @cdrini
|
291
|
+
|
292
|
+
# 5.0.0-37
|
293
|
+
|
294
|
+
Fix: Update all `.then()` to async/await @sancodes
|
295
|
+
Fix: Upgrade to Lit 2 @Aadilhassan
|
296
|
+
Dev: Update to Node v16.x @duggiefresh
|
297
|
+
Dev: Remove unused demo bundle @cdrini
|
298
|
+
Dev: Fix README broken link for plugin directory @duggiefresh
|
299
|
+
Dev: Update sharing options menu to lit2 @iisa
|
300
|
+
Dev: Remove package publishing from GHA @cdrini
|
301
|
+
|
302
|
+
# 5.0.0-36
|
303
|
+
|
304
|
+
Fix: Readaloud scrolls along with dext @cdrini
|
305
|
+
Dev: ES6 var to let/const updates @sancodes
|
306
|
+
Dev: ES6 async/await updates @sancodes
|
307
|
+
Dev: Re-enable testcafe tests in GH action @iisa
|
308
|
+
Fix: Search results bar clears and closes properly @iisa
|
309
|
+
|
310
|
+
# 5.0.0-35
|
311
|
+
|
312
|
+
Fix: global style leak specify colorbox styles @iisa
|
313
|
+
Fix: br menu reinits with shared ro load @iisa
|
314
|
+
Fix: url plugin does not rewrite with multiple slashes @iisa
|
315
|
+
|
316
|
+
# 5.0.0-34
|
317
|
+
|
318
|
+
Dev: update test dependencies @cdrini
|
319
|
+
Fix: Update hyphen stitching regex to include dangling "¬" @cdrini
|
320
|
+
Fix: pop open multiple files menu at proper width @iisa
|
321
|
+
|
322
|
+
# 5.0.0-33
|
323
|
+
|
324
|
+
Fix: restricted books get cover image @iisa
|
325
|
+
|
326
|
+
# 5.0.0-32
|
327
|
+
|
328
|
+
Fix: fetch bookmarks from service when logged in @iisa
|
329
|
+
Fix: adjust css to help shadydom render properly @iisa
|
330
|
+
|
331
|
+
# 5.0.0-31
|
332
|
+
|
333
|
+
Fix: modal loads into dom from `<ia-bookreader>` @iisa
|
334
|
+
|
335
|
+
# 5.0.0-30
|
336
|
+
|
337
|
+
- `<ia-bookreader>` is top-most web component @iisa
|
338
|
+
|
339
|
+
# 5.0.0-29
|
340
|
+
|
341
|
+
- import ia-item-navigator for menu management @iisa
|
342
|
+
- url plugin: suppress default state on load @dualcnhq
|
343
|
+
|
344
|
+
# 5.0.0-28
|
345
|
+
|
346
|
+
Dev: Refactor URLPlugin + sync volumes sorting state to URL @dualcnhq @cdrini
|
347
|
+
|
348
|
+
# 5.0.0-27
|
349
|
+
|
350
|
+
Dev: eslint fix for $.browser @homewardgamer
|
351
|
+
Fix: cache search inside requests @iisa
|
352
|
+
|
353
|
+
# 5.0.0-26
|
354
|
+
|
355
|
+
Fix: read aloud play/pause button @nsharma123
|
356
|
+
Dev: strict keyboard shortcuts @mc2
|
357
|
+
Dev: update IA demo page @iisa
|
358
|
+
|
359
|
+
# 5.0.0-24
|
360
|
+
|
361
|
+
Fix: book-nav side panel zoom out @mc2
|
362
|
+
Dev: refactor zoom code @mc2
|
363
|
+
|
364
|
+
# 5.0.0-23
|
365
|
+
|
366
|
+
Fix: Darken scrollbars in Safari @pezvi
|
367
|
+
Fix: Bookmarks service calls when reader is logged in @mc2
|
368
|
+
Dev: Move jest tests into separate directory @cdrini
|
369
|
+
|
370
|
+
# 5.0.0-22
|
371
|
+
|
372
|
+
- Dev: remove deprecated embed nav view, use standard default @iisa
|
373
|
+
|
374
|
+
# 5.0.0-21
|
375
|
+
|
376
|
+
- Dev: Toggle view=theater in fullscreen @mc2
|
377
|
+
|
378
|
+
# 5.0.0-20
|
379
|
+
|
380
|
+
- Feature: Add voice selection dropdown to ReadAloud! @mekarpeles
|
381
|
+
- Dev: Make jest support root-level imports with "@" @cdrini
|
382
|
+
- Dev: Make it easy to run e2e tests on archive.org/browserstack @cdrini
|
383
|
+
|
384
|
+
# 5.0.0-19
|
385
|
+
|
386
|
+
- Dev: Refactor dragscrollable from a jquery plugin to a JS class @cdrini
|
387
|
+
- Dev: Fix jquery eslint errors @cdrini
|
388
|
+
- Dev: Replace deprecated babel-eslint with successor @cdrini
|
389
|
+
- Fix: BR not working on iOS 9 / iOS 10! @cdrini, @iisa
|
390
|
+
- Added webcomponents, ResizeObserver polyfill
|
391
|
+
- ES5-ify lit node_modules
|
392
|
+
|
393
|
+
# 5.0.0-18
|
394
|
+
|
395
|
+
- Dev: Update a number of dependencies @cdrini
|
396
|
+
- Dev: Added eslint-plugin-no-jquery @soham4abc
|
397
|
+
- Feature: Add continuous pinch zooming for touch screens and trackpads! @cdrini
|
398
|
+
- This is a _big_ change to the codebase. It involved rewriting 1 up mode in LitElement. This means that BookReader now need webcomponents to function.
|
399
|
+
- Breaking changes (unlikely to be used by anyone):
|
400
|
+
- Most Mode1Up Bookreader global functions removed (unlikely to be used): `drawLeafsOnePage`, `onePageGetAutofitWidth`, `onePageGetAutofitHeight`, `onePageGetPageTop`, `onePageCalculateReductionFactors`, `centerX1up`, `centerY1up`
|
401
|
+
- Some Mode2Up cleanups: Removed `setClickHandler2UP`, `setMouseHandlers2UP`
|
402
|
+
- [Web components](https://caniuse.com/custom-elementsv1) now must be supported
|
403
|
+
- Reduction factors options no longer applies to 1up
|
404
|
+
|
405
|
+
# 5.0.0-17
|
406
|
+
|
407
|
+
- Fix: focus in a textarea disables keyboard shortcuts @cdrini
|
408
|
+
|
409
|
+
# 5.0.0-16
|
410
|
+
|
411
|
+
- Dev: remove unused menu toggle plugin @iisa
|
412
|
+
- Fix: Book nav loader safari update @iisa
|
413
|
+
|
414
|
+
# 5.0.0-15
|
415
|
+
|
416
|
+
- Fix: Typing -/+ in search box no longer zooms @cdrini
|
417
|
+
- Dev: Add script for updating dev deps @cdrini
|
418
|
+
- Refactor/Fix: Convert search/TTS highlights to use SVG layer @cdrini
|
419
|
+
- Fix TTS highlights not positioned correctly in Mode1Up
|
420
|
+
- Breaking changes (unlikely these are used by anyone):
|
421
|
+
- Remove public method `BookReader.prototype.keyboardNavigationIsDisabled`
|
422
|
+
- Remove public method `BookReader.util.sleep`
|
423
|
+
- Remove public method `BookReader.prototype.updateSearchHilites1UP`
|
424
|
+
- Remove public method `BookReader.prototype.updateSearchHilites2UP`
|
425
|
+
- Remove public attribute `BookReader.prototype.ttsHilites`
|
426
|
+
|
427
|
+
# 5.0.0-14
|
428
|
+
|
429
|
+
- Fix: Url search param `q=` updates dynamically @nsharma123
|
430
|
+
- Fix: Downloads menu text updates @dualcnhq
|
431
|
+
- Fix: Volumes updates - icons, labelling, open menu onload @iisa
|
432
|
+
|
433
|
+
# 5.0.0-13
|
434
|
+
|
435
|
+
- Enhancement: Add neutral state for sorting volumes @dualcnhq
|
436
|
+
- Enhancement: Update subfiles/volumes title sorting logic by filename -> title_asc -> title_desc order then back to filename @dualcnhq
|
437
|
+
- Fix: Volume item index count display @dualcnhq
|
438
|
+
|
439
|
+
# 5.0.0-12
|
440
|
+
|
441
|
+
- Fix: new side panel: sortable multiple volumes @dualcnhq @iisa
|
442
|
+
- Fix: sharing side panel can share subfile/volume @iisa
|
443
|
+
|
444
|
+
# 5.0.0-11
|
445
|
+
|
446
|
+
- Fix: standardize button style for download panel @nsharma123
|
447
|
+
|
448
|
+
# 5.0.0-10
|
449
|
+
|
450
|
+
- Fix: Make 1up default to full width (up to real world size) @cdrini
|
451
|
+
- Fix: Remove "page" from toolbar @cdrini
|
452
|
+
- Dev: Update menu slider @iisa
|
453
|
+
- Dev: Add semi-colons eslint rule @iisa
|
454
|
+
|
1
455
|
# 5.0.0-9
|
456
|
+
|
2
457
|
- Fix: search-inside results check for page's index via `leafNum` @nsharma123
|
458
|
+
|
3
459
|
# 5.0.0-8
|
460
|
+
|
4
461
|
- Fix: cancel search fix naming var @iisa
|
5
462
|
|
6
463
|
# 5.0.0-7
|
464
|
+
|
7
465
|
- Fix: cancel search @iisa
|
8
466
|
- Dev: remove dead css @cdrini
|
9
467
|
- Dev: GHA node_modules caching @cdrini
|
468
|
+
|
10
469
|
# 5.0.0-6
|
470
|
+
|
11
471
|
- Fix: Fullscreen toggle sets/unsets animating flag @iisa
|
472
|
+
|
12
473
|
# 5.0.0-5
|
474
|
+
|
13
475
|
- Fix: Book Nav: resize only when bookreader is not animating @iisa
|
14
476
|
- Fix: Web components register themselves at EOF @iisa
|
15
477
|
- Dev: update dependencies with dependabot @drini
|
478
|
+
|
16
479
|
# 5.0.0-4
|
480
|
+
|
17
481
|
- Dev: update bookmarks login archive_analytics @iisa @dualcnhq
|
18
482
|
|
19
483
|
# 5.0.0-3
|
484
|
+
|
20
485
|
- Fix: bookmarks panel has login CTA @dualcnhq @iisa
|
21
486
|
|
22
487
|
# 5.0.0-2
|
488
|
+
|
23
489
|
- Dev: update testing dependencies @cdrini
|
24
490
|
- Dev: update dev-flow dependencies @cdrini
|
25
491
|
- Dev: reorganize core BR files @cdrini
|
@@ -29,30 +495,33 @@
|
|
29
495
|
- Fix: updates to `<book-navigator>` to upgrade archive.org's liner notes display to v5 @iisa
|
30
496
|
|
31
497
|
# 5.0.0-1
|
498
|
+
|
32
499
|
- Actually delete the files mentioned in previous release @cdrini
|
33
500
|
- Dev: Organize BookNavigator files @iisa
|
34
501
|
- Fix: Search results not in correct place in Mode1Up @cdrini
|
35
502
|
|
36
503
|
# 5.0.0-0
|
504
|
+
|
37
505
|
First beta release of v5! Lots of breaking changes:
|
506
|
+
|
38
507
|
- Files deleted from `BookReader/` . These are all no longer needed, or bundled in other BookReader JS files
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
508
|
+
- jquery.bt.min.js
|
509
|
+
- plugin.theme.js - including methods:
|
510
|
+
- BookReader.prototype.themes
|
511
|
+
- BookReader.prototype.updateTheme
|
512
|
+
- BookReader.prototype.default_theme
|
513
|
+
- BookReader.prototype.theme
|
514
|
+
- option enableThemesPlugin
|
515
|
+
- excanvas.compiled.js
|
516
|
+
- plugin.print.js - including methods:
|
517
|
+
- BookReader.prototype.printPage
|
518
|
+
- BookReader.prototype.getPrintURI
|
519
|
+
- BookReader.prototype.getPageFile
|
520
|
+
- jquery.browser.min.js
|
521
|
+
- soundmanager/*
|
522
|
+
- jquery.ui.touch-punch.min.js
|
523
|
+
- mmenu/*
|
524
|
+
- jquery-ui-1.12.0.min.js
|
56
525
|
- BookReader now also requires web components; more documentation on how to use will be coming in the next beta versions.
|
57
526
|
- BookNavigator is a web component wrapper around core BookReader
|
58
527
|
- Add Karma for testing web components
|
@@ -63,93 +532,131 @@ First beta release of v5! Lots of breaking changes:
|
|
63
532
|
- BookReader/ build files directory is now completely disposable
|
64
533
|
|
65
534
|
# 4.40.2
|
535
|
+
|
66
536
|
-Fix: page container has `data-side` attr @iisa
|
67
537
|
|
68
538
|
# 4.40.1
|
539
|
+
|
69
540
|
- Fix: Support /search/TERM in url @nsharma123
|
70
541
|
- Dev: Fix reference to deprecated pruneUnused @cdrini
|
71
542
|
|
72
543
|
# 4.40.0
|
544
|
+
|
73
545
|
- Dev: Separate ModeThumb into separate file @cdrini
|
74
546
|
- Feature: Progressive loading of higher resolution images @cdrini
|
75
|
-
|
76
|
-
|
77
|
-
|
547
|
+
- Potentially breaking change: `data-(side|leaf|reduce|row)` no longer set
|
548
|
+
- Potentially breaking change: mode class no longer set on page container
|
549
|
+
- A number of deprecated methods converted to no-ops with `console.warn`
|
78
550
|
- Feature: pow2 reduce by default @cdrini
|
79
|
-
|
551
|
+
- New option: `reduceSet: 'pow2' | 'integer' = 'pow2'` limits reduce variables sent to getURI to be powers of 2
|
80
552
|
- Dev: Add esbuild to `npm run serve-dev` @iisa
|
81
553
|
- Fix: BookNavigator loaded after JSIAInit @cdrini
|
82
554
|
|
83
555
|
# 4.39.3
|
556
|
+
|
84
557
|
- Hotfix: Fix iOS 8 erroring since 4.39.0 @cdrini
|
85
558
|
|
86
559
|
# 4.39.2
|
560
|
+
|
87
561
|
- Dev: update Readme @Himanshunitrr
|
88
562
|
- Dev: in-file typo fixes @cclauss
|
89
563
|
- Fix: v5 booknav refresh @iisa @dualcnhq
|
564
|
+
|
90
565
|
# 4.39.1
|
566
|
+
|
91
567
|
- Dev: update Readme @Himanshunitrr
|
92
568
|
- Fix: v5 bookmarks menu update @iisa @dualcnhq
|
569
|
+
|
93
570
|
# 4.39.0
|
571
|
+
|
94
572
|
- Feature: Mode1Up DPI awareness @cdrini
|
95
|
-
|
96
|
-
|
573
|
+
- Introduces two new optional options: `ppi` and `PageData.ppi`
|
574
|
+
- Potentially breaking change: zooming in Mode1Up will now zoom at different intervals
|
97
575
|
|
98
576
|
# 4.38.0
|
577
|
+
|
99
578
|
Dev: update dependencies @cdrini
|
100
579
|
Dev: replace travis badge with GHA badge @cdrini
|
101
580
|
Feature: Thumbnail/Gallery view reusing best scaled images @iisa
|
102
581
|
Fix: simplify ImageCache dictionary @iisa
|
103
582
|
|
104
583
|
# 4.37.0
|
584
|
+
|
105
585
|
Fix: new ImageCache that keeps track of requested images & their scale factor @iisa
|
106
586
|
Fix: 2up mode's use of ImageCache @iisa
|
587
|
+
|
107
588
|
# 4.36.0
|
589
|
+
|
108
590
|
Fix: More image caching - 2up, some sharing with thumbnail draw @iisa
|
109
591
|
|
110
592
|
# 4.35.1
|
593
|
+
|
111
594
|
Fix: 2up, `baseLeafCss` - use function to find "top" value @iisa
|
595
|
+
|
112
596
|
# 4.35.0
|
597
|
+
|
113
598
|
Fix: show text selection layer if word count is less than 2,500 @cdrini
|
114
599
|
Fix: 2up, only resize spread if current image is better than next size @iisa
|
600
|
+
|
115
601
|
# 4.34.0
|
602
|
+
|
116
603
|
Fix: exist fullscreen will change to 2up if 2up is available @iisa
|
604
|
+
|
117
605
|
# 4.33.0
|
606
|
+
|
118
607
|
Fix: use optional `srcSet` in 1up mode @iisa
|
608
|
+
|
119
609
|
# 4.32.0
|
610
|
+
|
120
611
|
Fix: slim down prefetch group @iisa
|
121
|
-
Fix: TTS caches xml @cdrini
|
612
|
+
Fix: TTS caches xml @cdrini
|
613
|
+
|
122
614
|
# 4.31.0
|
615
|
+
|
123
616
|
Dev: demo cleanup with @cdrini
|
124
617
|
Fix: 2up - pass reduction factors when creating image urls @iisa
|
618
|
+
|
125
619
|
# 4.30.0
|
620
|
+
|
126
621
|
Fix: all view modes on desktop & view mode toggl on mobile are now default. @nsharma123
|
127
622
|
|
128
623
|
# 4.28.0
|
624
|
+
|
129
625
|
Fix: adding alt tags to images @nsharma123
|
626
|
+
|
130
627
|
# 4.27.0
|
628
|
+
|
131
629
|
Fix: update init function to use new flag `autoResize` @iisa
|
132
630
|
Fix: images - `useSrcSet` flag to determine when we fill `srcSet` attribute @iisa
|
631
|
+
|
133
632
|
# 4.26.1
|
633
|
+
|
134
634
|
Patch: Text selection layer does not get made in thumbnail view @dualcnhq
|
635
|
+
|
135
636
|
# 4.26.0
|
637
|
+
|
136
638
|
Dev: move to Github actions @cdrini
|
137
639
|
Dev: version bumps @dependabot
|
138
640
|
Fix: Text selection layer gets created for first page, does not get created for last page @dualcnhq
|
139
641
|
|
140
642
|
# 4.25.0
|
643
|
+
|
141
644
|
Fix: Helper changes for stream redirection to read hash fragment params from URL @nsharma123
|
142
645
|
|
143
646
|
# 4.24.0
|
647
|
+
|
144
648
|
Fix: Bookreader layout when initialized in "ReadAloud" mode @nsharma123
|
145
649
|
|
146
650
|
# 4.23.0
|
651
|
+
|
147
652
|
Fix: first search result click now updates url @nsharma123
|
148
653
|
|
149
654
|
# 4.22.0
|
655
|
+
|
150
656
|
Fix: update non-asserted page labelling next to nav scrubber @iisa
|
151
657
|
|
152
658
|
# 4.21.0
|
659
|
+
|
153
660
|
- Fix: Search Plugin Updates (#556) @iisa
|
154
661
|
- always display search results markers
|
155
662
|
- update search results nav tap targets & style
|
@@ -159,15 +666,18 @@ Fix: update non-asserted page labelling next to nav scrubber @iisa
|
|
159
666
|
- Dev: move search plugin test files to their own directory (#556) @iisa
|
160
667
|
|
161
668
|
# 4.20.1
|
669
|
+
|
162
670
|
- Fix: Handle empty dejavu.xml files in text selection plugin @iisa
|
163
671
|
|
164
672
|
# 4.20.0
|
673
|
+
|
165
674
|
- Dev: Update 9 dependencies (including webpack, sass, @babel/*) @dependabot-preview + @cdrini
|
166
675
|
- Dev: Move dragscroll code into src @cdrini
|
167
676
|
- Dev: Make webpack treat jquery as an external dependency @cdrini
|
168
677
|
- Fix: Samsung Internet not loading BR on IA @cdrini
|
169
678
|
|
170
679
|
# 4.19.0
|
680
|
+
|
171
681
|
- Fix: `<br>` rendered in search panel @ArunTeltia
|
172
682
|
- Fix: TTS speed dropdown has white text on white in Chrome @participator
|
173
683
|
- Dev: Replace dependency copies with npm packages (jquery, jquery-ui, mmenu, colorbox, touch-punch, jquery.browser) @cdrini
|
@@ -180,39 +690,49 @@ Fix: update non-asserted page labelling next to nav scrubber @iisa
|
|
180
690
|
- Fix: Text selection throwing error on page with index=-1 @cdrini
|
181
691
|
|
182
692
|
# 4.18.7
|
693
|
+
|
183
694
|
Fix: update fullscreen toggle methods to fire behaviors in an expected way @iisa
|
184
695
|
|
185
696
|
# 4.18.6
|
697
|
+
|
186
698
|
- Fix: use fullscreen toggle flow when starting fullscreen (#499) @iisa
|
187
699
|
|
188
700
|
# 4.18.5
|
701
|
+
|
189
702
|
- Fix: Waits to resize until first result flipped to (#498) @shaneriley
|
190
703
|
|
191
704
|
# 4.18.4
|
705
|
+
|
192
706
|
- Fix: Adds data attribute to 2up page containers for side designation @shaneriley
|
193
707
|
- Fix: Apdate interstitial modal to fixed with & clean up messaging @iisa
|
194
708
|
|
195
709
|
# 4.18.3
|
710
|
+
|
196
711
|
- Fix: Enrich context to search emitted events @iisa
|
197
712
|
- Fix: Hides directional buttons and shows viewmode buttons on mobile viewports @shaneriley
|
198
713
|
|
199
714
|
# 4.18.2
|
715
|
+
|
200
716
|
- Fix: Search plugin fixes (#491) @shaneriley
|
201
717
|
|
202
718
|
# 4.18.1
|
719
|
+
|
203
720
|
- Fix: Skips subsequent creation of search views when setup called 1+n times @shaneriley
|
204
721
|
|
205
722
|
# 4.18.0
|
723
|
+
|
206
724
|
- Dev: Add eslint for `space-after-keywords`, `space-before-blocks`, `only-multiline` @Yashs911
|
207
725
|
- Dev: Update eslint, sinon, @types/jest, testcafe, sass, webpack @dependabot-preview + @cdrini
|
208
726
|
- Dev: Add 3 more files to eslint @Yashs911
|
209
727
|
- Feature: New options for text selection plugin: single page DJVU XML url @cdrini
|
210
728
|
|
211
729
|
# 4.17.0
|
730
|
+
|
212
731
|
- Fix: text selection on Safari @cdrini
|
213
732
|
- Feature: Search results navigation bar @shaneriley
|
214
733
|
|
215
734
|
# 4.16.0
|
735
|
+
|
216
736
|
- Dev: Emit custom event to trigger @iisa
|
217
737
|
- Feature: Text selection plugin @Pyrojet99
|
218
738
|
- Fix: Wrong openlibrary URL @cdrini
|
@@ -224,6 +744,7 @@ Fix: update fullscreen toggle methods to fire behaviors in an expected way @iisa
|
|
224
744
|
- Fix: HTML escaping to prevent XSS (#434) @nsharma123
|
225
745
|
|
226
746
|
# 4.15.0
|
747
|
+
|
227
748
|
- Dev: update lodash dependency @dependabot-preview + @cdrini
|
228
749
|
- Dev: Moves /BookReaderDemo/index.html to /index.html (#394) @anirbansaha782
|
229
750
|
- Fix: Prevents page flipping to last page if navigating to previous page from a book's cover (#419) @iisa
|
@@ -231,15 +752,19 @@ Fix: update fullscreen toggle methods to fire behaviors in an expected way @iisa
|
|
231
752
|
- Dev: Updates to e2e testing navigation model & base tests (#421) @iisa
|
232
753
|
|
233
754
|
# 4.14.3
|
755
|
+
|
234
756
|
- Fix: Zoom buttons missing on mobile + other chrome fixes (#416) @shaneriley
|
235
757
|
|
236
758
|
# 4.14.2
|
759
|
+
|
237
760
|
- Dev: Make npm package public (#414) @cdrini
|
238
761
|
|
239
762
|
# 4.14.1
|
763
|
+
|
240
764
|
- Dev: Automate npm publishing on github release (#409, #412) @cdrini
|
241
765
|
|
242
766
|
# 4.14.0
|
767
|
+
|
243
768
|
- Dev: Simplify webpack file (#373) @cdrini
|
244
769
|
- Feature: One page/Two page/Thumbnail view now one button toggler (#375) @shaneriley
|
245
770
|
- Fix: Advanced page demo broken (#383) @Pyrojet99
|
@@ -251,9 +776,11 @@ Fix: update fullscreen toggle methods to fire behaviors in an expected way @iisa
|
|
251
776
|
- Feature: New chrome for BookReader! (#381) @shaneriley
|
252
777
|
|
253
778
|
# 4.13.1
|
779
|
+
|
254
780
|
- Fix: Toc entries not showing page number on desktop (#369) @cdrini
|
255
781
|
|
256
782
|
# 4.13.0
|
783
|
+
|
257
784
|
- Fix: BookReader.unbind not actually unbinding (#360) @shaneriley
|
258
785
|
- Dev: New demo with configurable IA id: `demo-internetarchive.html?ocaid=foo` (#356) @Pyrojet99
|
259
786
|
- Dev: Add E2E tests for right-to-left books (#350) @Pyrojet99
|
@@ -262,6 +789,7 @@ Fix: update fullscreen toggle methods to fire behaviors in an expected way @iisa
|
|
262
789
|
- Feature: Table of contents panel in mobile view (#351) @Pyrojet99
|
263
790
|
|
264
791
|
# 4.12.0
|
792
|
+
|
265
793
|
- Fix: Test command for Windows users @cdrini
|
266
794
|
- Dev: Autoplay e2e test @pyrojet99
|
267
795
|
- Dev: Enable eslint for tests @Kartik1397
|
@@ -271,9 +799,11 @@ Fix: update fullscreen toggle methods to fire behaviors in an expected way @iisa
|
|
271
799
|
- Feature: Visual adjustments checkboxes on mobile @pyrojet99
|
272
800
|
|
273
801
|
# 4.11.1
|
802
|
+
|
274
803
|
- Fix: search urls now redirect to query parameter `q=foo` @mc2
|
275
804
|
|
276
805
|
# 4.11.0
|
806
|
+
|
277
807
|
- Dev: Add E2E tests for searching on desktop @Pyrojet99
|
278
808
|
- Fix: Search result not highlighted when landing on page with matches @iisa
|
279
809
|
- Dev: Remove console logs from jest tests @NayamAmarshe
|
@@ -285,28 +815,33 @@ Fix: update fullscreen toggle methods to fire behaviors in an expected way @iisa
|
|
285
815
|
- Dev: Update codecov, iso-language-codes @dependabot-preview + @cdrini
|
286
816
|
|
287
817
|
# 4.10.0
|
818
|
+
|
288
819
|
- Fix: BR shouldn't change URL until the user interacts with the page @mc2
|
289
820
|
- Feature: Add `startFullscreen` option to launch in fullscreen @shaneriley
|
290
821
|
- Feature (beta): Preview pages can be swapped out with search pin clicking @cdrini
|
291
822
|
|
292
823
|
# 4.9.0
|
824
|
+
|
293
825
|
- Fix: -/+ buttons not zooming in Chrome @ishank-dev
|
294
826
|
- Add chapters demo to e2e tests @ishank-dev
|
295
827
|
- Make Travis testcafe runs less flaky @shaneriley
|
296
828
|
- Pin npm version dependencies for consistent builds @cdrini
|
297
829
|
- Standardize HTML structure for pages across view modes @shaneriley
|
298
|
-
|
830
|
+
- WARNING: Some of the html elements/classes have changed. Potentially breaking change.
|
299
831
|
- Feature (beta): Preview pages. Specifying `viewable: false` on pages causes them to render a preview image placeholder. @cdrini
|
300
832
|
- Remove deprecated QUnit tests @Pyrojet99
|
301
833
|
- Remove console.logs in test output @NayamAmarshe
|
302
834
|
|
303
835
|
# 4.8.0
|
836
|
+
|
304
837
|
- Adds customizable layout controls @shaneriley
|
305
838
|
|
306
839
|
# 4.7.1
|
840
|
+
|
307
841
|
- Add new parameters to analytics @bfalling
|
308
842
|
|
309
843
|
# 4.7.0
|
844
|
+
|
310
845
|
Big change: All of BookReader core is now compiled to es5, and a large number of
|
311
846
|
chunks have been re-written in es6. Care has been taken to ensure no public APIs
|
312
847
|
have changed, but note this was a big change.
|
@@ -316,6 +851,7 @@ have changed, but note this was a big change.
|
|
316
851
|
- Increase testcafe coverage; @iisa @shaneriley
|
317
852
|
|
318
853
|
# 4.6.0
|
854
|
+
|
319
855
|
Big change: all the plugins are now written in es6, and compiled to es5. There should
|
320
856
|
be no observable changes, but note this was a big change.
|
321
857
|
|
@@ -329,57 +865,71 @@ be no observable changes, but note this was a big change.
|
|
329
865
|
- Add `npm run serve-dev` for auto-watching + auto-refreshing dev server; @cdrini
|
330
866
|
|
331
867
|
# 4.5.1
|
868
|
+
|
332
869
|
- Fix: Click-to-flip now works in 2up mode zoomed in
|
333
870
|
- Fix: Image panning sometimes not working
|
334
871
|
- Fix #144: Hamburger icon only clickable on lines
|
335
872
|
- Add TestCafe support
|
336
873
|
|
337
874
|
# 4.5.0
|
875
|
+
|
338
876
|
- ReadAloud now supports jumping backwards
|
339
877
|
- Pressing -/= (or -/+ on numpad) zooms out/in
|
340
878
|
- FIX #179: ReadAloud now ignores hyphens between lines
|
341
879
|
|
342
880
|
# 4.4.2
|
881
|
+
|
343
882
|
- more robust menu toggle plugin, working well with zoom & panning around in zoom
|
344
883
|
- more tests
|
345
884
|
|
346
885
|
# 4.4.1
|
886
|
+
|
347
887
|
- Remove accidental es6 syntax in BookReader.js (breaking IE11)
|
348
888
|
|
349
889
|
# 4.4.0
|
890
|
+
|
350
891
|
- New ReadAloud controls + engine. Uses browser's SpeechSynthesis API instead of server-side test-to-speech
|
351
892
|
|
352
893
|
# 4.3.2
|
894
|
+
|
353
895
|
- menu toggle plugin, now applies to in-page & fullscreen views + early escapes when navbar isn't present
|
354
896
|
|
355
897
|
# 4.3.0
|
898
|
+
|
356
899
|
- New plugin, `fullscreen_menu_toggle`, allowing center-tap to hide UI
|
357
900
|
- TTS Plugin logs analytics events (if enabled)
|
358
901
|
- ES6 compilation step no longer performed on client; build files are included in repo so clients have no build step
|
359
902
|
|
360
903
|
# 4.2.5
|
904
|
+
|
361
905
|
- Large refactor of plugin.tts.js
|
362
|
-
- ES6
|
906
|
+
- ES6 compilation step
|
363
907
|
- Known bug: Clicking on page while TTS is playing won't stop the playback
|
364
908
|
|
365
909
|
# 4.2.4
|
910
|
+
|
366
911
|
- Skips initialization of vendor fullscreen plugin when on a mobile device
|
367
912
|
|
368
913
|
# 4.2.3
|
914
|
+
|
369
915
|
- Creates vendor native fullscreen plugin and example use page
|
370
916
|
|
371
917
|
# 4.2.2
|
918
|
+
|
372
919
|
- Adds options for flipSpeed and flipDelay, the latter used for autoplay
|
373
920
|
|
374
921
|
# 4.2.1
|
922
|
+
|
375
923
|
- Fix rapid reload bug from thumbnail view
|
376
924
|
|
377
925
|
# 4.2.0
|
926
|
+
|
378
927
|
- Add eslint
|
379
928
|
- Fix issue analytics plugin
|
380
929
|
- Make the page display more extendable by splitting it into two functions
|
381
930
|
|
382
931
|
# 4.1.0
|
932
|
+
|
383
933
|
- Change BookReader.js function comments to JSDoc
|
384
934
|
- Move autoplay feature into an optional plugin
|
385
935
|
- Change the format of the current page string in the navbar. eg "1 / 100 (Cover)"
|
@@ -387,10 +937,12 @@ be no observable changes, but note this was a big change.
|
|
387
937
|
- Simplify BookReader.prototype.init
|
388
938
|
|
389
939
|
# 4.0.1
|
940
|
+
|
390
941
|
- Add options.navBarTitle, which gets shown to the left of the scrubber.
|
391
942
|
- Fix issue where there was a 1px border on cover leafEdge
|
392
943
|
|
393
944
|
# 4.0.0
|
945
|
+
|
394
946
|
V4 was driven by updating BookReader to work inline on the archive.org details page. This required code refactoring (eg: changing ids to classes), and also updating the design so it integrates well within the details page theatre section.
|
395
947
|
|
396
948
|
- BookReader selectors made relative to BookReader. This means it shouldn't interfere with parent page, and also more than one BookReader instance can be on the page.
|
@@ -400,9 +952,11 @@ V4 was driven by updating BookReader to work inline on the archive.org details p
|
|
400
952
|
- In transition: JavaScript code is formatted with 2 spaces instead of 4
|
401
953
|
|
402
954
|
# 3.2.1
|
955
|
+
|
403
956
|
- Fix so initParams normalizes params.page to params.index, to prevent complexity of priority of page versus index.
|
404
957
|
|
405
958
|
# 3.2.0
|
959
|
+
|
406
960
|
On Archive.org, we needed a way to pass in a default start page for books. These changes make that easier.
|
407
961
|
|
408
962
|
- Update the way bookreader inits from various params contexts
|
@@ -411,26 +965,33 @@ On Archive.org, we needed a way to pass in a default start page for books. These
|
|
411
965
|
- Update to handle both params.index and params.page when provided in defaults. Separate page parsing into separate method.
|
412
966
|
|
413
967
|
# 3.1.0
|
968
|
+
|
414
969
|
- Add new IFrame plugin to enable two-way communication between a BookReader inside an `<iframe>` and its parent window.
|
415
970
|
- Move the `paramsFromCurrent`, `paramsFromFragment`, and `fragmentFromParams` methods back into BookReader core and out of the URL Plugin. This change should be backwards-compatible with previous versions.
|
416
971
|
- Fire a new event, `fragmentChange`, on BookReader when the reader’s state changes.
|
417
972
|
|
418
973
|
# 3.0.8
|
974
|
+
|
419
975
|
- Add additional tracking event when view changes
|
420
976
|
|
421
977
|
# 3.0.7
|
978
|
+
|
422
979
|
- Fix: Assign options.titleLeaf to this.titleLeaf
|
423
980
|
|
424
981
|
# 3.0.6
|
982
|
+
|
425
983
|
- Another fix for plugin.search.js. The path GET param should not have a trailing slash.
|
426
984
|
|
427
985
|
# 3.0.5
|
986
|
+
|
428
987
|
- Hotfix for plugin.search.js. Fixes issue where search results were not rendered on page flip.
|
429
988
|
|
430
989
|
# 3.0.4
|
990
|
+
|
431
991
|
- Hotfix for plugin.search.js. Fixes fulltext search for some books on Archive.org
|
432
992
|
|
433
993
|
# 3.0.3
|
994
|
+
|
434
995
|
- Add more options: showToolbar, showLogo
|
435
996
|
- Add this.options field, which stores the options last used in setup call
|
436
997
|
- Improve `_getDataFlattened` to have simple cache breaker
|
@@ -439,14 +1000,16 @@ On Archive.org, we needed a way to pass in a default start page for books. These
|
|
439
1000
|
- Move constants out of instance, and into class (eg BookReader.constMode1up)
|
440
1001
|
|
441
1002
|
# 3.0.2
|
1003
|
+
|
442
1004
|
In the process of upgrading IA, to use the new BookReader API, more changes/fixes were made.
|
443
1005
|
|
444
1006
|
- Separate default options into BookReader.defaultOptions. This allows clients which use Internet Archive's JSIA endpoint (see demo-ia-plato.html) to have a hook into changing options. Also update plugins, to extend defaultOptions instead of modifying options in setup functions.
|
445
|
-
- Add BookReader.version, which helps IA support older versions in the JSIA endpoint (eg https://archive.org/bookreader/BookReaderJSLocate.php?id=theworksofplato01platiala&subPrefix=theworksofplato01platiala).
|
1007
|
+
- Add BookReader.version, which helps IA support older versions in the JSIA endpoint (eg <https://archive.org/bookreader/BookReaderJSLocate.php?id=theworksofplato01platiala&subPrefix=theworksofplato01platiala>).
|
446
1008
|
- Bring some IA-specific code into plugin.chapters.js
|
447
1009
|
- Add more options that were previously missed (protected, olHost, subPrefix, bookPath, zip, imageFormat, bookId). These are mostly for plugins. If you intend on using any of the plugins, you can see the full config options there.
|
448
1010
|
|
449
1011
|
# 3.0.1
|
1012
|
+
|
450
1013
|
- Fix issue setting info and share dialogs
|
451
1014
|
|
452
1015
|
# 3.0.0 Major Release
|
@@ -457,12 +1020,12 @@ Changes include:
|
|
457
1020
|
|
458
1021
|
- Make BookReader easier to use, by adding `options` to the constructor, and adding new `options.data` option. The old way of overriding properties should still work, but it is deprecated. With `options.data`, all BookReader needs is the image URLs and dimensions. To have dynamic image URLs (eg for scaling), omit the URL from `options.data`, and include `options.getPageURI`.
|
459
1022
|
- Factor out extra features into plugins. See `plugins` directory. Example plugins include:
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
1023
|
+
- plugins.chapters.js - render chapter markers
|
1024
|
+
- plugins.search.js - add search ui, and callbacks
|
1025
|
+
- plugins.tts.js - add tts (read aloud) ui, sound library, and callbacks
|
1026
|
+
- plugins.url.js - automatically updates the browser url
|
1027
|
+
- plugins.resume.js - uses cookies to remember the current page
|
1028
|
+
- plugins.mobile_nav.js - adds responsive mobile nav to BookReader
|
466
1029
|
Note that there is minor overhead added when loading multiple script tags. If this is a concern, a build step, can be used to concatenate the files into a single JS file.
|
467
1030
|
- Clean up code: Remove a lot of commented-out code. Remove some unused methods.
|
468
1031
|
- Change some, but not all, CSS ids to classes.
|
@@ -471,17 +1034,21 @@ Note that there is minor overhead added when loading multiple script tags. If th
|
|
471
1034
|
- BREAKING: If features that are now in plugins were used, the plugin's JS file will need to be included as well. Note, we would also like to separate the CSS into a separate file for the next major release.
|
472
1035
|
|
473
1036
|
# 2.1.0
|
1037
|
+
|
474
1038
|
- Add auto mode to 1up autosize (in addition to height and width)
|
475
1039
|
- Remove the old responsiveAutofit (which is not needed anymore)
|
476
1040
|
|
477
1041
|
# 2.0.2
|
1042
|
+
|
478
1043
|
- Fix regex issue when searching
|
479
1044
|
- Make the search api endpoint configurable
|
480
1045
|
|
481
1046
|
# 2.0.1
|
1047
|
+
|
482
1048
|
- Add package.json and CHANGELOG
|
483
1049
|
- Remove more IA-specific code
|
484
1050
|
|
485
1051
|
# 2.0.0
|
1052
|
+
|
486
1053
|
- Major release
|
487
1054
|
- Many changes from updated Archive.org bookreader brought back to this open source project.
|