From 1e45cace0b2804c1351f67f163bbc1d7dc362e93 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Mon, 21 Sep 2026 21:11:09 -0400 Subject: [PATCH] Add Flatpak version installation reference Add documentation for installing a specific Flatpak commit version, including listing available commits and downgrading to a previous one. LLM-Generated: true --- active/software_flatpak/flatpak.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 active/software_flatpak/flatpak.md diff --git a/active/software_flatpak/flatpak.md b/active/software_flatpak/flatpak.md new file mode 100644 index 0000000..05f31b3 --- /dev/null +++ b/active/software_flatpak/flatpak.md @@ -0,0 +1,12 @@ +# Flatpak + +## Installing a specific version + +```bash +# List the available commits +flatpak remote-info --log flathub com.orcaslicer.OrcaSlicer + +# Install the commit version you want +# Orca Slicer, for example +sudo flatpak update --commit=acd5ab796f5640645938194da3a6822b3699dcf41c61059bfbd6accb798ebc7b com.orcaslicer.OrcaSlicer +```