├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── assets └── logo.svg ├── include ├── app.h ├── config.h ├── output.h ├── scanner.h └── utils.h ├── main.cpp └── src ├── app.cpp ├── config.cpp ├── output.cpp ├── scanner.cpp └── utils.cpp /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.csv 3 | SHA256SUMS.txt 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/README_en.md -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/include/app.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/include/config.h -------------------------------------------------------------------------------- /include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/include/output.h -------------------------------------------------------------------------------- /include/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/include/scanner.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/include/utils.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/main.cpp -------------------------------------------------------------------------------- /src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/src/app.cpp -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/src/output.cpp -------------------------------------------------------------------------------- /src/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/src/scanner.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/Finder/HEAD/src/utils.cpp --------------------------------------------------------------------------------