├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yaml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yaml │ └── feature_request.yaml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build_1_19.yaml │ ├── build_1_20.yaml │ ├── build_1_20_dev.yaml │ ├── build_1_21.yaml │ ├── build_1_21_dev.yaml │ ├── codeql.yaml │ └── stale.yaml ├── .gitignore ├── .yamllint ├── Artwork-LICENSE ├── LICENSE ├── README.md ├── logo.png └── scripts └── pre-commit /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @NovaMachina -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/FUNDING.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/ISSUE_TEMPLATE/config.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build_1_19.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/workflows/build_1_19.yaml -------------------------------------------------------------------------------- /.github/workflows/build_1_20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/workflows/build_1_20.yaml -------------------------------------------------------------------------------- /.github/workflows/build_1_20_dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/workflows/build_1_20_dev.yaml -------------------------------------------------------------------------------- /.github/workflows/build_1_21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/workflows/build_1_21.yaml -------------------------------------------------------------------------------- /.github/workflows/build_1_21_dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/workflows/build_1_21_dev.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/.yamllint -------------------------------------------------------------------------------- /Artwork-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/Artwork-LICENSE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/logo.png -------------------------------------------------------------------------------- /scripts/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NovaMachina-Mods/ExNihiloSequentia/HEAD/scripts/pre-commit --------------------------------------------------------------------------------