Skip to content

Commit

Permalink
move rooms
Browse files Browse the repository at this point in the history
sub
  • Loading branch information
Weedshaker committed Oct 27, 2024
1 parent 437b78d commit 61c6d9f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions readme
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ The easiest way to connect with others without the need for phone numbers or ema
- [ ] empty message when opening new chat room
- [ ] show user status if mutually connected, below
- [ ] mutually connected users with self (in sync) incl. indirect/recursive as provider status
- [ ] dialog for choosing providers when entering new room
- [ ] ping providers to see if they are online before trying connection or proposing it for connection: https://jsfiddle.net/4yrmknfa/15/ (Image error)
- [ ] navigation menu redesign, new icon, room link share from rooms menu with qr
- [ ] share room, share api + https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API, https://docs.pwabuilder.com/#/home/native-features?id=web-share-api, https://docs.pwabuilder.com/#/home/native-features?id=how-to-share-from-your-pwa
- [ ] QR code generator (something like https://github.com/sumimakito/Awesome-qr.js#browsers) and print css https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_media_queries/Printing
Expand Down
2 changes: 1 addition & 1 deletion src/es/Environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ self.Environment = {
language: currentScriptUrl.searchParams.get('language') || document.documentElement.getAttribute('lang') || 'en',
stage: currentScriptUrl.searchParams.get('stage') || document.documentElement.getAttribute('stage') || 'alpha',
keepAlive: 86400000,
version: currentScriptUrl.searchParams.get('version') || document.documentElement.getAttribute('version') || '4.2.38', // https://semver.org/
version: currentScriptUrl.searchParams.get('version') || document.documentElement.getAttribute('version') || '4.2.39', // https://semver.org/
/**
* Get custom mobile breakpoint
* @param {{constructor?: string, tagName?: string, namespace?: string}} organism
Expand Down
10 changes: 5 additions & 5 deletions src/es/components/pages/Chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,15 @@ export default class Chat extends Index {
name: 'c-providers'
},
{
// TODO: see todos at molecules/Providers.js Class
// @ts-ignore
path: `${this.importMetaUrl}../../chat/es/components/molecules/Providers.js?${Environment?.version || ''}`,
name: 'chat-m-providers'
path: `${this.importMetaUrl}../../event-driven-web-components-yjs/src/es/controllers/Rooms.js?${Environment?.version || ''}`,
name: 'c-rooms'
},
{
// TODO: see todos at molecules/Providers.js Class
// @ts-ignore
path: `${this.importMetaUrl}../../chat/es/components/controllers/Rooms.js?${Environment?.version || ''}`,
name: 'c-rooms'
path: `${this.importMetaUrl}../../chat/es/components/molecules/Providers.js?${Environment?.version || ''}`,
name: 'chat-m-providers'
},
{
// @ts-ignore
Expand Down
2 changes: 1 addition & 1 deletion src/es/event-driven-web-components-yjs

0 comments on commit 61c6d9f

Please sign in to comment.