summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Luka Šijanec <sijanecantonluka@gmail.com>2020-02-09 00:40:58 +0100
committerAnton Luka Šijanec <sijanecantonluka@gmail.com>2020-02-09 00:40:58 +0100
commit977422a7a3836ed6d7aa1694f11f27b7299522de (patch)
treea619667999da02aebd3810ab02cab5e3d5cc46a4
parentadded images support to messages and removed npm and node modules dependency (diff)
downloadbeziapp-977422a7a3836ed6d7aa1694f11f27b7299522de.tar
beziapp-977422a7a3836ed6d7aa1694f11f27b7299522de.tar.gz
beziapp-977422a7a3836ed6d7aa1694f11f27b7299522de.tar.bz2
beziapp-977422a7a3836ed6d7aa1694f11f27b7299522de.tar.lz
beziapp-977422a7a3836ed6d7aa1694f11f27b7299522de.tar.xz
beziapp-977422a7a3836ed6d7aa1694f11f27b7299522de.tar.zst
beziapp-977422a7a3836ed6d7aa1694f11f27b7299522de.zip
-rw-r--r--pages/about.html2
-rw-r--r--pages/changelog.html6
-rw-r--r--sw.js45
3 files changed, 10 insertions, 43 deletions
diff --git a/pages/about.html b/pages/about.html
index e3e75b8..96990e2 100644
--- a/pages/about.html
+++ b/pages/about.html
@@ -73,7 +73,7 @@
<div class="col s12">
<h3><b class="title-secondary">Beži</b><span class="title-primary">App</span>
</h3>
- <h5 class="subheader">Version 1.0.8-beta</h5>
+ <h5 class="subheader">Version 1.0.9-beta</h5>
</div>
</div>
<div class="row">
diff --git a/pages/changelog.html b/pages/changelog.html
index 06877aa..89370ea 100644
--- a/pages/changelog.html
+++ b/pages/changelog.html
@@ -47,6 +47,12 @@
<h3>Changelog</h3>
<ul class="collapsible">
<li>
+ <div class="collapsible-header">Version 1.0.9-beta</div>
+ <div class="collapsible-body">
+ <ul class="collection">
+ <li class="collection-item">Added image sending support to messaging</li>
+ </ul>
+ </div>
<div class="collapsible-header">Version 1.0.8-beta</div>
<div class="collapsible-body">
<ul class="collection">
diff --git a/sw.js b/sw.js
index d937883..027615f 100644
--- a/sw.js
+++ b/sw.js
@@ -1,5 +1,5 @@
// Change version to cause cache refresh
-const static_cache_name = "site-static-v1.0.8";
+const static_cache_name = "site-static-v1.0.9";
// Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js
// sw.js NE SME BITI CACHAN, ker vsebuje verzijo!
const assets = [
@@ -54,6 +54,7 @@ const assets = [
"./js/lib/materialize.min.js",
"./js/lib/jquery.min.js",
"./js/lib/localforage.min.js",
+"./js/lib/xss.js",
"./js/lib/fullcalendar",
"./js/lib/fullcalendar/daygrid",
"./js/lib/fullcalendar/daygrid/main.min.js",
@@ -67,45 +68,6 @@ const assets = [
"./js/initialize.js",
"./js/absences.js",
"./js/changelog.js",
-"./node_modules",
-"./node_modules/commander",
-"./node_modules/commander/CHANGELOG.md",
-"./node_modules/commander/Readme.md",
-"./node_modules/commander/typings",
-"./node_modules/commander/typings/index.d.ts",
-"./node_modules/commander/LICENSE",
-"./node_modules/commander/index.js",
-"./node_modules/commander/package.json",
-"./node_modules/cssfilter",
-"./node_modules/cssfilter/lib",
-"./node_modules/cssfilter/lib/css.js",
-"./node_modules/cssfilter/lib/util.js",
-"./node_modules/cssfilter/lib/default.js",
-"./node_modules/cssfilter/lib/index.js",
-"./node_modules/cssfilter/lib/parser.js",
-"./node_modules/cssfilter/LICENSE",
-"./node_modules/cssfilter/package.json",
-"./node_modules/cssfilter/README.md",
-"./node_modules/xss",
-"./node_modules/xss/README.zh.md",
-"./node_modules/xss/dist",
-"./node_modules/xss/dist/test.html",
-"./node_modules/xss/dist/xss.js",
-"./node_modules/xss/dist/xss.min.js",
-"./node_modules/xss/lib",
-"./node_modules/xss/lib/cli.js",
-"./node_modules/xss/lib/util.js",
-"./node_modules/xss/lib/default.js",
-"./node_modules/xss/lib/xss.js",
-"./node_modules/xss/lib/index.js",
-"./node_modules/xss/lib/parser.js",
-"./node_modules/xss/typings",
-"./node_modules/xss/typings/xss.d.ts",
-"./node_modules/xss/LICENSE",
-"./node_modules/xss/package.json",
-"./node_modules/xss/bin",
-"./node_modules/xss/bin/xss",
-"./node_modules/xss/README.md",
"./manifest.json",
"./pages",
"./pages/timetable.html",
@@ -117,8 +79,7 @@ const assets = [
"./pages/gradings.html",
"./pages/grades.html",
"./pages/privacypolicy.html",
-"./pages/tos.html",
-"./package-lock.json"
+"./pages/tos.html"
];
importScripts("/js/lib/localforage.min.js");