Skip to content

Commit

Permalink
L:: v.0.5.4; V:: v.0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RussCoder committed Feb 1, 2023
1 parent f7c575d commit 96ed1af
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "DjVu.js Viewer",
"short_name": "DV",
"version": "0.9.0.0",
"version": "0.9.1.0",
"author": "RussCoder",
"homepage_url": "https://github.com/RussCoder/djvujs",
"description": "Opens links to .djvu files. Allows opening files from a local disk. Processes <object> & <embed> tags.",
Expand Down
4 changes: 4 additions & 0 deletions library/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# DjVu.js Library's Changelog

## v.0.5.4 (01.02.2023)

- Fix: error messages are sent from the worker again.

## v.0.5.3 (18.02.2021)

- Error handlers for unhandled promise rejections and errors in the worker.
Expand Down
2 changes: 1 addition & 1 deletion library/src/DjVu.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var DjVu = {
VERSION: '0.5.3',
VERSION: '0.5.4',
IS_DEBUG: false,
setDebugMode: (flag) => DjVu.IS_DEBUG = flag
};
Expand Down
5 changes: 5 additions & 0 deletions viewer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# DjVu.js Viewer's Changelog

## v.0.9.1 (01.02.2023)

- Spanish translation update.
- DjVu.js v.0.5.4: error messages are displayed again.

## v.0.9.0 (24.05.2022)

- Feature: several pages in a row in the continuous scroll mode.
Expand Down
2 changes: 1 addition & 1 deletion viewer/src/DjVuViewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Events = constant({

export default class DjVuViewer extends EventEmitter {

static VERSION = '0.9.0';
static VERSION = '0.9.1';

static Events = Events;
static Constants = Constants;
Expand Down

0 comments on commit 96ed1af

Please sign in to comment.