Skip to content

Commit

Permalink
Version 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bartnv committed Aug 22, 2023
1 parent cec74f6 commit 0f9b022
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion popout.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf8">
<title>MMVI FlowNotes</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="style.css?v4.1">
<link rel="stylesheet" type="text/css" href="style.css">
<style>
DIV#input { background-color: white; white-space: pre-wrap; padding: 10px; }
DIV#render { height: auto; width: auto; }
Expand Down
2 changes: 1 addition & 1 deletion share.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf8">
<title>MMVI FlowNotes</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="style.css?v4.1">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="//cdn.jsdelivr.net/npm/jquery@3.6.3/dist/jquery.min.js" crossorigin="anonymous"></script>
<script>
$().ready(function() {
Expand Down
5 changes: 3 additions & 2 deletions sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let version = 'v4.1';
let version = 'v4.2';

self.addEventListener('install', evt => {
console.log('Service worker ' + version + ' is being installed');
Expand All @@ -8,7 +8,8 @@ self.addEventListener('install', evt => {
'./index.html?' + version,
'./script.js?' + version,
'./style.css?' + version,
'./share.html?' + version
'./share.html?' + version,
'./popout.html?' + version
]);
})
);
Expand Down

0 comments on commit 0f9b022

Please sign in to comment.