├── .editorconfig ├── .env ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .kktrc.js ├── README.md ├── chrome-main ├── manifest.json └── osc-logo.png ├── img ├── newtab.gif ├── newtab1.gif ├── newtab2.gif ├── osc-extensions.png ├── osc-news1.png ├── osc-news2.png ├── osc-news3.png ├── osc-news4.png ├── osc-news5.png ├── osc-news6.png ├── osc-news7.png ├── osc-news8.png └── oschina.svg ├── package.json ├── public ├── favicon.ico └── index.html ├── renovate.json └── src ├── Root.js ├── Route.js ├── assets ├── add-icon.png ├── apple.svg ├── chrome-app.svg ├── gitee.svg ├── github.svg ├── linux-logo.svg ├── oschina.svg ├── setting.svg └── website.svg ├── component ├── Clock │ ├── index.js │ └── index.module.less ├── Contextmenu │ ├── index.js │ └── index.module.less ├── Dropdown │ ├── index.js │ └── index.module.less ├── Footer.js ├── Footer.module.less ├── Header.js ├── Header.module.less ├── Icon │ └── index.js ├── Loading │ ├── index.js │ └── index.module.less ├── Modal │ └── index.module.less ├── OSCNews.js ├── OSCNews.module.less ├── Progress │ ├── index.js │ └── index.module.less ├── Search │ ├── index.js │ └── index.module.less ├── Select │ ├── index.js │ └── index.module.less ├── Switch │ ├── index.js │ └── index.module.less ├── container │ ├── index.js │ └── index.module.less └── modal │ └── index.js ├── index.js ├── index.less ├── pages ├── Blank.js ├── Blank.module.less ├── Document │ ├── icons.js │ ├── index.js │ └── index.module.less ├── Github.js ├── Github.module.less ├── History.js ├── History.module.less ├── Linux │ ├── index.js │ └── index.module.less ├── Navigation │ ├── Edit.js │ ├── Edit.module.less │ ├── index.js │ └── index.module.less ├── Search │ ├── index.js │ └── index.module.less └── Todo │ ├── icon.js │ ├── index.js │ └── index.module.less ├── source ├── search.json ├── trending.json └── website.json └── utils ├── BlockFetch.js ├── fetch.js ├── index.js └── theWeek.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/.env -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/.gitmodules -------------------------------------------------------------------------------- /.kktrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/.kktrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/README.md -------------------------------------------------------------------------------- /chrome-main/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/chrome-main/manifest.json -------------------------------------------------------------------------------- /chrome-main/osc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/chrome-main/osc-logo.png -------------------------------------------------------------------------------- /img/newtab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/newtab.gif -------------------------------------------------------------------------------- /img/newtab1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/newtab1.gif -------------------------------------------------------------------------------- /img/newtab2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/newtab2.gif -------------------------------------------------------------------------------- /img/osc-extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/osc-extensions.png -------------------------------------------------------------------------------- /img/osc-news1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/osc-news1.png -------------------------------------------------------------------------------- /img/osc-news2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/osc-news2.png -------------------------------------------------------------------------------- /img/osc-news3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/osc-news3.png -------------------------------------------------------------------------------- /img/osc-news4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/osc-news4.png -------------------------------------------------------------------------------- /img/osc-news5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/osc-news5.png -------------------------------------------------------------------------------- /img/osc-news6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/osc-news6.png -------------------------------------------------------------------------------- /img/osc-news7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/osc-news7.png -------------------------------------------------------------------------------- /img/osc-news8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/osc-news8.png -------------------------------------------------------------------------------- /img/oschina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/img/oschina.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/public/index.html -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/renovate.json -------------------------------------------------------------------------------- /src/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/Root.js -------------------------------------------------------------------------------- /src/Route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/Route.js -------------------------------------------------------------------------------- /src/assets/add-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/assets/add-icon.png -------------------------------------------------------------------------------- /src/assets/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/assets/apple.svg -------------------------------------------------------------------------------- /src/assets/chrome-app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/assets/chrome-app.svg -------------------------------------------------------------------------------- /src/assets/gitee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/assets/gitee.svg -------------------------------------------------------------------------------- /src/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/assets/github.svg -------------------------------------------------------------------------------- /src/assets/linux-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/assets/linux-logo.svg -------------------------------------------------------------------------------- /src/assets/oschina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/assets/oschina.svg -------------------------------------------------------------------------------- /src/assets/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/assets/setting.svg -------------------------------------------------------------------------------- /src/assets/website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/assets/website.svg -------------------------------------------------------------------------------- /src/component/Clock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Clock/index.js -------------------------------------------------------------------------------- /src/component/Clock/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Clock/index.module.less -------------------------------------------------------------------------------- /src/component/Contextmenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Contextmenu/index.js -------------------------------------------------------------------------------- /src/component/Contextmenu/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Contextmenu/index.module.less -------------------------------------------------------------------------------- /src/component/Dropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Dropdown/index.js -------------------------------------------------------------------------------- /src/component/Dropdown/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Dropdown/index.module.less -------------------------------------------------------------------------------- /src/component/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Footer.js -------------------------------------------------------------------------------- /src/component/Footer.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Footer.module.less -------------------------------------------------------------------------------- /src/component/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Header.js -------------------------------------------------------------------------------- /src/component/Header.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Header.module.less -------------------------------------------------------------------------------- /src/component/Icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Icon/index.js -------------------------------------------------------------------------------- /src/component/Loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Loading/index.js -------------------------------------------------------------------------------- /src/component/Loading/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Loading/index.module.less -------------------------------------------------------------------------------- /src/component/Modal/index.module.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/OSCNews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/OSCNews.js -------------------------------------------------------------------------------- /src/component/OSCNews.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/OSCNews.module.less -------------------------------------------------------------------------------- /src/component/Progress/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Progress/index.js -------------------------------------------------------------------------------- /src/component/Progress/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Progress/index.module.less -------------------------------------------------------------------------------- /src/component/Search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Search/index.js -------------------------------------------------------------------------------- /src/component/Search/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Search/index.module.less -------------------------------------------------------------------------------- /src/component/Select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Select/index.js -------------------------------------------------------------------------------- /src/component/Select/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Select/index.module.less -------------------------------------------------------------------------------- /src/component/Switch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Switch/index.js -------------------------------------------------------------------------------- /src/component/Switch/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/Switch/index.module.less -------------------------------------------------------------------------------- /src/component/container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/container/index.js -------------------------------------------------------------------------------- /src/component/container/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/container/index.module.less -------------------------------------------------------------------------------- /src/component/modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/component/modal/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/index.less -------------------------------------------------------------------------------- /src/pages/Blank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Blank.js -------------------------------------------------------------------------------- /src/pages/Blank.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Blank.module.less -------------------------------------------------------------------------------- /src/pages/Document/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Document/icons.js -------------------------------------------------------------------------------- /src/pages/Document/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Document/index.js -------------------------------------------------------------------------------- /src/pages/Document/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Document/index.module.less -------------------------------------------------------------------------------- /src/pages/Github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Github.js -------------------------------------------------------------------------------- /src/pages/Github.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Github.module.less -------------------------------------------------------------------------------- /src/pages/History.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/History.js -------------------------------------------------------------------------------- /src/pages/History.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/History.module.less -------------------------------------------------------------------------------- /src/pages/Linux/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Linux/index.js -------------------------------------------------------------------------------- /src/pages/Linux/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Linux/index.module.less -------------------------------------------------------------------------------- /src/pages/Navigation/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Navigation/Edit.js -------------------------------------------------------------------------------- /src/pages/Navigation/Edit.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Navigation/Edit.module.less -------------------------------------------------------------------------------- /src/pages/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Navigation/index.js -------------------------------------------------------------------------------- /src/pages/Navigation/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Navigation/index.module.less -------------------------------------------------------------------------------- /src/pages/Search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Search/index.js -------------------------------------------------------------------------------- /src/pages/Search/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Search/index.module.less -------------------------------------------------------------------------------- /src/pages/Todo/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Todo/icon.js -------------------------------------------------------------------------------- /src/pages/Todo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Todo/index.js -------------------------------------------------------------------------------- /src/pages/Todo/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/pages/Todo/index.module.less -------------------------------------------------------------------------------- /src/source/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/source/search.json -------------------------------------------------------------------------------- /src/source/trending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/source/trending.json -------------------------------------------------------------------------------- /src/source/website.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/source/website.json -------------------------------------------------------------------------------- /src/utils/BlockFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/utils/BlockFetch.js -------------------------------------------------------------------------------- /src/utils/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/utils/fetch.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/theWeek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/oscnews/HEAD/src/utils/theWeek.js --------------------------------------------------------------------------------