Skip to content

Commit 8906065

Browse files
committed
update
1 parent 862dcd9 commit 8906065

File tree

11 files changed

+29
-26
lines changed

11 files changed

+29
-26
lines changed

AffinityScripts/AffinityDesigner.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ detect_distro
8787

8888
# Check for unsupported distributions
8989
case $DISTRO in
90-
"ubuntu"|"linuxmint"|"zorin")
90+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
9191
print_header ""
9292
echo ""
9393
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -180,7 +180,7 @@ if [ -n "$missing_deps" ]; then
180180
print_error "Missing required dependencies: ${missing_deps}"
181181
echo ""
182182
case $DISTRO in
183-
"ubuntu"|"linuxmint"|"zorin")
183+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
184184
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
185185
echo -e "${RED}${BOLD} ⚠️ WARNING: UNSUPPORTED DISTRIBUTION ⚠️${NC}"
186186
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -224,7 +224,7 @@ fi
224224

225225
print_success "All required dependencies are installed!"
226226
case $DISTRO in
227-
"ubuntu"|"linuxmint"|"zorin")
227+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
228228
echo ""
229229
echo -e "${YELLOW}${BOLD}Continuing despite unsupported distribution. No support will be provided if issues arise.${NC}"
230230
;;

AffinityScripts/AffinityLinuxInstaller.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6761,7 +6761,7 @@ def check_dependencies(self):
67616761
self.update_progress(0.0)
67626762

67636763
# Show unsupported warning
6764-
if self.distro in ["ubuntu", "linuxmint", "zorin"]:
6764+
if self.distro in ["ubuntu", "linuxmint", "zorin", "bazzite"]:
67656765
self.show_unsupported_warning()
67666766

67676767
missing = []
@@ -6816,7 +6816,7 @@ def check_dependencies(self):
68166816
self.log(".NET SDK is installed", "success")
68176817

68186818
# Handle unsupported distributions - show warning and allow retry
6819-
if self.distro in ["ubuntu", "linuxmint", "pop", "zorin"]:
6819+
if self.distro in ["ubuntu", "linuxmint", "pop", "zorin", "bazzite"]:
68206820
if missing:
68216821
self.log("\n" + "="*80, "error")
68226822
self.log("⚠️ WARNING: UNSUPPORTED DISTRIBUTION", "error")
@@ -6847,7 +6847,7 @@ def check_dependencies(self):
68476847
self.log("No support will be provided if issues arise.", "warning")
68486848

68496849
# Install missing dependencies (only for supported distributions)
6850-
if missing and self.distro not in ["ubuntu", "linuxmint", "pop", "zorin"]:
6850+
if missing and self.distro not in ["ubuntu", "linuxmint", "pop", "zorin", "bazzite"]:
68516851
self.log(f"\nInstalling missing dependencies: {', '.join(missing)}", "info")
68526852
self.update_progress_text(f"Installing {len(missing)} missing packages...")
68536853
self.update_progress(0.5) # Start second half of progress

AffinityScripts/AffinityLinuxInstaller.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ check_dependencies() {
136136

137137
# Check if this is an unsupported distribution
138138
case $DISTRO in
139-
"ubuntu"|"linuxmint"|"zorin")
139+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
140140
print_header ""
141141
echo ""
142142
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -182,7 +182,7 @@ check_dependencies() {
182182

183183
# For unsupported distributions, check if we can continue
184184
case $DISTRO in
185-
"ubuntu"|"linuxmint"|"zorin")
185+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
186186
if [ -n "$missing_deps" ]; then
187187
echo ""
188188
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -369,7 +369,7 @@ install_dependencies() {
369369
sudo apt install -y winetricks wget curl p7zip-full tar jq zstd
370370
print_success "All dependencies installed for Pop!_OS"
371371
;;
372-
"ubuntu"|"linuxmint"|"zorin")
372+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
373373
# This should never be reached if check_dependencies works correctly,
374374
# but if it is, we'll show the warning and exit
375375
print_error "Unsupported distribution detected in install_dependencies()"

AffinityScripts/AffinityPhoto.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ detect_distro
8787

8888
# Check for unsupported distributions
8989
case $DISTRO in
90-
"ubuntu"|"linuxmint"|"zorin")
90+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
9191
print_header ""
9292
echo ""
9393
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -180,7 +180,7 @@ if [ -n "$missing_deps" ]; then
180180
print_error "Missing required dependencies: ${missing_deps}"
181181
echo ""
182182
case $DISTRO in
183-
"ubuntu"|"linuxmint"|"zorin")
183+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
184184
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
185185
echo -e "${RED}${BOLD} ⚠️ WARNING: UNSUPPORTED DISTRIBUTION ⚠️${NC}"
186186
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -224,7 +224,7 @@ fi
224224

225225
print_success "All required dependencies are installed!"
226226
case $DISTRO in
227-
"ubuntu"|"linuxmint"|"zorin")
227+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
228228
echo ""
229229
echo -e "${YELLOW}${BOLD}Continuing despite unsupported distribution. No support will be provided if issues arise.${NC}"
230230
;;

AffinityScripts/AffinityPublisher.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ detect_distro
8787

8888
# Check for unsupported distributions
8989
case $DISTRO in
90-
"ubuntu"|"linuxmint"|"zorin")
90+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
9191
print_header ""
9292
echo ""
9393
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -180,7 +180,7 @@ if [ -n "$missing_deps" ]; then
180180
print_error "Missing required dependencies: ${missing_deps}"
181181
echo ""
182182
case $DISTRO in
183-
"ubuntu"|"linuxmint"|"zorin")
183+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
184184
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
185185
echo -e "${RED}${BOLD} ⚠️ WARNING: UNSUPPORTED DISTRIBUTION ⚠️${NC}"
186186
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -224,7 +224,7 @@ fi
224224

225225
print_success "All required dependencies are installed!"
226226
case $DISTRO in
227-
"ubuntu"|"linuxmint"|"zorin")
227+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
228228
echo ""
229229
echo -e "${YELLOW}${BOLD}Continuing despite unsupported distribution. No support will be provided if issues arise.${NC}"
230230
;;

AffinityScripts/AffinityUpdater.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ detect_distro
3737

3838
# Check for unsupported distributions
3939
case $DISTRO in
40-
"ubuntu"|"linuxmint"|"zorin")
40+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
4141
echo ""
4242
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
4343
echo -e "${RED}${BOLD} ⚠️ WARNING: UNSUPPORTED DISTRIBUTION ⚠️${NC}"

AffinityScripts/Affinityv3.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ detect_distro
8787

8888
# Check for unsupported distributions
8989
case $DISTRO in
90-
"ubuntu"|"linuxmint"|"zorin")
90+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
9191
print_header ""
9292
echo ""
9393
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -180,7 +180,7 @@ if [ -n "$missing_deps" ]; then
180180
print_error "Missing required dependencies: ${missing_deps}"
181181
echo ""
182182
case $DISTRO in
183-
"ubuntu"|"linuxmint"|"zorin")
183+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
184184
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
185185
echo -e "${RED}${BOLD} ⚠️ WARNING: UNSUPPORTED DISTRIBUTION ⚠️${NC}"
186186
echo -e "${RED}${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
@@ -224,7 +224,7 @@ fi
224224

225225
print_success "All required dependencies are installed!"
226226
case $DISTRO in
227-
"ubuntu"|"linuxmint"|"zorin")
227+
"ubuntu"|"linuxmint"|"zorin"|"bazzite")
228228
echo ""
229229
echo -e "${YELLOW}${BOLD}Continuing despite unsupported distribution. No support will be provided if issues arise.${NC}"
230230
;;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ sudo apt install python3-pyqt6.qtsvg
9393
### Support Limitations
9494

9595
- **AMD/Intel GPU Issues:** I cannot fix OpenCL or Wine GPU bugs for AMD/Intel GPUs as I do not have access to these GPUs for testing. Use vkd3d-proton or DXVK instead (see [Hardware Acceleration](docs/HARDWARE-ACCELERATION.md)).
96-
- **Unsupported Distributions:** No support provided for Linux Mint, Zorin OS, Manjaro, Ubuntu, or Pop!_OS. Use AppImage at your own risk (see [System Requirements](docs/SYSTEM-REQUIREMENTS.md)).
96+
- **Unsupported Distributions:** No support provided for Bazzite, Linux Mint, Zorin OS, Manjaro, Ubuntu, or Pop!_OS. Use AppImage at your own risk (see [System Requirements](docs/SYSTEM-REQUIREMENTS.md)).
9797
- **PikaOS:** GUI installer does not work. Use AppImage instead.
9898

9999
### Wine 10.17 Warning

docs/INSTALLATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ curl -sSL https://raw.githubusercontent.com/ryzendew/AffinityOnLinux/refs/heads/
2323
The AppImage is a portable, self-contained installer that works on most Linux distributions without requiring system-wide dependencies.
2424

2525
**Best for:**
26-
- Users on unsupported distributions (Linux Mint, Zorin OS, Manjaro, Ubuntu, Pop!_OS)
26+
- Users on unsupported distributions (Bazzite, Linux Mint, Zorin OS, Manjaro, Ubuntu, Pop!_OS)
2727
- Users who prefer not to install Python/PyQt6 system-wide
2828
- Quick testing or portable installations
2929
- Older CPUs (use AppImage v2 for best compatibility)

docs/Known-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ This document lists known issues and their workarounds. For the latest updates,
4545
## Distribution-Specific Issues
4646

4747
### Unsupported Distributions
48-
**Issue:** Linux Mint, Zorin OS, Manjaro, Ubuntu, Pop!_OS, and Debian are not officially supported.
48+
**Issue:** Bazzite, Linux Mint, Zorin OS, Manjaro, Ubuntu, Pop!_OS, and Debian are not officially supported.
4949

5050
**Workaround:** Use the [AppImage installer](../INSTALLATION.md#1-appimage-recommended-for-beginners) instead. See [System Requirements](SYSTEM-REQUIREMENTS.md) for details.
5151

0 commit comments

Comments
 (0)