From 3ffb9585d2a9b97da53fdf6b305cbc5f4eb22b3b Mon Sep 17 00:00:00 2001 From: SoftFever Date: Thu, 18 Jun 2026 00:40:22 +0800 Subject: [PATCH] =?UTF-8?q?flatpak:=20OrcaSlicer=20was=20trying=20to=20mig?= =?UTF-8?q?rate=20old=20configs=20from=20an=20io.github.orcaslicer.OrcaSli?= =?UTF-8?q?cer=20folder=20=E2=80=94=20a=20bundle=20ID=20used=20only=20in?= =?UTF-8?q?=20nightly=20builds=20between=20the=202.3.1=20and=202.3.2=20rel?= =?UTF-8?q?eases.=20The=20correct=20old=20config=20folder,=20widely=20used?= =?UTF-8?q?=20in=20pre-2.3.2=20releases,=20is=20io.github.softfever.OrcaSl?= =?UTF-8?q?icer.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/flatpak/com.orcaslicer.OrcaSlicer.yml | 2 +- src/slic3r/GUI/GUI_App.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml b/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml index 8c1f734e1c..ef4ff42c60 100644 --- a/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml +++ b/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml @@ -31,7 +31,7 @@ finish-args: - --filesystem=/mnt - --filesystem=/run/spnav.sock:ro # Allow read-only access to OrcaSlicer's legacy config and cache directories (if they exist) for migration purposes. - - --filesystem=~/.var/app/io.github.orcaslicer.OrcaSlicer:ro + - --filesystem=~/.var/app/io.github.softfever.OrcaSlicer:ro # Allow OrcaSlicer to own and talk to instance-check D-Bus names (InstanceCheck.cpp) - --talk-name=com.orcaslicer.OrcaSlicer.InstanceCheck.* - --own-name=com.orcaslicer.OrcaSlicer.InstanceCheck.* diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 875c78e56f..f3045d3f1a 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -406,7 +406,7 @@ static void migrate_flatpak_legacy_datadir(const boost::filesystem::path &data_d std::cerr << "Migrating Flatpak data dir: " << data_dir_path << std::endl; std::string legacy_data_dir_str = data_dir_path.string(); - boost::replace_first(legacy_data_dir_str, "com.orcaslicer.OrcaSlicer", "io.github.orcaslicer.OrcaSlicer"); + boost::replace_first(legacy_data_dir_str, "com.orcaslicer.OrcaSlicer", "io.github.softfever.OrcaSlicer"); const fs::path legacy_data_dir(legacy_data_dir_str); std::cerr << "Legacy Flatpak data dir: " << legacy_data_dir << std::endl;