├── .gitignore ├── .gitmodules ├── .vscode └── launch.json ├── LICENSE.md ├── README.md ├── config └── config.json ├── db └── gift.json ├── git ├── icon.ico ├── index.html ├── main.js ├── models └── gitf.js ├── package.json ├── plugin └── tts │ └── index.js ├── preload.js ├── renderer.js ├── services ├── .gitignore ├── LICENSE ├── app.js ├── bussiness │ └── giftGraph.js ├── handler │ └── message.js ├── init.js ├── public │ ├── css │ │ ├── app.120b8199.css │ │ └── chunk-vendors.6327968e.css │ ├── favicon.ico │ ├── fonts │ │ ├── element-icons.535877f5.woff │ │ └── element-icons.732389de.ttf │ ├── index.html │ ├── js │ │ ├── app.1e10440d.js │ │ ├── app.1e10440d.js.map │ │ ├── chunk-vendors.2bd3bd77.js │ │ └── chunk-vendors.2bd3bd77.js.map │ └── static │ │ └── img │ │ ├── icons │ │ ├── guard-level-1.png │ │ ├── guard-level-2.png │ │ └── guard-level-3.png │ │ ├── logo.png │ │ ├── stickers │ │ ├── nnk.png │ │ ├── t0.png │ │ └── t1.gif │ │ └── tutorial │ │ ├── tutorial-1.png │ │ ├── tutorial-2.png │ │ ├── tutorial-3.png │ │ ├── tutorial-4.png │ │ ├── tutorial-5.png │ │ └── tutorial-6.png ├── routes │ ├── giftGraph.js │ └── index.js └── utils │ ├── auto_open.js │ └── mkdir.js ├── style.css └── types └── gift.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | upload 3 | dist -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/README.md -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/config/config.json -------------------------------------------------------------------------------- /db/gift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/db/gift.json -------------------------------------------------------------------------------- /git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/icon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/main.js -------------------------------------------------------------------------------- /models/gitf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/models/gitf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/package.json -------------------------------------------------------------------------------- /plugin/tts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/plugin/tts/index.js -------------------------------------------------------------------------------- /preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/preload.js -------------------------------------------------------------------------------- /renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/renderer.js -------------------------------------------------------------------------------- /services/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/.gitignore -------------------------------------------------------------------------------- /services/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/LICENSE -------------------------------------------------------------------------------- /services/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/app.js -------------------------------------------------------------------------------- /services/bussiness/giftGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/bussiness/giftGraph.js -------------------------------------------------------------------------------- /services/handler/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/handler/message.js -------------------------------------------------------------------------------- /services/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/init.js -------------------------------------------------------------------------------- /services/public/css/app.120b8199.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/css/app.120b8199.css -------------------------------------------------------------------------------- /services/public/css/chunk-vendors.6327968e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/css/chunk-vendors.6327968e.css -------------------------------------------------------------------------------- /services/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/favicon.ico -------------------------------------------------------------------------------- /services/public/fonts/element-icons.535877f5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/fonts/element-icons.535877f5.woff -------------------------------------------------------------------------------- /services/public/fonts/element-icons.732389de.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/fonts/element-icons.732389de.ttf -------------------------------------------------------------------------------- /services/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/index.html -------------------------------------------------------------------------------- /services/public/js/app.1e10440d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/js/app.1e10440d.js -------------------------------------------------------------------------------- /services/public/js/app.1e10440d.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/js/app.1e10440d.js.map -------------------------------------------------------------------------------- /services/public/js/chunk-vendors.2bd3bd77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/js/chunk-vendors.2bd3bd77.js -------------------------------------------------------------------------------- /services/public/js/chunk-vendors.2bd3bd77.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/js/chunk-vendors.2bd3bd77.js.map -------------------------------------------------------------------------------- /services/public/static/img/icons/guard-level-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/icons/guard-level-1.png -------------------------------------------------------------------------------- /services/public/static/img/icons/guard-level-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/icons/guard-level-2.png -------------------------------------------------------------------------------- /services/public/static/img/icons/guard-level-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/icons/guard-level-3.png -------------------------------------------------------------------------------- /services/public/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/logo.png -------------------------------------------------------------------------------- /services/public/static/img/stickers/nnk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/stickers/nnk.png -------------------------------------------------------------------------------- /services/public/static/img/stickers/t0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/stickers/t0.png -------------------------------------------------------------------------------- /services/public/static/img/stickers/t1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/stickers/t1.gif -------------------------------------------------------------------------------- /services/public/static/img/tutorial/tutorial-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/tutorial/tutorial-1.png -------------------------------------------------------------------------------- /services/public/static/img/tutorial/tutorial-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/tutorial/tutorial-2.png -------------------------------------------------------------------------------- /services/public/static/img/tutorial/tutorial-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/tutorial/tutorial-3.png -------------------------------------------------------------------------------- /services/public/static/img/tutorial/tutorial-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/tutorial/tutorial-4.png -------------------------------------------------------------------------------- /services/public/static/img/tutorial/tutorial-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/tutorial/tutorial-5.png -------------------------------------------------------------------------------- /services/public/static/img/tutorial/tutorial-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/public/static/img/tutorial/tutorial-6.png -------------------------------------------------------------------------------- /services/routes/giftGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/routes/giftGraph.js -------------------------------------------------------------------------------- /services/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/routes/index.js -------------------------------------------------------------------------------- /services/utils/auto_open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/utils/auto_open.js -------------------------------------------------------------------------------- /services/utils/mkdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/services/utils/mkdir.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/style.css -------------------------------------------------------------------------------- /types/gift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/aclivechat-electron/HEAD/types/gift.js --------------------------------------------------------------------------------