├── .github └── workflows │ ├── bootstraps.yml │ ├── proton-exp.yml │ ├── proton.yml │ ├── wine-fsync.yml │ ├── wine-git.yml │ ├── wine-stable.yml │ └── wine.yml ├── LICENSE ├── README.md ├── create_ubuntu_bootstraps.sh ├── mingw-w64-build ├── ntsync-fix-32-bit-processes.patch └── proton-opencl.patch /.github/workflows/bootstraps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/.github/workflows/bootstraps.yml -------------------------------------------------------------------------------- /.github/workflows/proton-exp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/.github/workflows/proton-exp.yml -------------------------------------------------------------------------------- /.github/workflows/proton.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/.github/workflows/proton.yml -------------------------------------------------------------------------------- /.github/workflows/wine-fsync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/.github/workflows/wine-fsync.yml -------------------------------------------------------------------------------- /.github/workflows/wine-git.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/.github/workflows/wine-git.yml -------------------------------------------------------------------------------- /.github/workflows/wine-stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/.github/workflows/wine-stable.yml -------------------------------------------------------------------------------- /.github/workflows/wine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/.github/workflows/wine.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/README.md -------------------------------------------------------------------------------- /create_ubuntu_bootstraps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/create_ubuntu_bootstraps.sh -------------------------------------------------------------------------------- /mingw-w64-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/mingw-w64-build -------------------------------------------------------------------------------- /ntsync-fix-32-bit-processes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/ntsync-fix-32-bit-processes.patch -------------------------------------------------------------------------------- /proton-opencl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kron4ek/Wine-Builds/HEAD/proton-opencl.patch --------------------------------------------------------------------------------