├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── .vscode └── launch.json ├── README.md ├── docs └── img │ ├── electron.png │ ├── jest.png │ ├── react.png │ ├── redux.png │ ├── ts.png │ └── webpack.png ├── mocks ├── fileMock.js └── styleMock.js ├── ormconfig.json ├── package.json ├── resources ├── audio │ ├── note.mp3 │ ├── recieve.mp3 │ └── send.mp3 ├── icon.ico ├── icon1024.png ├── icon256.png ├── icon512.png ├── icons │ ├── 128x128.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ └── 64x64.png └── linux.icns ├── src ├── main │ ├── main.ts │ └── server │ │ ├── constants.ts │ │ ├── databases │ │ ├── chat │ │ │ ├── entity │ │ │ │ ├── Attachment.ts │ │ │ │ ├── Chat.ts │ │ │ │ ├── Handle.ts │ │ │ │ ├── Message.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── config │ │ │ ├── entity │ │ │ │ ├── Config.ts │ │ │ │ ├── Theme.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── transformers │ │ │ ├── BooleanTransformer.ts │ │ │ └── index.ts │ │ ├── fileSystem │ │ ├── index.ts │ │ └── types.ts │ │ ├── helpers │ │ └── utils.ts │ │ ├── index.ts │ │ ├── services │ │ ├── fcm │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── queue │ │ │ └── index.ts │ │ └── socket │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── types.ts └── renderer │ ├── @types │ └── index.d.ts │ ├── app.css │ ├── app.tsx │ ├── assets │ ├── default-blurhash.png │ ├── giphy-logo-circle.png │ ├── giphy-logo.png │ ├── icon.ico │ ├── icon128.png │ ├── icon256.png │ ├── icons │ │ ├── close.png │ │ ├── compose-icon.png │ │ ├── contact-icon-new.svg │ │ ├── contact-icon.png │ │ ├── conversation-close-icon.png │ │ ├── marker-icon.png │ │ ├── return-icon.png │ │ ├── return-icon.svg │ │ ├── search-icon.png │ │ ├── search-icon.svg │ │ ├── send-icon.png │ │ ├── settings-icon.png │ │ └── settings-icon.svg │ └── img │ │ ├── computer_check.png │ │ └── unknown_img.png │ ├── components │ ├── TitleBar │ │ ├── TitleBar.css │ │ ├── TitleBar.tsx │ │ ├── close.png │ │ ├── maximize.png │ │ ├── minimize.png │ │ └── unmaximize.png │ └── ViewContainer │ │ ├── LoginView │ │ ├── LoginView.css │ │ └── LoginView.tsx │ │ ├── MessagingView │ │ ├── LeftCol │ │ │ ├── BottomNav │ │ │ │ ├── BottomLeftNav.css │ │ │ │ └── BottomLeftNav.tsx │ │ │ ├── ConversationsNav │ │ │ │ ├── Conversation │ │ │ │ │ ├── Avatar │ │ │ │ │ │ ├── GroupAvatar.tsx │ │ │ │ │ │ ├── IndividualAvatar.tsx │ │ │ │ │ │ └── styles.css │ │ │ │ │ ├── Conversation.css │ │ │ │ │ └── Conversation.tsx │ │ │ │ ├── LeftConversationsNav.css │ │ │ │ └── LeftConversationsNav.tsx │ │ │ ├── LeftCol.css │ │ │ ├── LeftCol.tsx │ │ │ └── TopNav │ │ │ │ ├── LeftTopNav.css │ │ │ │ └── LeftTopNav.tsx │ │ ├── MessagingView.css │ │ ├── MessagingView.tsx │ │ └── RightCol │ │ │ ├── Details │ │ │ └── DetailsDisplay │ │ │ │ ├── AudioDisplay │ │ │ │ ├── AudioDisplay.css │ │ │ │ └── AudioDisplay.tsx │ │ │ │ ├── BubbleChatIcons │ │ │ │ ├── BubbleChatIcons.css │ │ │ │ └── BubbleChatIcons.tsx │ │ │ │ ├── Contact │ │ │ │ ├── DetailContact.css │ │ │ │ ├── DetailContact.tsx │ │ │ │ └── DetailContactAvatar │ │ │ │ │ ├── DetailContactAvatar.css │ │ │ │ │ └── DetailContactAvatar.tsx │ │ │ │ ├── DetailsDisplay.css │ │ │ │ └── DetailsDisplay.tsx │ │ │ ├── GIFSelection │ │ │ ├── GIFSelection.css │ │ │ └── GIFSelection.tsx │ │ │ ├── Messaging │ │ │ ├── BottomNav │ │ │ │ ├── RightBottomNav.css │ │ │ │ └── RightBottomNav.tsx │ │ │ ├── ConversationDisplay │ │ │ │ ├── ChatLabel │ │ │ │ │ ├── ChatLabel.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── MessageBubble │ │ │ │ │ ├── @types │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── DownloadProgress │ │ │ │ │ │ └── DownloadProgress.tsx │ │ │ │ │ ├── InChatAudio │ │ │ │ │ │ ├── InChatAudio.css │ │ │ │ │ │ └── InChatAudio.tsx │ │ │ │ │ ├── InChatReaction │ │ │ │ │ │ ├── InChatReaction.css │ │ │ │ │ │ └── InChatReaction.tsx │ │ │ │ │ ├── MessageBubble.css │ │ │ │ │ ├── NewReaction │ │ │ │ │ │ ├── NewReaction.css │ │ │ │ │ │ └── NewReaction.tsx │ │ │ │ │ ├── ReactionsDisplay │ │ │ │ │ │ ├── ReactionParticipant │ │ │ │ │ │ │ ├── ReactionParticipant.css │ │ │ │ │ │ │ └── ReactionParticipant.tsx │ │ │ │ │ │ ├── ReactionsDisplay.css │ │ │ │ │ │ └── ReactionsDisplay.tsx │ │ │ │ │ ├── UnsupportedMedia │ │ │ │ │ │ ├── UnsupportedMedia.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── RightConversationDisplay.css │ │ │ │ └── RightConversationDisplay.tsx │ │ │ └── TopNav │ │ │ │ ├── RightTopNav.css │ │ │ │ └── RightTopNav.tsx │ │ │ ├── NewMessage │ │ │ ├── NewMessageBottom │ │ │ │ ├── AudioVisualizer │ │ │ │ │ ├── AudioVisualizer.css │ │ │ │ │ └── AudioVisualizer.tsx │ │ │ │ ├── NewMessageBottomNav.css │ │ │ │ └── NewMessageBottomNav.tsx │ │ │ ├── NewMessageConversation │ │ │ │ ├── NewMessageConversationDisplay.css │ │ │ │ └── NewMessageConversationDisplay.tsx │ │ │ └── NewMessageTop │ │ │ │ ├── NewMessageTopNav.css │ │ │ │ └── NewMessageTopNav.tsx │ │ │ ├── RightCol.css │ │ │ └── RightCol.tsx │ │ ├── SettingsView │ │ ├── LeftCol │ │ │ ├── BottomNav │ │ │ │ ├── BottomLeftNav.css │ │ │ │ └── BottomLeftNav.tsx │ │ │ ├── LeftCol.css │ │ │ ├── LeftCol.tsx │ │ │ ├── SettingTitles │ │ │ │ ├── Setting │ │ │ │ │ ├── Setting.css │ │ │ │ │ └── Setting.tsx │ │ │ │ ├── SettingTitles.css │ │ │ │ └── SettingTitles.tsx │ │ │ └── TopNav │ │ │ │ ├── LeftTopNav.css │ │ │ │ └── LeftTopNav.tsx │ │ ├── RightCol │ │ │ ├── RightCol.css │ │ │ ├── RightCol.tsx │ │ │ └── SettingDisplay │ │ │ │ ├── AboutTab │ │ │ │ ├── AboutTab.css │ │ │ │ ├── AboutTab.tsx │ │ │ │ ├── ClientTitle │ │ │ │ │ ├── ClientTitle.css │ │ │ │ │ └── ClientTitle.tsx │ │ │ │ ├── ServerTitle │ │ │ │ │ ├── ServerTitle.css │ │ │ │ │ └── ServerTitle.tsx │ │ │ │ └── Updates │ │ │ │ │ ├── Updates.css │ │ │ │ │ └── Updates.tsx │ │ │ │ ├── AppearanceTab │ │ │ │ ├── AppearanceTab.css │ │ │ │ ├── AppearanceTab.tsx │ │ │ │ ├── FontSizeSlider │ │ │ │ │ ├── FontSizeSlider.css │ │ │ │ │ └── FontSizeSlider.tsx │ │ │ │ ├── SettingTitle │ │ │ │ │ ├── SettingTitle.css │ │ │ │ │ └── SettingTitle.tsx │ │ │ │ ├── ThemeCarousel │ │ │ │ │ ├── ThemeCarousel.css │ │ │ │ │ └── ThemeCarousel.tsx │ │ │ │ └── ThemeConfigDisplay │ │ │ │ │ ├── ColorDisplay │ │ │ │ │ ├── ColorDisplay.css │ │ │ │ │ └── ColorDisplay.tsx │ │ │ │ │ ├── ColorDisplayRow │ │ │ │ │ ├── ColorDisplayRow.css │ │ │ │ │ └── ColorDisplayRow.tsx │ │ │ │ │ ├── ThemeConfigDisplay.css │ │ │ │ │ └── ThemeConfigDisplay.tsx │ │ │ │ ├── ContactsTab │ │ │ │ ├── ContactsTab.css │ │ │ │ ├── ContactsTab.tsx │ │ │ │ ├── ImportsTitle │ │ │ │ │ ├── ImportsTitle.css │ │ │ │ │ └── ImportsTitle.tsx │ │ │ │ └── ManageContacts │ │ │ │ │ ├── ManageContacts.css │ │ │ │ │ └── ManageContacts.tsx │ │ │ │ ├── GeneralTab │ │ │ │ ├── AppTitle │ │ │ │ │ ├── AppTitle.css │ │ │ │ │ └── AppTitle.tsx │ │ │ │ ├── GeneralTab.css │ │ │ │ ├── GeneralTab.tsx │ │ │ │ ├── NotificationsTitle │ │ │ │ │ ├── NotificationsTitle.css │ │ │ │ │ └── NotificationsTitle.tsx │ │ │ │ ├── PasswordInputTitle │ │ │ │ │ ├── PasswordInputTitle.css │ │ │ │ │ └── PasswordInputTitle.tsx │ │ │ │ ├── ServerInputTitle │ │ │ │ │ ├── ServerInputTitle.css │ │ │ │ │ └── ServerInputTitle.tsx │ │ │ │ ├── TitlebarTitle │ │ │ │ │ └── TitlebarTitle.tsx │ │ │ │ └── VisualTitle │ │ │ │ │ └── VisualTitle.tsx │ │ │ │ ├── SettingDisplay.css │ │ │ │ ├── SettingDisplay.tsx │ │ │ │ └── StorageTab │ │ │ │ ├── SettingTitle │ │ │ │ ├── SettingTitle.css │ │ │ │ └── SettingTitle.tsx │ │ │ │ ├── StorageInfo │ │ │ │ ├── StorageInfo.css │ │ │ │ └── StorageInfo.tsx │ │ │ │ ├── StorageTab.css │ │ │ │ ├── StorageTab.tsx │ │ │ │ └── StorageTable │ │ │ │ ├── StorageTable.css │ │ │ │ └── StorageTable.tsx │ │ ├── SettingsView.css │ │ └── SettingsView.tsx │ │ ├── ViewContainer.css │ │ └── ViewContainer.tsx │ ├── fonts │ ├── SF-Pro-Rounded-Bold.otf │ ├── SF-Pro.ttf │ ├── SF-UI-Display-Bold.woff │ └── SF-UI-Display-Bold.woff2 │ └── helpers │ ├── constants.ts │ └── utils.ts ├── tsconfig.json ├── webpack.base.config.js ├── webpack.main.config.js ├── webpack.main.prod.config.js ├── webpack.renderer.config.js ├── webpack.renderer.dev.config.js └── webpack.renderer.prod.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.snap 3 | dist/ 4 | release/ 5 | .vscode/ 6 | mocks/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/README.md -------------------------------------------------------------------------------- /docs/img/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/docs/img/electron.png -------------------------------------------------------------------------------- /docs/img/jest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/docs/img/jest.png -------------------------------------------------------------------------------- /docs/img/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/docs/img/react.png -------------------------------------------------------------------------------- /docs/img/redux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/docs/img/redux.png -------------------------------------------------------------------------------- /docs/img/ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/docs/img/ts.png -------------------------------------------------------------------------------- /docs/img/webpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/docs/img/webpack.png -------------------------------------------------------------------------------- /mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /mocks/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /ormconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/ormconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/package.json -------------------------------------------------------------------------------- /resources/audio/note.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/audio/note.mp3 -------------------------------------------------------------------------------- /resources/audio/recieve.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/audio/recieve.mp3 -------------------------------------------------------------------------------- /resources/audio/send.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/audio/send.mp3 -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icon1024.png -------------------------------------------------------------------------------- /resources/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icon256.png -------------------------------------------------------------------------------- /resources/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icon512.png -------------------------------------------------------------------------------- /resources/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icons/128x128.png -------------------------------------------------------------------------------- /resources/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icons/256x256.png -------------------------------------------------------------------------------- /resources/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icons/32x32.png -------------------------------------------------------------------------------- /resources/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icons/48x48.png -------------------------------------------------------------------------------- /resources/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icons/512x512.png -------------------------------------------------------------------------------- /resources/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/icons/64x64.png -------------------------------------------------------------------------------- /resources/linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/resources/linux.icns -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/server/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/constants.ts -------------------------------------------------------------------------------- /src/main/server/databases/chat/entity/Attachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/chat/entity/Attachment.ts -------------------------------------------------------------------------------- /src/main/server/databases/chat/entity/Chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/chat/entity/Chat.ts -------------------------------------------------------------------------------- /src/main/server/databases/chat/entity/Handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/chat/entity/Handle.ts -------------------------------------------------------------------------------- /src/main/server/databases/chat/entity/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/chat/entity/Message.ts -------------------------------------------------------------------------------- /src/main/server/databases/chat/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/chat/entity/index.ts -------------------------------------------------------------------------------- /src/main/server/databases/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/chat/index.ts -------------------------------------------------------------------------------- /src/main/server/databases/chat/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/chat/types.ts -------------------------------------------------------------------------------- /src/main/server/databases/config/entity/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/config/entity/Config.ts -------------------------------------------------------------------------------- /src/main/server/databases/config/entity/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/config/entity/Theme.ts -------------------------------------------------------------------------------- /src/main/server/databases/config/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/config/entity/index.ts -------------------------------------------------------------------------------- /src/main/server/databases/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/config/index.ts -------------------------------------------------------------------------------- /src/main/server/databases/transformers/BooleanTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/transformers/BooleanTransformer.ts -------------------------------------------------------------------------------- /src/main/server/databases/transformers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/databases/transformers/index.ts -------------------------------------------------------------------------------- /src/main/server/fileSystem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/fileSystem/index.ts -------------------------------------------------------------------------------- /src/main/server/fileSystem/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/fileSystem/types.ts -------------------------------------------------------------------------------- /src/main/server/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/helpers/utils.ts -------------------------------------------------------------------------------- /src/main/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/index.ts -------------------------------------------------------------------------------- /src/main/server/services/fcm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/services/fcm/index.ts -------------------------------------------------------------------------------- /src/main/server/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/services/index.ts -------------------------------------------------------------------------------- /src/main/server/services/queue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/services/queue/index.ts -------------------------------------------------------------------------------- /src/main/server/services/socket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/services/socket/index.ts -------------------------------------------------------------------------------- /src/main/server/services/socket/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/services/socket/types.ts -------------------------------------------------------------------------------- /src/main/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/main/server/types.ts -------------------------------------------------------------------------------- /src/renderer/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/@types/index.d.ts -------------------------------------------------------------------------------- /src/renderer/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/app.css -------------------------------------------------------------------------------- /src/renderer/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/app.tsx -------------------------------------------------------------------------------- /src/renderer/assets/default-blurhash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/default-blurhash.png -------------------------------------------------------------------------------- /src/renderer/assets/giphy-logo-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/giphy-logo-circle.png -------------------------------------------------------------------------------- /src/renderer/assets/giphy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/giphy-logo.png -------------------------------------------------------------------------------- /src/renderer/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icon.ico -------------------------------------------------------------------------------- /src/renderer/assets/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icon128.png -------------------------------------------------------------------------------- /src/renderer/assets/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icon256.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/close.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/compose-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/compose-icon.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/contact-icon-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/contact-icon-new.svg -------------------------------------------------------------------------------- /src/renderer/assets/icons/contact-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/contact-icon.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/conversation-close-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/conversation-close-icon.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/marker-icon.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/return-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/return-icon.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/return-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/return-icon.svg -------------------------------------------------------------------------------- /src/renderer/assets/icons/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/search-icon.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/search-icon.svg -------------------------------------------------------------------------------- /src/renderer/assets/icons/send-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/send-icon.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/settings-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/settings-icon.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/settings-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/icons/settings-icon.svg -------------------------------------------------------------------------------- /src/renderer/assets/img/computer_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/img/computer_check.png -------------------------------------------------------------------------------- /src/renderer/assets/img/unknown_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/assets/img/unknown_img.png -------------------------------------------------------------------------------- /src/renderer/components/TitleBar/TitleBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/TitleBar/TitleBar.css -------------------------------------------------------------------------------- /src/renderer/components/TitleBar/TitleBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/TitleBar/TitleBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/TitleBar/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/TitleBar/close.png -------------------------------------------------------------------------------- /src/renderer/components/TitleBar/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/TitleBar/maximize.png -------------------------------------------------------------------------------- /src/renderer/components/TitleBar/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/TitleBar/minimize.png -------------------------------------------------------------------------------- /src/renderer/components/TitleBar/unmaximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/TitleBar/unmaximize.png -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/LoginView/LoginView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/LoginView/LoginView.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/LoginView/LoginView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/LoginView/LoginView.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/BottomNav/BottomLeftNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/BottomNav/BottomLeftNav.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/BottomNav/BottomLeftNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/BottomNav/BottomLeftNav.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Avatar/GroupAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Avatar/GroupAvatar.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Avatar/IndividualAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Avatar/IndividualAvatar.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Avatar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Avatar/styles.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Conversation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Conversation.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Conversation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/Conversation/Conversation.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/LeftConversationsNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/LeftConversationsNav.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/LeftConversationsNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/ConversationsNav/LeftConversationsNav.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/LeftCol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/LeftCol.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/LeftCol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/LeftCol.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/TopNav/LeftTopNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/TopNav/LeftTopNav.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/LeftCol/TopNav/LeftTopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/LeftCol/TopNav/LeftTopNav.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/MessagingView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/MessagingView.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/MessagingView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/MessagingView.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/AudioDisplay/AudioDisplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/AudioDisplay/AudioDisplay.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/AudioDisplay/AudioDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/AudioDisplay/AudioDisplay.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/BubbleChatIcons/BubbleChatIcons.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/BubbleChatIcons/BubbleChatIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/BubbleChatIcons/BubbleChatIcons.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/Contact/DetailContact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/Contact/DetailContact.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/Contact/DetailContact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/Contact/DetailContact.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/Contact/DetailContactAvatar/DetailContactAvatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/Contact/DetailContactAvatar/DetailContactAvatar.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/Contact/DetailContactAvatar/DetailContactAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/Contact/DetailContactAvatar/DetailContactAvatar.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/DetailsDisplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/DetailsDisplay.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/DetailsDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Details/DetailsDisplay/DetailsDisplay.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/GIFSelection/GIFSelection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/GIFSelection/GIFSelection.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/GIFSelection/GIFSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/GIFSelection/GIFSelection.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/BottomNav/RightBottomNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/BottomNav/RightBottomNav.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/BottomNav/RightBottomNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/BottomNav/RightBottomNav.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/ChatLabel/ChatLabel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/ChatLabel/ChatLabel.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/ChatLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/ChatLabel/index.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/@types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/@types/index.ts -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/DownloadProgress/DownloadProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/DownloadProgress/DownloadProgress.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/InChatAudio/InChatAudio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/InChatAudio/InChatAudio.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/InChatAudio/InChatAudio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/InChatAudio/InChatAudio.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/InChatReaction/InChatReaction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/InChatReaction/InChatReaction.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/InChatReaction/InChatReaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/InChatReaction/InChatReaction.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/MessageBubble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/MessageBubble.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/NewReaction/NewReaction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/NewReaction/NewReaction.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/NewReaction/NewReaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/NewReaction/NewReaction.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/ReactionsDisplay/ReactionParticipant/ReactionParticipant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/ReactionsDisplay/ReactionParticipant/ReactionParticipant.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/ReactionsDisplay/ReactionParticipant/ReactionParticipant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/ReactionsDisplay/ReactionParticipant/ReactionParticipant.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/ReactionsDisplay/ReactionsDisplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/ReactionsDisplay/ReactionsDisplay.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/ReactionsDisplay/ReactionsDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/ReactionsDisplay/ReactionsDisplay.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/UnsupportedMedia/UnsupportedMedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/UnsupportedMedia/UnsupportedMedia.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/UnsupportedMedia/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/UnsupportedMedia/index.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/MessageBubble/index.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/RightConversationDisplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/RightConversationDisplay.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/RightConversationDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/ConversationDisplay/RightConversationDisplay.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/TopNav/RightTopNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/TopNav/RightTopNav.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/TopNav/RightTopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/Messaging/TopNav/RightTopNav.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageBottom/AudioVisualizer/AudioVisualizer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageBottom/AudioVisualizer/AudioVisualizer.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageBottom/AudioVisualizer/AudioVisualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageBottom/AudioVisualizer/AudioVisualizer.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageBottom/NewMessageBottomNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageBottom/NewMessageBottomNav.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageBottom/NewMessageBottomNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageBottom/NewMessageBottomNav.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageConversation/NewMessageConversationDisplay.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageConversation/NewMessageConversationDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageConversation/NewMessageConversationDisplay.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageTop/NewMessageTopNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageTop/NewMessageTopNav.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageTop/NewMessageTopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/NewMessage/NewMessageTop/NewMessageTopNav.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/RightCol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/RightCol.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/MessagingView/RightCol/RightCol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/MessagingView/RightCol/RightCol.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/BottomNav/BottomLeftNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/BottomNav/BottomLeftNav.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/BottomNav/BottomLeftNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/BottomNav/BottomLeftNav.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/LeftCol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/LeftCol.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/LeftCol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/LeftCol.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/SettingTitles/Setting/Setting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/SettingTitles/Setting/Setting.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/SettingTitles/Setting/Setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/SettingTitles/Setting/Setting.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/SettingTitles/SettingTitles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/SettingTitles/SettingTitles.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/SettingTitles/SettingTitles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/SettingTitles/SettingTitles.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/TopNav/LeftTopNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/TopNav/LeftTopNav.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/LeftCol/TopNav/LeftTopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/LeftCol/TopNav/LeftTopNav.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/RightCol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/RightCol.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/RightCol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/RightCol.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/AboutTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/AboutTab.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/AboutTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/AboutTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/ClientTitle/ClientTitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/ClientTitle/ClientTitle.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/ClientTitle/ClientTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/ClientTitle/ClientTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/ServerTitle/ServerTitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/ServerTitle/ServerTitle.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/ServerTitle/ServerTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/ServerTitle/ServerTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/Updates/Updates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/Updates/Updates.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/Updates/Updates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AboutTab/Updates/Updates.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/AppearanceTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/AppearanceTab.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/AppearanceTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/AppearanceTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/FontSizeSlider/FontSizeSlider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/FontSizeSlider/FontSizeSlider.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/FontSizeSlider/FontSizeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/FontSizeSlider/FontSizeSlider.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/SettingTitle/SettingTitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/SettingTitle/SettingTitle.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/SettingTitle/SettingTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/SettingTitle/SettingTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeCarousel/ThemeCarousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeCarousel/ThemeCarousel.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeCarousel/ThemeCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeCarousel/ThemeCarousel.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ColorDisplay/ColorDisplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ColorDisplay/ColorDisplay.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ColorDisplay/ColorDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ColorDisplay/ColorDisplay.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ColorDisplayRow/ColorDisplayRow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ColorDisplayRow/ColorDisplayRow.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ColorDisplayRow/ColorDisplayRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ColorDisplayRow/ColorDisplayRow.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ThemeConfigDisplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ThemeConfigDisplay.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ThemeConfigDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/AppearanceTab/ThemeConfigDisplay/ThemeConfigDisplay.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ContactsTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ContactsTab.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ContactsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ContactsTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ImportsTitle/ImportsTitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ImportsTitle/ImportsTitle.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ImportsTitle/ImportsTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ImportsTitle/ImportsTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ManageContacts/ManageContacts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ManageContacts/ManageContacts.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ManageContacts/ManageContacts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/ContactsTab/ManageContacts/ManageContacts.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/AppTitle/AppTitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/AppTitle/AppTitle.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/AppTitle/AppTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/AppTitle/AppTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/GeneralTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/GeneralTab.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/GeneralTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/GeneralTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/NotificationsTitle/NotificationsTitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/NotificationsTitle/NotificationsTitle.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/NotificationsTitle/NotificationsTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/NotificationsTitle/NotificationsTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/PasswordInputTitle/PasswordInputTitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/PasswordInputTitle/PasswordInputTitle.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/PasswordInputTitle/PasswordInputTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/PasswordInputTitle/PasswordInputTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/ServerInputTitle/ServerInputTitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/ServerInputTitle/ServerInputTitle.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/ServerInputTitle/ServerInputTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/ServerInputTitle/ServerInputTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/TitlebarTitle/TitlebarTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/TitlebarTitle/TitlebarTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/VisualTitle/VisualTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/GeneralTab/VisualTitle/VisualTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/SettingDisplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/SettingDisplay.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/SettingDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/SettingDisplay.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/SettingTitle/SettingTitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/SettingTitle/SettingTitle.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/SettingTitle/SettingTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/SettingTitle/SettingTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageInfo/StorageInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageInfo/StorageInfo.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageInfo/StorageInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageInfo/StorageInfo.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageTab.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageTable/StorageTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageTable/StorageTable.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageTable/StorageTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/RightCol/SettingDisplay/StorageTab/StorageTable/StorageTable.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/SettingsView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/SettingsView.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/SettingsView/SettingsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/SettingsView/SettingsView.tsx -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/ViewContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/ViewContainer.css -------------------------------------------------------------------------------- /src/renderer/components/ViewContainer/ViewContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/components/ViewContainer/ViewContainer.tsx -------------------------------------------------------------------------------- /src/renderer/fonts/SF-Pro-Rounded-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/fonts/SF-Pro-Rounded-Bold.otf -------------------------------------------------------------------------------- /src/renderer/fonts/SF-Pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/fonts/SF-Pro.ttf -------------------------------------------------------------------------------- /src/renderer/fonts/SF-UI-Display-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/fonts/SF-UI-Display-Bold.woff -------------------------------------------------------------------------------- /src/renderer/fonts/SF-UI-Display-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/fonts/SF-UI-Display-Bold.woff2 -------------------------------------------------------------------------------- /src/renderer/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/helpers/constants.ts -------------------------------------------------------------------------------- /src/renderer/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/src/renderer/helpers/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/webpack.base.config.js -------------------------------------------------------------------------------- /webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/webpack.main.config.js -------------------------------------------------------------------------------- /webpack.main.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/webpack.main.prod.config.js -------------------------------------------------------------------------------- /webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/webpack.renderer.config.js -------------------------------------------------------------------------------- /webpack.renderer.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/webpack.renderer.dev.config.js -------------------------------------------------------------------------------- /webpack.renderer.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBubblesApp/BlueBubbles-Desktop-App/HEAD/webpack.renderer.prod.config.js --------------------------------------------------------------------------------