├── .browserslistrc ├── .editorconfig ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── stale.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── babel.config.js ├── darkscreenshot.png ├── package.json ├── podcast.png ├── public ├── arrow-left.png ├── arrow-left@2x.png ├── arrow-right.png ├── arrow-right@2x.png ├── favicon.ico ├── feather-sprite.svg ├── icon.png ├── index.html ├── locales │ ├── ar │ │ └── translation.json │ ├── ca │ │ └── translation.json │ ├── de │ │ └── translation.json │ ├── en-US │ │ ├── translation.json │ │ └── translation.missing.json │ ├── en │ │ └── translation.json │ ├── es │ │ └── translation.json │ ├── fr │ │ └── translation.json │ ├── it │ │ └── translation.json │ ├── ja │ │ ├── translation.json │ │ └── translation.missing.json │ ├── nl │ │ ├── translation.json │ │ └── translation.missing.json │ ├── pl │ │ └── translation.json │ ├── pt-br │ │ └── translation.json │ ├── ru │ │ ├── translation.json │ │ └── translation.missing.json │ ├── tr │ │ ├── translation.json │ │ └── translation.missing.json │ ├── zh-CN │ │ └── translation.json │ └── zh-TW │ │ └── translation.json ├── mactrayiconTemplate.png ├── mactrayiconTemplate@2x.png ├── star.png ├── star@2x.png ├── trayicon-linux.png ├── wifi-off.png ├── wifi-off@2x.png └── windowstrayicon.ico ├── raven-newlook.png ├── raven-web.png ├── src ├── 256x256.png ├── App.vue ├── assets │ ├── fonts │ │ ├── muli-v13-latin-ext_latin-600.eot │ │ ├── muli-v13-latin-ext_latin-600.svg │ │ ├── muli-v13-latin-ext_latin-600.ttf │ │ ├── muli-v13-latin-ext_latin-600.woff │ │ ├── muli-v13-latin-ext_latin-600.woff2 │ │ ├── muli-v13-latin-ext_latin-800.eot │ │ ├── muli-v13-latin-ext_latin-800.svg │ │ ├── muli-v13-latin-ext_latin-800.ttf │ │ ├── muli-v13-latin-ext_latin-800.woff │ │ ├── muli-v13-latin-ext_latin-800.woff2 │ │ ├── muli-v13-latin-ext_latin-italic.eot │ │ ├── muli-v13-latin-ext_latin-italic.svg │ │ ├── muli-v13-latin-ext_latin-italic.ttf │ │ ├── muli-v13-latin-ext_latin-italic.woff │ │ ├── muli-v13-latin-ext_latin-italic.woff2 │ │ ├── muli-v13-latin-ext_latin-regular.eot │ │ ├── muli-v13-latin-ext_latin-regular.svg │ │ ├── muli-v13-latin-ext_latin-regular.ttf │ │ ├── muli-v13-latin-ext_latin-regular.woff │ │ ├── muli-v13-latin-ext_latin-regular.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-300.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-300.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-300italic.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-300italic.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-600.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-600.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-600italic.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-600italic.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-700.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-700.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-700italic.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-700italic.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-800.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-800.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-800italic.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-800italic.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-italic.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-italic.woff2 │ │ ├── open-sans-v15-latin_cyrillic-ext-regular.woff │ │ ├── open-sans-v15-latin_cyrillic-ext-regular.woff2 │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-700.eot │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-700.svg │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-700.ttf │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-700.woff │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-700.woff2 │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-900.eot │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-900.svg │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-900.ttf │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-900.woff │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-900.woff2 │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-italic.eot │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-italic.svg │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-italic.ttf │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-italic.woff │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-italic.woff2 │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-regular.eot │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-regular.svg │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-regular.ttf │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-regular.woff │ │ ├── playfair-display-v14-latin-ext_cyrillic_latin-regular.woff2 │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.eot │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.svg │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.ttf │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.woff │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.woff2 │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.eot │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.svg │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.ttf │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.woff │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.woff2 │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.eot │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.svg │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.ttf │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.woff │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.woff2 │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.eot │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.svg │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.ttf │ │ ├── roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.woff │ │ └── roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.woff2 │ ├── raven-logo.svg │ ├── trayicon-linux.png │ └── windowstrayicon.ico ├── background.js ├── bridge │ ├── electron.js │ ├── electronstore.js │ ├── feedbin.js │ ├── fever.js │ ├── greader.js │ ├── inoreader.js │ ├── instapaper.js │ ├── mercury.js │ ├── pocket.js │ ├── rss.js │ └── sanitize.js ├── components │ ├── AppIcon.vue │ ├── ArticleDetail.vue │ ├── ArticleList.vue │ ├── ArticleListItem.vue │ ├── ArticleToolbar.vue │ ├── BouncingLoader.vue │ ├── EditCategory.vue │ ├── EditFeed.vue │ ├── FeedMix.vue │ ├── Feedbin.vue │ ├── Fever.vue │ ├── ImportModal.vue │ ├── Inoreader.vue │ ├── ManageCategories.vue │ ├── ManageFeeds.vue │ ├── MarkReadModal.vue │ ├── MarkUnreadModal.vue │ ├── MenuItems.vue │ ├── PreferenceWindowModal.vue │ ├── SelfHostedGreader.vue │ ├── SubscribeModal.vue │ ├── SubscribeToolbar.vue │ ├── Subscriptions.vue │ └── register.js ├── db.js ├── external_links.js ├── i18n.config.js ├── i18nmain.config.js ├── main.js ├── main │ ├── article.js │ ├── menu.js │ ├── pocket.js │ └── touchbar.js ├── mixins │ ├── articleCount.js │ ├── cheerio.js │ ├── dataItems.js │ ├── feedMix.js │ ├── serviceSync.js │ └── setTheme.js ├── parsers │ ├── article.js │ └── feed.js ├── preload.js ├── router │ └── index.js ├── services │ ├── bridge.js │ ├── bus.js │ ├── cacheArticle.js │ ├── db.js │ ├── feedbin.js │ ├── fever.js │ ├── greader.js │ ├── helpers.js │ ├── inoreader.js │ ├── opml.js │ ├── sortBy.js │ ├── truncate.js │ └── unescape.js ├── store │ ├── index.js │ └── modules │ │ ├── Article.js │ │ ├── Category.js │ │ ├── Database.js │ │ ├── Feed.js │ │ ├── FeedManager.js │ │ ├── Setting.js │ │ └── index.js └── views │ └── Main.vue ├── video.png ├── vue.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/babel.config.js -------------------------------------------------------------------------------- /darkscreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/darkscreenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/package.json -------------------------------------------------------------------------------- /podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/podcast.png -------------------------------------------------------------------------------- /public/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/arrow-left.png -------------------------------------------------------------------------------- /public/arrow-left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/arrow-left@2x.png -------------------------------------------------------------------------------- /public/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/arrow-right.png -------------------------------------------------------------------------------- /public/arrow-right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/arrow-right@2x.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/feather-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/feather-sprite.svg -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/index.html -------------------------------------------------------------------------------- /public/locales/ar/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/ar/translation.json -------------------------------------------------------------------------------- /public/locales/ca/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/ca/translation.json -------------------------------------------------------------------------------- /public/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/de/translation.json -------------------------------------------------------------------------------- /public/locales/en-US/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/en-US/translation.json -------------------------------------------------------------------------------- /public/locales/en-US/translation.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/en-US/translation.missing.json -------------------------------------------------------------------------------- /public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/en/translation.json -------------------------------------------------------------------------------- /public/locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/es/translation.json -------------------------------------------------------------------------------- /public/locales/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/fr/translation.json -------------------------------------------------------------------------------- /public/locales/it/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/it/translation.json -------------------------------------------------------------------------------- /public/locales/ja/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/ja/translation.json -------------------------------------------------------------------------------- /public/locales/ja/translation.missing.json: -------------------------------------------------------------------------------- 1 | { 2 | "Language": "言語" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /public/locales/nl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/nl/translation.json -------------------------------------------------------------------------------- /public/locales/nl/translation.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/nl/translation.missing.json -------------------------------------------------------------------------------- /public/locales/pl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/pl/translation.json -------------------------------------------------------------------------------- /public/locales/pt-br/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/pt-br/translation.json -------------------------------------------------------------------------------- /public/locales/ru/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/ru/translation.json -------------------------------------------------------------------------------- /public/locales/ru/translation.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/ru/translation.missing.json -------------------------------------------------------------------------------- /public/locales/tr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/tr/translation.json -------------------------------------------------------------------------------- /public/locales/tr/translation.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/tr/translation.missing.json -------------------------------------------------------------------------------- /public/locales/zh-CN/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/zh-CN/translation.json -------------------------------------------------------------------------------- /public/locales/zh-TW/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/locales/zh-TW/translation.json -------------------------------------------------------------------------------- /public/mactrayiconTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/mactrayiconTemplate.png -------------------------------------------------------------------------------- /public/mactrayiconTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/mactrayiconTemplate@2x.png -------------------------------------------------------------------------------- /public/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/star.png -------------------------------------------------------------------------------- /public/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/star@2x.png -------------------------------------------------------------------------------- /public/trayicon-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/trayicon-linux.png -------------------------------------------------------------------------------- /public/wifi-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/wifi-off.png -------------------------------------------------------------------------------- /public/wifi-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/wifi-off@2x.png -------------------------------------------------------------------------------- /public/windowstrayicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/public/windowstrayicon.ico -------------------------------------------------------------------------------- /raven-newlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/raven-newlook.png -------------------------------------------------------------------------------- /raven-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/raven-web.png -------------------------------------------------------------------------------- /src/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/256x256.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-600.eot -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-600.svg -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-600.ttf -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-600.woff -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-600.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-800.eot -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-800.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-800.svg -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-800.ttf -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-800.woff -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-800.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-italic.eot -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-italic.svg -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-regular.svg -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/muli-v13-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/muli-v13-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-300.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-300.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-300italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-300italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-600.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-600.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-600italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-600italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-600italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-700italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-700italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-800.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-800.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-800italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-800italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-800italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/open-sans-v15-latin_cyrillic-ext-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/open-sans-v15-latin_cyrillic-ext-regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.eot -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.svg -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.ttf -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.eot -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.svg -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.ttf -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.woff -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-900.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.eot -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.svg -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.svg -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/playfair-display-v14-latin-ext_cyrillic_latin-regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.svg -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-100.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.svg -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-300.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.svg -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.svg -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/fonts/roboto-slab-v8-cyrillic-ext_cyrillic_latin-regular.woff2 -------------------------------------------------------------------------------- /src/assets/raven-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/raven-logo.svg -------------------------------------------------------------------------------- /src/assets/trayicon-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/trayicon-linux.png -------------------------------------------------------------------------------- /src/assets/windowstrayicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/assets/windowstrayicon.ico -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/background.js -------------------------------------------------------------------------------- /src/bridge/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/electron.js -------------------------------------------------------------------------------- /src/bridge/electronstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/electronstore.js -------------------------------------------------------------------------------- /src/bridge/feedbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/feedbin.js -------------------------------------------------------------------------------- /src/bridge/fever.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/fever.js -------------------------------------------------------------------------------- /src/bridge/greader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/greader.js -------------------------------------------------------------------------------- /src/bridge/inoreader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/inoreader.js -------------------------------------------------------------------------------- /src/bridge/instapaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/instapaper.js -------------------------------------------------------------------------------- /src/bridge/mercury.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/mercury.js -------------------------------------------------------------------------------- /src/bridge/pocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/pocket.js -------------------------------------------------------------------------------- /src/bridge/rss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/rss.js -------------------------------------------------------------------------------- /src/bridge/sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/bridge/sanitize.js -------------------------------------------------------------------------------- /src/components/AppIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/AppIcon.vue -------------------------------------------------------------------------------- /src/components/ArticleDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/ArticleDetail.vue -------------------------------------------------------------------------------- /src/components/ArticleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/ArticleList.vue -------------------------------------------------------------------------------- /src/components/ArticleListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/ArticleListItem.vue -------------------------------------------------------------------------------- /src/components/ArticleToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/ArticleToolbar.vue -------------------------------------------------------------------------------- /src/components/BouncingLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/BouncingLoader.vue -------------------------------------------------------------------------------- /src/components/EditCategory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/EditCategory.vue -------------------------------------------------------------------------------- /src/components/EditFeed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/EditFeed.vue -------------------------------------------------------------------------------- /src/components/FeedMix.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/FeedMix.vue -------------------------------------------------------------------------------- /src/components/Feedbin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/Feedbin.vue -------------------------------------------------------------------------------- /src/components/Fever.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/Fever.vue -------------------------------------------------------------------------------- /src/components/ImportModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/ImportModal.vue -------------------------------------------------------------------------------- /src/components/Inoreader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/Inoreader.vue -------------------------------------------------------------------------------- /src/components/ManageCategories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/ManageCategories.vue -------------------------------------------------------------------------------- /src/components/ManageFeeds.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/ManageFeeds.vue -------------------------------------------------------------------------------- /src/components/MarkReadModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/MarkReadModal.vue -------------------------------------------------------------------------------- /src/components/MarkUnreadModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/MarkUnreadModal.vue -------------------------------------------------------------------------------- /src/components/MenuItems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/MenuItems.vue -------------------------------------------------------------------------------- /src/components/PreferenceWindowModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/PreferenceWindowModal.vue -------------------------------------------------------------------------------- /src/components/SelfHostedGreader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/SelfHostedGreader.vue -------------------------------------------------------------------------------- /src/components/SubscribeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/SubscribeModal.vue -------------------------------------------------------------------------------- /src/components/SubscribeToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/SubscribeToolbar.vue -------------------------------------------------------------------------------- /src/components/Subscriptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/Subscriptions.vue -------------------------------------------------------------------------------- /src/components/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/components/register.js -------------------------------------------------------------------------------- /src/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/db.js -------------------------------------------------------------------------------- /src/external_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/external_links.js -------------------------------------------------------------------------------- /src/i18n.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/i18n.config.js -------------------------------------------------------------------------------- /src/i18nmain.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/i18nmain.config.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/main.js -------------------------------------------------------------------------------- /src/main/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/main/article.js -------------------------------------------------------------------------------- /src/main/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/main/menu.js -------------------------------------------------------------------------------- /src/main/pocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/main/pocket.js -------------------------------------------------------------------------------- /src/main/touchbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/main/touchbar.js -------------------------------------------------------------------------------- /src/mixins/articleCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/mixins/articleCount.js -------------------------------------------------------------------------------- /src/mixins/cheerio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/mixins/cheerio.js -------------------------------------------------------------------------------- /src/mixins/dataItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/mixins/dataItems.js -------------------------------------------------------------------------------- /src/mixins/feedMix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/mixins/feedMix.js -------------------------------------------------------------------------------- /src/mixins/serviceSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/mixins/serviceSync.js -------------------------------------------------------------------------------- /src/mixins/setTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/mixins/setTheme.js -------------------------------------------------------------------------------- /src/parsers/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/parsers/article.js -------------------------------------------------------------------------------- /src/parsers/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/parsers/feed.js -------------------------------------------------------------------------------- /src/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/preload.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/services/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/bridge.js -------------------------------------------------------------------------------- /src/services/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/bus.js -------------------------------------------------------------------------------- /src/services/cacheArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/cacheArticle.js -------------------------------------------------------------------------------- /src/services/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/db.js -------------------------------------------------------------------------------- /src/services/feedbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/feedbin.js -------------------------------------------------------------------------------- /src/services/fever.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/fever.js -------------------------------------------------------------------------------- /src/services/greader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/greader.js -------------------------------------------------------------------------------- /src/services/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/helpers.js -------------------------------------------------------------------------------- /src/services/inoreader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/inoreader.js -------------------------------------------------------------------------------- /src/services/opml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/opml.js -------------------------------------------------------------------------------- /src/services/sortBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/sortBy.js -------------------------------------------------------------------------------- /src/services/truncate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/truncate.js -------------------------------------------------------------------------------- /src/services/unescape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/services/unescape.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/Article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/store/modules/Article.js -------------------------------------------------------------------------------- /src/store/modules/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/store/modules/Category.js -------------------------------------------------------------------------------- /src/store/modules/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/store/modules/Database.js -------------------------------------------------------------------------------- /src/store/modules/Feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/store/modules/Feed.js -------------------------------------------------------------------------------- /src/store/modules/FeedManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/store/modules/FeedManager.js -------------------------------------------------------------------------------- /src/store/modules/Setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/store/modules/Setting.js -------------------------------------------------------------------------------- /src/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/store/modules/index.js -------------------------------------------------------------------------------- /src/views/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/src/views/Main.vue -------------------------------------------------------------------------------- /video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/video.png -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-efficiency-inc/raven-reader/HEAD/yarn.lock --------------------------------------------------------------------------------