├── .gitignore ├── LICENSE ├── README.md ├── SessionStringGen.py ├── docs ├── CODEOFCONDUCT.md ├── LocalStringGem.md ├── Readme.md ├── configfile.md ├── getvar.md ├── runvps.md ├── variable.md └── workflow.md ├── host ├── __init__.py ├── linux │ ├── haspython.sh │ └── python.sh └── windows │ ├── haspython.bat │ └── python.ps1 └── start.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/README.md -------------------------------------------------------------------------------- /SessionStringGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/SessionStringGen.py -------------------------------------------------------------------------------- /docs/CODEOFCONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/docs/CODEOFCONDUCT.md -------------------------------------------------------------------------------- /docs/LocalStringGem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/docs/LocalStringGem.md -------------------------------------------------------------------------------- /docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/docs/Readme.md -------------------------------------------------------------------------------- /docs/configfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/docs/configfile.md -------------------------------------------------------------------------------- /docs/getvar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/docs/getvar.md -------------------------------------------------------------------------------- /docs/runvps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/docs/runvps.md -------------------------------------------------------------------------------- /docs/variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/docs/variable.md -------------------------------------------------------------------------------- /docs/workflow.md: -------------------------------------------------------------------------------- 1 | - Shifted to [Here](https://github.com/TeamZenX/VisionWorkflow) 2 | -------------------------------------------------------------------------------- /host/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/host/__init__.py -------------------------------------------------------------------------------- /host/linux/haspython.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/host/linux/haspython.sh -------------------------------------------------------------------------------- /host/linux/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/host/linux/python.sh -------------------------------------------------------------------------------- /host/windows/haspython.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/host/windows/haspython.bat -------------------------------------------------------------------------------- /host/windows/python.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamZenX/TheVision/HEAD/host/windows/python.ps1 -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call "host/windows/haspython.bat" 3 | --------------------------------------------------------------------------------