Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Room Feature #12

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e457caa
fix wrong RTCPeer.config syntax
schlagmichdoch Oct 1, 2022
b394a26
add feature to enter room via url and share that url via button
schlagmichdoch Oct 1, 2022
d575375
implement indexedDB in new class PersistentStorage to make rooms pers…
schlagmichdoch Oct 3, 2022
7721f9d
only write roomId from indexedDB to sessionStorage if roomId in sessi…
schlagmichdoch Oct 3, 2022
0f7f54a
fix scope error
schlagmichdoch Oct 3, 2022
59adff2
Merge branch 'wulingate_join_room_via_url' into wulingate_room_wip
schlagmichdoch Oct 3, 2022
737f7b1
fix indexedDB error: use insert or update method instead of insert on…
schlagmichdoch Oct 3, 2022
27db695
merged wulingate_make_room_persistent_on_pwa into branch
schlagmichdoch Oct 3, 2022
d00d72d
tidy up error handling for navigator.clipboard.writeText
schlagmichdoch Oct 3, 2022
48719c9
add error handling to IndexedDB API -> works again on Firefox Private…
schlagmichdoch Oct 3, 2022
4e94d32
introduce keyRooms + roomKeys with UI to share permanent rooms tempor…
schlagmichdoch Oct 5, 2022
cb8000e
cherry-pick qr-code commit by SuperSandro2000
SuperSandro2000 Nov 25, 2021
567a08e
use QRCode library introduced in last commit to show qr-code with tem…
schlagmichdoch Oct 5, 2022
2340a9f
add roomId to UI again
schlagmichdoch Oct 5, 2022
a627082
restart background animation when last peer leaves
schlagmichdoch Oct 5, 2022
a5e1c1b
remove duplicate code fragment
schlagmichdoch Oct 5, 2022
0b7c7c8
move styling to style-sheet and increase margins on InviteUserToRoomD…
schlagmichdoch Oct 5, 2022
bd507df
add invalid room key event: 6-digit number from user input is not a v…
schlagmichdoch Oct 5, 2022
c7714ef
merge master into branch
schlagmichdoch Nov 17, 2022
145139b
fix uncompleted refactoring .ip -> .roomId
schlagmichdoch Nov 17, 2022
5fe0b54
prevent server from failing if ws request does not include roomkey pa…
schlagmichdoch Nov 17, 2022
5595457
fix delay between circle and peersUI redrawing + clear intervals on e…
schlagmichdoch Nov 17, 2022
e37c581
add qrcode.js to PWA cache and increase cache_name version number by one
schlagmichdoch Nov 17, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add qrcode.js to PWA cache and increase cache_name version number by one
  • Loading branch information
schlagmichdoch committed Nov 17, 2022
commit e37c5819bae2d4163601ad2e20321925815bf9b3
3 changes: 2 additions & 1 deletion client/service-worker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var CACHE_NAME = 'snapdrop-cache-v2';
var CACHE_NAME = 'snapdrop-cache-v3';
var urlsToCache = [
'./',
'index.html',
Expand All @@ -7,6 +7,7 @@ var urlsToCache = [
'scripts/ui.js',
'scripts/clipboard.js',
'scripts/theme.js',
'scripts/qrcode.js',
'sounds/blop.mp3',
'images/favicon-96x96.png'
];
Expand Down