├── .babelrc ├── .circleci └── config.yml ├── .electron-vue ├── build.js ├── dev-client.js ├── dev-runner.js ├── webpack.main.config.js ├── webpack.renderer.config.js └── webpack.web.config.js ├── .env ├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other-request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierrc ├── .stylelintignore ├── .stylelintrc.json ├── CHANGELOG.md ├── DEVELOPMENT.md ├── LICENSE.txt ├── Makefile ├── README.md ├── app-store.svg ├── appStore.sh ├── crowdin.yml ├── dist ├── electron │ └── .gitkeep └── web │ └── .gitkeep ├── package.json ├── packages └── .gitkeep ├── plist ├── child.plist ├── loginhelper.plist ├── parent.plist └── team.plist ├── qr.png ├── screenshot_1.png ├── sider.yml ├── spec ├── .eslintrc ├── config │ └── i18n.spec.ts ├── main │ └── unit │ │ └── proxy.spec.ts ├── mock │ ├── electron.ts │ └── router.ts ├── preferences.json └── renderer │ ├── integration │ └── store │ │ ├── App.spec.ts │ │ ├── GlobalHeader.spec.ts │ │ ├── Login.spec.ts │ │ ├── Preferences │ │ ├── Account.spec.ts │ │ ├── Appearance.spec.ts │ │ ├── General.spec.ts │ │ ├── Language.spec.ts │ │ └── Notification.spec.ts │ │ ├── TimelineSpace.spec.ts │ │ └── TimelineSpace │ │ ├── Contents │ │ ├── DirectMessages.spec.ts │ │ ├── Favourites.spec.ts │ │ ├── FollowRequests.spec.ts │ │ ├── Hashtag │ │ │ ├── List.spec.ts │ │ │ └── Tag.spec.ts │ │ ├── Home.spec.ts │ │ ├── Lists │ │ │ ├── Edit.spec.ts │ │ │ ├── Index.spec.ts │ │ │ └── Show.spec.ts │ │ ├── Local.spec.ts │ │ ├── Mentions.spec.ts │ │ ├── Notifications.spec.ts │ │ ├── Public.spec.ts │ │ ├── Search │ │ │ ├── Account.spec.ts │ │ │ ├── Tag.spec.ts │ │ │ └── Toots.spec.ts │ │ └── SideBar │ │ │ └── AccountProfile.spec.ts │ │ ├── HeaderMenu.spec.ts │ │ ├── Modals │ │ ├── AddListMember.spec.ts │ │ ├── ImageViewer.spec.ts │ │ ├── Jump.spec.ts │ │ └── ListMembership.spec.ts │ │ └── SideMenu.spec.ts │ └── unit │ ├── store │ ├── Login.spec.ts │ ├── Preferences │ │ ├── Account.spec.ts │ │ ├── Appearance.spec.ts │ │ ├── General.spec.ts │ │ ├── Language.spec.ts │ │ └── Notification.spec.ts │ ├── TimelineSpace.spec.ts │ └── TimelineSpace │ │ ├── Contents │ │ ├── DirectMessages.spec.ts │ │ ├── Hashtag │ │ │ └── Tag.spec.ts │ │ ├── Home.spec.ts │ │ ├── Lists │ │ │ └── Show.spec.ts │ │ ├── Local.spec.ts │ │ ├── Mentions.spec.ts │ │ ├── Notifications.spec.ts │ │ └── Public.spec.ts │ │ ├── HeaderMenu.spec.ts │ │ └── Modals │ │ └── Jump.spec.ts │ └── utils │ ├── emojify.spec.ts │ ├── suggestText.spec.ts │ ├── tootParser.spec.ts │ └── validator.spec.ts ├── src ├── config │ ├── i18n.ts │ └── locales │ │ ├── cs │ │ └── translation.json │ │ ├── de │ │ └── translation.json │ │ ├── en │ │ └── translation.json │ │ ├── es_es │ │ └── translation.json │ │ ├── fr │ │ └── translation.json │ │ ├── it │ │ └── translation.json │ │ ├── ja │ │ └── translation.json │ │ ├── ko │ │ └── translation.json │ │ ├── no │ │ └── translation.json │ │ ├── pl │ │ └── translation.json │ │ ├── pt_pt │ │ └── translation.json │ │ ├── ru │ │ └── translation.json │ │ ├── si │ │ └── translation.json │ │ ├── sv_se │ │ └── translation.json │ │ ├── tzm │ │ └── translation.json │ │ ├── zh_cn │ │ └── translation.json │ │ └── zh_tw │ │ └── translation.json ├── constants │ ├── displayStyle │ │ ├── index.d.ts │ │ └── index.js │ ├── language │ │ ├── index.d.ts │ │ └── index.js │ ├── servers │ │ └── quote.ts │ ├── theme │ │ ├── index.d.ts │ │ └── index.js │ ├── themeColor │ │ ├── index.d.ts │ │ └── index.js │ ├── timeFormat │ │ ├── index.d.ts │ │ └── index.js │ ├── unreadNotification │ │ ├── index.d.ts │ │ └── index.js │ └── visibility │ │ ├── index.d.ts │ │ └── index.js ├── errors │ └── streamingError.js ├── index.ejs ├── main │ ├── account.ts │ ├── auth.ts │ ├── cache │ │ ├── account.ts │ │ └── hashtag.ts │ ├── fonts.ts │ ├── hashtags.ts │ ├── index.dev.ts │ ├── index.ts │ ├── preferences.ts │ ├── preload.js │ ├── proxy.ts │ ├── timelines.ts │ ├── unreadNotification.ts │ └── websocket.ts ├── renderer │ ├── App.vue │ ├── assets │ │ ├── .gitkeep │ │ ├── fonts │ │ │ ├── NotoSans-Bold.ttf │ │ │ ├── NotoSans-BoldItalic.ttf │ │ │ ├── NotoSans-Italic.ttf │ │ │ ├── NotoSans-Regular.ttf │ │ │ └── fonts.css │ │ ├── images │ │ │ ├── 256x256.png │ │ │ ├── loading-spinner-wide.svg │ │ │ ├── loading-spinner.svg │ │ │ └── logo-roma.png │ │ ├── logo.png │ │ └── timeline-transition.scss │ ├── components │ │ ├── Authorize.vue │ │ ├── GlobalHeader.vue │ │ ├── Login.vue │ │ ├── Login │ │ │ └── LoginForm.vue │ │ ├── Preferences.vue │ │ ├── Preferences │ │ │ ├── Account.vue │ │ │ ├── Appearance.vue │ │ │ ├── Appearance │ │ │ │ ├── ColorPallet.vue │ │ │ │ └── Toot.vue │ │ │ ├── General.vue │ │ │ ├── Language.vue │ │ │ ├── Network.vue │ │ │ └── Notification.vue │ │ ├── Settings.vue │ │ ├── Settings │ │ │ ├── General.vue │ │ │ └── Timeline.vue │ │ ├── TimelineSpace.vue │ │ ├── TimelineSpace │ │ │ ├── Contents.vue │ │ │ ├── Contents │ │ │ │ ├── Bookmarks.vue │ │ │ │ ├── DirectMessages.vue │ │ │ │ ├── Favourites.vue │ │ │ │ ├── FollowRequests.vue │ │ │ │ ├── Hashtag.vue │ │ │ │ ├── Hashtag │ │ │ │ │ ├── List.vue │ │ │ │ │ └── Tag.vue │ │ │ │ ├── Home.vue │ │ │ │ ├── Lists │ │ │ │ │ ├── Edit.vue │ │ │ │ │ ├── Index.vue │ │ │ │ │ └── Show.vue │ │ │ │ ├── Local.vue │ │ │ │ ├── Mentions.vue │ │ │ │ ├── Notifications.vue │ │ │ │ ├── Public.vue │ │ │ │ ├── Search.vue │ │ │ │ ├── Search │ │ │ │ │ ├── Account.vue │ │ │ │ │ ├── Tag.vue │ │ │ │ │ └── Toots.vue │ │ │ │ ├── SideBar.vue │ │ │ │ └── SideBar │ │ │ │ │ ├── AccountProfile.vue │ │ │ │ │ ├── AccountProfile │ │ │ │ │ ├── Followers.vue │ │ │ │ │ ├── Follows.vue │ │ │ │ │ ├── Timeline.vue │ │ │ │ │ └── Timeline │ │ │ │ │ │ ├── Media.vue │ │ │ │ │ │ ├── Posts.vue │ │ │ │ │ │ └── PostsAndReplies.vue │ │ │ │ │ └── TootDetail.vue │ │ │ ├── HeaderMenu.vue │ │ │ ├── Modals.vue │ │ │ ├── Modals │ │ │ │ ├── AddListMember.vue │ │ │ │ ├── ImageViewer.vue │ │ │ │ ├── Jump.vue │ │ │ │ ├── ListMembership.vue │ │ │ │ ├── Media.vue │ │ │ │ ├── MuteConfirm.vue │ │ │ │ ├── NewToot.vue │ │ │ │ ├── NewToot │ │ │ │ │ ├── Poll.vue │ │ │ │ │ ├── Quote.vue │ │ │ │ │ └── Status.vue │ │ │ │ ├── Report.vue │ │ │ │ └── Shortcut.vue │ │ │ ├── ReceiveDrop.vue │ │ │ └── SideMenu.vue │ │ ├── atoms │ │ │ └── FailoverImg.vue │ │ ├── event.js │ │ ├── mixins │ │ │ └── reloadable.vue │ │ ├── molecules │ │ │ ├── Tag.vue │ │ │ ├── Toot │ │ │ │ ├── LinkPreview.vue │ │ │ │ ├── Poll.vue │ │ │ │ └── Quote.vue │ │ │ └── User.vue │ │ ├── organisms │ │ │ ├── Notification.vue │ │ │ ├── Notification │ │ │ │ ├── Favourite.vue │ │ │ │ ├── Follow.vue │ │ │ │ ├── FollowRequest.vue │ │ │ │ ├── Mention.vue │ │ │ │ ├── Quote.vue │ │ │ │ ├── Reaction.vue │ │ │ │ └── Reblog.vue │ │ │ └── Toot.vue │ │ └── utils │ │ │ ├── exifImageUrl.js │ │ │ └── scroll.js │ ├── errors │ │ ├── fetch.js │ │ ├── load.js │ │ └── validations.js │ ├── main.ts │ ├── router │ │ └── index.ts │ ├── store │ │ ├── App.ts │ │ ├── Authorize.ts │ │ ├── GlobalHeader.ts │ │ ├── Login.ts │ │ ├── Preferences.ts │ │ ├── Preferences │ │ │ ├── Account.ts │ │ │ ├── Appearance.ts │ │ │ ├── General.ts │ │ │ ├── Language.ts │ │ │ ├── Network.ts │ │ │ └── Notification.ts │ │ ├── Settings.ts │ │ ├── Settings │ │ │ ├── General.ts │ │ │ └── Timeline.ts │ │ ├── TimelineSpace.ts │ │ ├── TimelineSpace │ │ │ ├── Contents.ts │ │ │ ├── Contents │ │ │ │ ├── Bookmarks.ts │ │ │ │ ├── DirectMessages.ts │ │ │ │ ├── Favourites.ts │ │ │ │ ├── FollowRequests.ts │ │ │ │ ├── Hashtag.ts │ │ │ │ ├── Hashtag │ │ │ │ │ ├── List.ts │ │ │ │ │ └── Tag.ts │ │ │ │ ├── Home.ts │ │ │ │ ├── Lists.ts │ │ │ │ ├── Lists │ │ │ │ │ ├── Edit.ts │ │ │ │ │ ├── Index.ts │ │ │ │ │ └── Show.ts │ │ │ │ ├── Local.ts │ │ │ │ ├── Mentions.ts │ │ │ │ ├── Notifications.ts │ │ │ │ ├── Public.ts │ │ │ │ ├── Search.ts │ │ │ │ ├── Search │ │ │ │ │ ├── Account.ts │ │ │ │ │ ├── Tag.ts │ │ │ │ │ └── Toots.ts │ │ │ │ ├── SideBar.ts │ │ │ │ └── SideBar │ │ │ │ │ ├── AccountProfile.ts │ │ │ │ │ ├── AccountProfile │ │ │ │ │ ├── Followers.ts │ │ │ │ │ ├── Follows.ts │ │ │ │ │ ├── Timeline.ts │ │ │ │ │ └── Timeline │ │ │ │ │ │ ├── Media.ts │ │ │ │ │ │ ├── Posts.ts │ │ │ │ │ │ └── PostsAndReplies.ts │ │ │ │ │ └── TootDetail.ts │ │ │ ├── HeaderMenu.ts │ │ │ ├── Modals.ts │ │ │ ├── Modals │ │ │ │ ├── AddListMember.ts │ │ │ │ ├── ImageViewer.ts │ │ │ │ ├── Jump.ts │ │ │ │ ├── ListMembership.ts │ │ │ │ ├── MuteConfirm.ts │ │ │ │ ├── NewToot.ts │ │ │ │ ├── NewToot │ │ │ │ │ └── Status.ts │ │ │ │ ├── Report.ts │ │ │ │ └── Shortcut.ts │ │ │ └── SideMenu.ts │ │ ├── index.ts │ │ ├── organisms.ts │ │ └── organisms │ │ │ └── Toot.ts │ ├── types │ │ ├── element-ui.d.ts │ │ ├── i18next-sync-fs-backend.d.ts │ │ ├── loadPosition.ts │ │ ├── removeAccountFromList.ts │ │ ├── vue-popperjs.d.ts │ │ ├── vue-shortkey.d.ts │ │ └── vue.d.ts │ └── utils │ │ ├── axiosLoading.ts │ │ ├── emojify.js │ │ ├── fonts │ │ ├── index.d.ts │ │ └── index.js │ │ ├── quoteSupported.ts │ │ ├── suggestText.js │ │ ├── tootParser.js │ │ └── validator.js └── types │ ├── accountNotification.ts │ ├── appearance.ts │ ├── cachedAccount.ts │ ├── enabledTimelines.ts │ ├── global.ts │ ├── insertAccountCache.ts │ ├── language.ts │ ├── localAccount.ts │ ├── localTag.ts │ ├── notify.ts │ ├── preference.ts │ ├── proxy.ts │ ├── sound.ts │ ├── timeline.ts │ └── unreadNotification.ts ├── static ├── .gitkeep ├── images │ ├── icon.png │ ├── loading.svg │ └── logo-roma.png └── splash-screen.html ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.electron-vue/build.js -------------------------------------------------------------------------------- /.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | export CSC_IDENTITY_AUTO_DISCOVERY=true 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | dist/* 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.github/ISSUE_TEMPLATE/other-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | build 4 | packages 5 | .electron-vue 6 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/README.md -------------------------------------------------------------------------------- /app-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/app-store.svg -------------------------------------------------------------------------------- /appStore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/appStore.sh -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/crowdin.yml -------------------------------------------------------------------------------- /dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/package.json -------------------------------------------------------------------------------- /packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plist/child.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/plist/child.plist -------------------------------------------------------------------------------- /plist/loginhelper.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/plist/loginhelper.plist -------------------------------------------------------------------------------- /plist/parent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/plist/parent.plist -------------------------------------------------------------------------------- /plist/team.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/plist/team.plist -------------------------------------------------------------------------------- /qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/qr.png -------------------------------------------------------------------------------- /screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/screenshot_1.png -------------------------------------------------------------------------------- /sider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/sider.yml -------------------------------------------------------------------------------- /spec/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/.eslintrc -------------------------------------------------------------------------------- /spec/config/i18n.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/config/i18n.spec.ts -------------------------------------------------------------------------------- /spec/main/unit/proxy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/main/unit/proxy.spec.ts -------------------------------------------------------------------------------- /spec/mock/electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/mock/electron.ts -------------------------------------------------------------------------------- /spec/mock/router.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | push: jest.fn() 3 | } 4 | -------------------------------------------------------------------------------- /spec/preferences.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /spec/renderer/integration/store/App.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/App.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/GlobalHeader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/GlobalHeader.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/Login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/Login.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/Preferences/Account.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/Preferences/Account.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/Preferences/Appearance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/Preferences/Appearance.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/Preferences/General.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/Preferences/General.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/Preferences/Language.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/Preferences/Language.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/Preferences/Notification.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/Preferences/Notification.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/DirectMessages.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/DirectMessages.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Favourites.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Favourites.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/FollowRequests.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/FollowRequests.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Hashtag/List.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Hashtag/List.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Hashtag/Tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Hashtag/Tag.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Home.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Lists/Edit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Lists/Edit.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Lists/Index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Lists/Index.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Lists/Show.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Lists/Show.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Local.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Local.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Mentions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Mentions.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Notifications.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Notifications.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Public.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Public.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Search/Account.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Search/Account.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Search/Tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Search/Tag.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/Search/Toots.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/Search/Toots.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Contents/SideBar/AccountProfile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Contents/SideBar/AccountProfile.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/HeaderMenu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/HeaderMenu.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Modals/AddListMember.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Modals/AddListMember.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Modals/ImageViewer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Modals/ImageViewer.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Modals/Jump.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Modals/Jump.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/Modals/ListMembership.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/Modals/ListMembership.spec.ts -------------------------------------------------------------------------------- /spec/renderer/integration/store/TimelineSpace/SideMenu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/integration/store/TimelineSpace/SideMenu.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/Login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/Login.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/Preferences/Account.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/Preferences/Account.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/Preferences/Appearance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/Preferences/Appearance.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/Preferences/General.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/Preferences/General.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/Preferences/Language.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/Preferences/Language.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/Preferences/Notification.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/Preferences/Notification.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/Contents/DirectMessages.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/Contents/DirectMessages.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/Contents/Hashtag/Tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/Contents/Hashtag/Tag.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/Contents/Home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/Contents/Home.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/Contents/Lists/Show.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/Contents/Lists/Show.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/Contents/Local.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/Contents/Local.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/Contents/Mentions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/Contents/Mentions.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/Contents/Notifications.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/Contents/Notifications.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/Contents/Public.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/Contents/Public.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/HeaderMenu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/HeaderMenu.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/store/TimelineSpace/Modals/Jump.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/store/TimelineSpace/Modals/Jump.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/utils/emojify.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/utils/emojify.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/utils/suggestText.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/utils/suggestText.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/utils/tootParser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/utils/tootParser.spec.ts -------------------------------------------------------------------------------- /spec/renderer/unit/utils/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/spec/renderer/unit/utils/validator.spec.ts -------------------------------------------------------------------------------- /src/config/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/i18n.ts -------------------------------------------------------------------------------- /src/config/locales/cs/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/cs/translation.json -------------------------------------------------------------------------------- /src/config/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/de/translation.json -------------------------------------------------------------------------------- /src/config/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/en/translation.json -------------------------------------------------------------------------------- /src/config/locales/es_es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/es_es/translation.json -------------------------------------------------------------------------------- /src/config/locales/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/fr/translation.json -------------------------------------------------------------------------------- /src/config/locales/it/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/it/translation.json -------------------------------------------------------------------------------- /src/config/locales/ja/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/ja/translation.json -------------------------------------------------------------------------------- /src/config/locales/ko/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/ko/translation.json -------------------------------------------------------------------------------- /src/config/locales/no/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/no/translation.json -------------------------------------------------------------------------------- /src/config/locales/pl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/pl/translation.json -------------------------------------------------------------------------------- /src/config/locales/pt_pt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/pt_pt/translation.json -------------------------------------------------------------------------------- /src/config/locales/ru/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/ru/translation.json -------------------------------------------------------------------------------- /src/config/locales/si/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/si/translation.json -------------------------------------------------------------------------------- /src/config/locales/sv_se/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/sv_se/translation.json -------------------------------------------------------------------------------- /src/config/locales/tzm/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/tzm/translation.json -------------------------------------------------------------------------------- /src/config/locales/zh_cn/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/zh_cn/translation.json -------------------------------------------------------------------------------- /src/config/locales/zh_tw/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/config/locales/zh_tw/translation.json -------------------------------------------------------------------------------- /src/constants/displayStyle/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/displayStyle/index.d.ts -------------------------------------------------------------------------------- /src/constants/displayStyle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/displayStyle/index.js -------------------------------------------------------------------------------- /src/constants/language/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/language/index.d.ts -------------------------------------------------------------------------------- /src/constants/language/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/language/index.js -------------------------------------------------------------------------------- /src/constants/servers/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/servers/quote.ts -------------------------------------------------------------------------------- /src/constants/theme/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/theme/index.d.ts -------------------------------------------------------------------------------- /src/constants/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/theme/index.js -------------------------------------------------------------------------------- /src/constants/themeColor/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/themeColor/index.d.ts -------------------------------------------------------------------------------- /src/constants/themeColor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/themeColor/index.js -------------------------------------------------------------------------------- /src/constants/timeFormat/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/timeFormat/index.d.ts -------------------------------------------------------------------------------- /src/constants/timeFormat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/timeFormat/index.js -------------------------------------------------------------------------------- /src/constants/unreadNotification/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/unreadNotification/index.d.ts -------------------------------------------------------------------------------- /src/constants/unreadNotification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/unreadNotification/index.js -------------------------------------------------------------------------------- /src/constants/visibility/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/visibility/index.d.ts -------------------------------------------------------------------------------- /src/constants/visibility/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/constants/visibility/index.js -------------------------------------------------------------------------------- /src/errors/streamingError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/errors/streamingError.js -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/account.ts -------------------------------------------------------------------------------- /src/main/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/auth.ts -------------------------------------------------------------------------------- /src/main/cache/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/cache/account.ts -------------------------------------------------------------------------------- /src/main/cache/hashtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/cache/hashtag.ts -------------------------------------------------------------------------------- /src/main/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/fonts.ts -------------------------------------------------------------------------------- /src/main/hashtags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/hashtags.ts -------------------------------------------------------------------------------- /src/main/index.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/index.dev.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/preferences.ts -------------------------------------------------------------------------------- /src/main/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/preload.js -------------------------------------------------------------------------------- /src/main/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/proxy.ts -------------------------------------------------------------------------------- /src/main/timelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/timelines.ts -------------------------------------------------------------------------------- /src/main/unreadNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/unreadNotification.ts -------------------------------------------------------------------------------- /src/main/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/main/websocket.ts -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/assets/fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/NotoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/fonts/NotoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/NotoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/fonts/NotoSans-Italic.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/fonts/fonts.css -------------------------------------------------------------------------------- /src/renderer/assets/images/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/images/256x256.png -------------------------------------------------------------------------------- /src/renderer/assets/images/loading-spinner-wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/images/loading-spinner-wide.svg -------------------------------------------------------------------------------- /src/renderer/assets/images/loading-spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/images/loading-spinner.svg -------------------------------------------------------------------------------- /src/renderer/assets/images/logo-roma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/images/logo-roma.png -------------------------------------------------------------------------------- /src/renderer/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/logo.png -------------------------------------------------------------------------------- /src/renderer/assets/timeline-transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/assets/timeline-transition.scss -------------------------------------------------------------------------------- /src/renderer/components/Authorize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Authorize.vue -------------------------------------------------------------------------------- /src/renderer/components/GlobalHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/GlobalHeader.vue -------------------------------------------------------------------------------- /src/renderer/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Login.vue -------------------------------------------------------------------------------- /src/renderer/components/Login/LoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Login/LoginForm.vue -------------------------------------------------------------------------------- /src/renderer/components/Preferences.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Preferences.vue -------------------------------------------------------------------------------- /src/renderer/components/Preferences/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Preferences/Account.vue -------------------------------------------------------------------------------- /src/renderer/components/Preferences/Appearance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Preferences/Appearance.vue -------------------------------------------------------------------------------- /src/renderer/components/Preferences/Appearance/ColorPallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Preferences/Appearance/ColorPallet.vue -------------------------------------------------------------------------------- /src/renderer/components/Preferences/Appearance/Toot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Preferences/Appearance/Toot.vue -------------------------------------------------------------------------------- /src/renderer/components/Preferences/General.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Preferences/General.vue -------------------------------------------------------------------------------- /src/renderer/components/Preferences/Language.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Preferences/Language.vue -------------------------------------------------------------------------------- /src/renderer/components/Preferences/Network.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Preferences/Network.vue -------------------------------------------------------------------------------- /src/renderer/components/Preferences/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Preferences/Notification.vue -------------------------------------------------------------------------------- /src/renderer/components/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Settings.vue -------------------------------------------------------------------------------- /src/renderer/components/Settings/General.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Settings/General.vue -------------------------------------------------------------------------------- /src/renderer/components/Settings/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/Settings/Timeline.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Bookmarks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Bookmarks.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/DirectMessages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/DirectMessages.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Favourites.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Favourites.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/FollowRequests.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/FollowRequests.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Hashtag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Hashtag.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Hashtag/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Hashtag/List.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Hashtag/Tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Hashtag/Tag.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Home.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Lists/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Lists/Edit.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Lists/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Lists/Index.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Lists/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Lists/Show.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Local.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Local.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Mentions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Mentions.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Notifications.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Public.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Public.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Search.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Search/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Search/Account.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Search/Tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Search/Tag.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/Search/Toots.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/Search/Toots.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/SideBar.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Followers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Followers.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Follows.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Follows.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Timeline.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/Media.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/Media.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/Posts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/Posts.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/PostsAndReplies.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/PostsAndReplies.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Contents/SideBar/TootDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Contents/SideBar/TootDetail.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/HeaderMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/HeaderMenu.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/AddListMember.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/AddListMember.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/ImageViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/ImageViewer.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/Jump.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/Jump.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/ListMembership.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/ListMembership.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/Media.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/Media.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/MuteConfirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/MuteConfirm.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/NewToot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/NewToot.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/NewToot/Poll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/NewToot/Poll.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/NewToot/Quote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/NewToot/Quote.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/NewToot/Status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/NewToot/Status.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/Report.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/Report.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/Modals/Shortcut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/Modals/Shortcut.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/ReceiveDrop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/ReceiveDrop.vue -------------------------------------------------------------------------------- /src/renderer/components/TimelineSpace/SideMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/TimelineSpace/SideMenu.vue -------------------------------------------------------------------------------- /src/renderer/components/atoms/FailoverImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/atoms/FailoverImg.vue -------------------------------------------------------------------------------- /src/renderer/components/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/event.js -------------------------------------------------------------------------------- /src/renderer/components/mixins/reloadable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/mixins/reloadable.vue -------------------------------------------------------------------------------- /src/renderer/components/molecules/Tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/molecules/Tag.vue -------------------------------------------------------------------------------- /src/renderer/components/molecules/Toot/LinkPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/molecules/Toot/LinkPreview.vue -------------------------------------------------------------------------------- /src/renderer/components/molecules/Toot/Poll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/molecules/Toot/Poll.vue -------------------------------------------------------------------------------- /src/renderer/components/molecules/Toot/Quote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/molecules/Toot/Quote.vue -------------------------------------------------------------------------------- /src/renderer/components/molecules/User.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/molecules/User.vue -------------------------------------------------------------------------------- /src/renderer/components/organisms/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/organisms/Notification.vue -------------------------------------------------------------------------------- /src/renderer/components/organisms/Notification/Favourite.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/organisms/Notification/Favourite.vue -------------------------------------------------------------------------------- /src/renderer/components/organisms/Notification/Follow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/organisms/Notification/Follow.vue -------------------------------------------------------------------------------- /src/renderer/components/organisms/Notification/FollowRequest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/organisms/Notification/FollowRequest.vue -------------------------------------------------------------------------------- /src/renderer/components/organisms/Notification/Mention.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/organisms/Notification/Mention.vue -------------------------------------------------------------------------------- /src/renderer/components/organisms/Notification/Quote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/organisms/Notification/Quote.vue -------------------------------------------------------------------------------- /src/renderer/components/organisms/Notification/Reaction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/organisms/Notification/Reaction.vue -------------------------------------------------------------------------------- /src/renderer/components/organisms/Notification/Reblog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/organisms/Notification/Reblog.vue -------------------------------------------------------------------------------- /src/renderer/components/organisms/Toot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/organisms/Toot.vue -------------------------------------------------------------------------------- /src/renderer/components/utils/exifImageUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/utils/exifImageUrl.js -------------------------------------------------------------------------------- /src/renderer/components/utils/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/components/utils/scroll.js -------------------------------------------------------------------------------- /src/renderer/errors/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/errors/fetch.js -------------------------------------------------------------------------------- /src/renderer/errors/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/errors/load.js -------------------------------------------------------------------------------- /src/renderer/errors/validations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/errors/validations.js -------------------------------------------------------------------------------- /src/renderer/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/main.ts -------------------------------------------------------------------------------- /src/renderer/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/router/index.ts -------------------------------------------------------------------------------- /src/renderer/store/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/App.ts -------------------------------------------------------------------------------- /src/renderer/store/Authorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Authorize.ts -------------------------------------------------------------------------------- /src/renderer/store/GlobalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/GlobalHeader.ts -------------------------------------------------------------------------------- /src/renderer/store/Login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Login.ts -------------------------------------------------------------------------------- /src/renderer/store/Preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Preferences.ts -------------------------------------------------------------------------------- /src/renderer/store/Preferences/Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Preferences/Account.ts -------------------------------------------------------------------------------- /src/renderer/store/Preferences/Appearance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Preferences/Appearance.ts -------------------------------------------------------------------------------- /src/renderer/store/Preferences/General.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Preferences/General.ts -------------------------------------------------------------------------------- /src/renderer/store/Preferences/Language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Preferences/Language.ts -------------------------------------------------------------------------------- /src/renderer/store/Preferences/Network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Preferences/Network.ts -------------------------------------------------------------------------------- /src/renderer/store/Preferences/Notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Preferences/Notification.ts -------------------------------------------------------------------------------- /src/renderer/store/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Settings.ts -------------------------------------------------------------------------------- /src/renderer/store/Settings/General.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Settings/General.ts -------------------------------------------------------------------------------- /src/renderer/store/Settings/Timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/Settings/Timeline.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Bookmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Bookmarks.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/DirectMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/DirectMessages.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Favourites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Favourites.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/FollowRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/FollowRequests.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Hashtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Hashtag.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Hashtag/List.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Hashtag/List.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Hashtag/Tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Hashtag/Tag.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Home.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Lists.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Lists/Edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Lists/Edit.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Lists/Index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Lists/Index.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Lists/Show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Lists/Show.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Local.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Mentions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Mentions.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Notifications.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Public.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Search.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Search/Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Search/Account.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Search/Tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Search/Tag.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/Search/Toots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/Search/Toots.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/SideBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/SideBar.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Followers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Followers.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Follows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Follows.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Timeline.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/Media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/Media.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/Posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/Posts.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/PostsAndReplies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/SideBar/AccountProfile/Timeline/PostsAndReplies.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Contents/SideBar/TootDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Contents/SideBar/TootDetail.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/HeaderMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/HeaderMenu.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals/AddListMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals/AddListMember.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals/ImageViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals/ImageViewer.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals/Jump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals/Jump.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals/ListMembership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals/ListMembership.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals/MuteConfirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals/MuteConfirm.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals/NewToot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals/NewToot.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals/NewToot/Status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals/NewToot/Status.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals/Report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals/Report.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/Modals/Shortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/Modals/Shortcut.ts -------------------------------------------------------------------------------- /src/renderer/store/TimelineSpace/SideMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/TimelineSpace/SideMenu.ts -------------------------------------------------------------------------------- /src/renderer/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/index.ts -------------------------------------------------------------------------------- /src/renderer/store/organisms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/organisms.ts -------------------------------------------------------------------------------- /src/renderer/store/organisms/Toot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/store/organisms/Toot.ts -------------------------------------------------------------------------------- /src/renderer/types/element-ui.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'element-ui/lib/locale/lang/en' 2 | -------------------------------------------------------------------------------- /src/renderer/types/i18next-sync-fs-backend.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'i18next-sync-fs-backend' 2 | -------------------------------------------------------------------------------- /src/renderer/types/loadPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/types/loadPosition.ts -------------------------------------------------------------------------------- /src/renderer/types/removeAccountFromList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/types/removeAccountFromList.ts -------------------------------------------------------------------------------- /src/renderer/types/vue-popperjs.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'vue-popperjs' 2 | -------------------------------------------------------------------------------- /src/renderer/types/vue-shortkey.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'vue-shortkey' 2 | -------------------------------------------------------------------------------- /src/renderer/types/vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/types/vue.d.ts -------------------------------------------------------------------------------- /src/renderer/utils/axiosLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/utils/axiosLoading.ts -------------------------------------------------------------------------------- /src/renderer/utils/emojify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/utils/emojify.js -------------------------------------------------------------------------------- /src/renderer/utils/fonts/index.d.ts: -------------------------------------------------------------------------------- 1 | declare let f: Array 2 | 3 | export default f 4 | -------------------------------------------------------------------------------- /src/renderer/utils/fonts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/utils/fonts/index.js -------------------------------------------------------------------------------- /src/renderer/utils/quoteSupported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/utils/quoteSupported.ts -------------------------------------------------------------------------------- /src/renderer/utils/suggestText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/utils/suggestText.js -------------------------------------------------------------------------------- /src/renderer/utils/tootParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/utils/tootParser.js -------------------------------------------------------------------------------- /src/renderer/utils/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/renderer/utils/validator.js -------------------------------------------------------------------------------- /src/types/accountNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/accountNotification.ts -------------------------------------------------------------------------------- /src/types/appearance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/appearance.ts -------------------------------------------------------------------------------- /src/types/cachedAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/cachedAccount.ts -------------------------------------------------------------------------------- /src/types/enabledTimelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/enabledTimelines.ts -------------------------------------------------------------------------------- /src/types/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/global.ts -------------------------------------------------------------------------------- /src/types/insertAccountCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/insertAccountCache.ts -------------------------------------------------------------------------------- /src/types/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/language.ts -------------------------------------------------------------------------------- /src/types/localAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/localAccount.ts -------------------------------------------------------------------------------- /src/types/localTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/localTag.ts -------------------------------------------------------------------------------- /src/types/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/notify.ts -------------------------------------------------------------------------------- /src/types/preference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/preference.ts -------------------------------------------------------------------------------- /src/types/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/proxy.ts -------------------------------------------------------------------------------- /src/types/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/sound.ts -------------------------------------------------------------------------------- /src/types/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/timeline.ts -------------------------------------------------------------------------------- /src/types/unreadNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/src/types/unreadNotification.ts -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/static/images/icon.png -------------------------------------------------------------------------------- /static/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/static/images/loading.svg -------------------------------------------------------------------------------- /static/images/logo-roma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/static/images/logo-roma.png -------------------------------------------------------------------------------- /static/splash-screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/static/splash-screen.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roma-apps/roma-desktop/HEAD/yarn.lock --------------------------------------------------------------------------------