├── .github ├── scripts │ ├── compile_deb.sh │ └── telegram_bot.sh └── workflows │ └── pack-deb.yml ├── .gitignore ├── README.md ├── deb ├── dpkg-conf │ └── control └── share │ └── vulnwsc.txt ├── src └── oneshot └── version /.github/scripts/compile_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rem01Gaming/OneShot-Termux/HEAD/.github/scripts/compile_deb.sh -------------------------------------------------------------------------------- /.github/scripts/telegram_bot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rem01Gaming/OneShot-Termux/HEAD/.github/scripts/telegram_bot.sh -------------------------------------------------------------------------------- /.github/workflows/pack-deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rem01Gaming/OneShot-Termux/HEAD/.github/workflows/pack-deb.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore output files 2 | /out/ 3 | oneshot.deb 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rem01Gaming/OneShot-Termux/HEAD/README.md -------------------------------------------------------------------------------- /deb/dpkg-conf/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rem01Gaming/OneShot-Termux/HEAD/deb/dpkg-conf/control -------------------------------------------------------------------------------- /deb/share/vulnwsc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rem01Gaming/OneShot-Termux/HEAD/deb/share/vulnwsc.txt -------------------------------------------------------------------------------- /src/oneshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rem01Gaming/OneShot-Termux/HEAD/src/oneshot -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 1.1.0 2 | --------------------------------------------------------------------------------