Skip to content

Commit

Permalink
BuildVu 2021.09 (1.12.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonatherton committed Sep 21, 2021
1 parent 5091fb1 commit cb6e1c6
Show file tree
Hide file tree
Showing 11 changed files with 606 additions and 119 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = function(grunt) {
options: {
mangle: true,
compress: true,
banner: '/*! IDRViewer - v<%= pkg.version %> | Copyright <%= grunt.template.today("yyyy") %> IDRsolutions */\n'
banner: '/*! IDRViewer - v<%= pkg.version %> | Copyright <%= grunt.template.today("yyyy") %> IDRsolutions */'
},
dist: {
files: {
Expand Down
173 changes: 78 additions & 95 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "idrviewer",
"version": "1.12.1",
"version": "1.12.2",
"description": "The IDRViewer is a viewer designed for documents converted using BuildVu",
"keywords": [
"idrsolutions",
Expand Down Expand Up @@ -32,8 +32,8 @@
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-qunit": "^5.0.1",
"grunt-contrib-qunit": "^5.1.0",
"grunt-contrib-uglify": "^5.0.1",
"qunit": "^2.16.0"
"qunit": "^2.17.2"
}
}
8 changes: 7 additions & 1 deletion src/css/idrviewer.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* IDRViewer - v1.8.2 */
/* IDRViewer - v1.12.2 */

/* Layout Styles */
.page {
Expand Down Expand Up @@ -44,6 +44,12 @@
cursor: grabbing;
}

/* Highlight Style */
.highlight {
color: black;
background-color: yellow;
}

/* Presentation Layout */
.layout-presentation .page {
visibility: hidden;
Expand Down
3 changes: 3 additions & 0 deletions src/examples/complete/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Complete UI Changelog
---------------------

2.1.0 (21 Sep 2021)
- Added search result highlighting

2.0.0 (17 Nov 2020)
- Large refactor to improve extensibility and make the code easier to follow

Expand Down
2 changes: 1 addition & 1 deletion src/examples/complete/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- v2.0.0 -->
<!-- v2.1.0 -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down
3 changes: 2 additions & 1 deletion src/js/.jshintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"strict": true,
"unused": true
"unused": true,
"esversion": 6
}
7 changes: 6 additions & 1 deletion src/js/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
IDRViewer Changelog
-------------------
1.12.2 (21 Sep 2021)
- Add search result highlighting (to Complete UI)
- Add support for audio Rendition actions
- Update dev dependencies

1.12.1 (10 Aug 2021)
- Update IDRViewer developer dependencies to latest versions
- Update dev dependencies

1.12.0 (18 May 2021)
- Add support for Link annotations with Launch actions via enableLaunchActions config setting
Expand Down
Loading

0 comments on commit cb6e1c6

Please sign in to comment.