Skip to content

Commit

Permalink
Release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jan 3, 2024
1 parent 9158032 commit 0410041
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2014-2023 Individual contributors to reveal.js-local
Copyright (c) 2014-2024 Individual contributors to reveal.js-local

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
14 changes: 7 additions & 7 deletions docs/presentation-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@
<meta name=apple-mobile-web-app-status-bar-style content=black-translucent>
<title>[See H1 tag in first slide]</title>
<link rel=icon href=https://center-key.github.io/reveal.js-local/assets/bookmark.png>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4/css/all.min.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/dna-engine@3.0/dist/dna-engine.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/dna-engine@3.0/dist/panel-nav.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5/css/all.min.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/dna-engine@3.1/dist/dna-engine.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/dna-engine@3.1/dist/panel-nav.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/reveal.js@5.0/dist/reveal.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/hljs-enhance@2.0/hljs-enhance.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/gh/center-key/reveal.js-local@0.3/docs/reveal.js-local.css>
<script defer src=https://cdn.jsdelivr.net/npm/reveal.js@5.0/dist/reveal.js></script>
<script defer src=https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9/build/highlight.min.js></script>
<script defer src=https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9/build/languages/http.min.js></script>
<script defer src=https://cdn.jsdelivr.net/npm/dna-engine@3.0/dist/dna-engine.min.js></script>
<script defer src=https://cdn.jsdelivr.net/npm/dna-engine@3.1/dist/dna-engine.min.js></script>
<script defer src=https://cdn.jsdelivr.net/npm/hljs-enhance@2.0/hljs-enhance.js></script>
<script defer src=https://cdn.jsdelivr.net/gh/center-key/reveal.js-local@0.3/docs/reveal.js-local.js></script>
<script src=https://cdn.jsdelivr.net/npm/chart.js@4.4/dist/chart.umd.js></script> <!-- wait for loading -->
<script src=https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.2/dist/chartjs-plugin-datalabels.min.js></script> <!-- wait for loading -->
<script src=https://cdn.jsdelivr.net/npm/chartjs-plugin-annotation@3.0/dist/chartjs-plugin-annotation.min.js></script> <!-- wait for loading -->

<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- reveal.js-local v0.3.0 -->
<!-- reveal.js-local v0.3.1 -->
<!-- ====================== -->
<!-- A single HTML file for showing a reveal.js presentation locally. -->
<!-- -->
Expand Down Expand Up @@ -377,7 +377,7 @@ <h2>Chart.js Slides</h2>
<section>
<h2>Chart.js</h2>
<figure>
<figcaption>Highest Mountains by U.S. State</figcaption>
<figcaption>Highest Mountain Peaks by U.S. State</figcaption>
<canvas id=peaks-chart></canvas>
</figure>
<script>
Expand Down Expand Up @@ -429,7 +429,7 @@ <h2>Chart.js Code</h2>
&lt;section&gt;
&lt;h2&gt;Chart.js&lt;/h2&gt;
&lt;figure&gt;
&lt;figcaption&gt;Highest Mountains by U.S. State&lt;/figcaption&gt;
&lt;figcaption&gt;Highest Mountain Peaks by U.S. State&lt;/figcaption&gt;
&lt;canvas id=peaks-chart&gt;&lt;/canvas&gt;
&lt;/figure&gt;
&lt;script&gt;
Expand Down
2 changes: 1 addition & 1 deletion docs/reveal.js-local.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! reveal.js-local v0.3.0 ~~ https://github.com/center-key/reveal.js-local ~~ MIT License */
/*! reveal.js-local v0.3.1 ~~ https://github.com/center-key/reveal.js-local ~~ MIT License */

.reveal .slides * { box-sizing: border-box; }
.reveal .slides >section { padding-bottom: 50px; }
Expand Down
4 changes: 2 additions & 2 deletions docs/reveal.js-local.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! reveal.js-local v0.3.0 ~~ https://github.com/center-key/reveal.js-local ~~ MIT License
//! reveal.js-local v0.3.1 ~~ https://github.com/center-key/reveal.js-local ~~ MIT License

const settings = {
// jshint ignore:start
Expand All @@ -18,7 +18,7 @@ const settings = {
};

const revealJsLocal = {
version: '0.3.0',
version: '0.3.1',
themes() {
const version = {
reveal: '5.0',
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reveal.js-local",
"version": "0.3.0",
"version": "0.3.1",
"description": "A single HTML file for showing a reveal.js presentation locally",
"license": "MIT",
"main": "docs/presentation-template.html",
Expand Down Expand Up @@ -52,12 +52,12 @@
"test": "html-validator docs"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "~6.4",
"@fortawesome/fontawesome-free": "~6.5",
"add-dist-header": "~1.3",
"chart.js": "~4.4",
"chartjs-plugin-annotation": "~3.0",
"chartjs-plugin-datalabels": "~2.2",
"dna-engine": "~3.0",
"dna-engine": "~3.1",
"highlight.js": "~11.9",
"hljs-enhance": "~2.0",
"jshint": "~2.13",
Expand Down
4 changes: 2 additions & 2 deletions src/presentation-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ <h2>Chart.js Slides</h2>
<section>
<h2>Chart.js</h2>
<figure>
<figcaption>Highest Mountains by U.S. State</figcaption>
<figcaption>Highest Mountain Peaks by U.S. State</figcaption>
<canvas id=peaks-chart></canvas>
</figure>
<script>
Expand Down Expand Up @@ -429,7 +429,7 @@ <h2>Chart.js Code</h2>
&lt;section&gt;
&lt;h2&gt;Chart.js&lt;/h2&gt;
&lt;figure&gt;
&lt;figcaption&gt;Highest Mountains by U.S. State&lt;/figcaption&gt;
&lt;figcaption&gt;Highest Mountain Peaks by U.S. State&lt;/figcaption&gt;
&lt;canvas id=peaks-chart&gt;&lt;/canvas&gt;
&lt;/figure&gt;
&lt;script&gt;
Expand Down

0 comments on commit 0410041

Please sign in to comment.