Skip to content

Commit

Permalink
v1.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 4, 2020
1 parent 97e0916 commit b8cad5b
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
f683f14a3024d69e14515f982b1d3398317e39da
Sat May 2 12:05:26 UTC 2020
03c44d76c908b00a970da3037b0130e77686be8c
Mon May 4 17:48:47 UTC 2020
2 changes: 1 addition & 1 deletion index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion manifest.appcache
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CACHE MANIFEST

# 2020-05-02:v1.14.1
# 2020-05-04:v1.14.2
# updmin:v8.0.0

NETWORK:
Expand Down
16 changes: 16 additions & 0 deletions oauth-result/dropbox.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>KeeWeb</title>
</head>
<body>
<script>
window.opener.postMessage(
{ storage: 'dropbox', search: location.search },
window.location.origin
);
window.close();
</script>
</body>
</html>
16 changes: 16 additions & 0 deletions oauth-result/gdrive.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>KeeWeb</title>
</head>
<body>
<script>
window.opener.postMessage(
{ storage: 'gdrive', search: location.search },
window.location.origin
);
window.close();
</script>
</body>
</html>
16 changes: 16 additions & 0 deletions oauth-result/onedrive.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>KeeWeb</title>
</head>
<body>
<script>
window.opener.postMessage(
{ storage: 'onedrive', search: location.search },
window.location.origin
);
window.close();
</script>
</body>
</html>
2 changes: 1 addition & 1 deletion service-worker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const VERSION = '1.14.1';
const VERSION = '1.14.2';

self.addEventListener('install', event =>
event.waitUntil(
Expand Down

0 comments on commit b8cad5b

Please sign in to comment.