Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/2258.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The Flatpak runtimes for new projects were updated. ``org.gnome.Platform`` will now default to 47; and ``org.kde.Platform`` will now default to 6.9.
2 changes: 1 addition & 1 deletion src/briefcase/bootstraps/pyside6.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def pyproject_table_linux_appimage(self):
def pyproject_table_linux_flatpak(self):
return """\
flatpak_runtime = "org.kde.Platform"
flatpak_runtime_version = "6.7"
flatpak_runtime_version = "6.9"
flatpak_sdk = "org.kde.Sdk"
"""

Expand Down
2 changes: 1 addition & 1 deletion src/briefcase/bootstraps/toga.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def pyproject_table_linux_appimage(self):
def pyproject_table_linux_flatpak(self):
return """\
flatpak_runtime = "org.gnome.Platform"
flatpak_runtime_version = "47"
flatpak_runtime_version = "48"
flatpak_sdk = "org.gnome.Sdk"
"""

Expand Down
4 changes: 2 additions & 2 deletions tests/commands/new/test_build_gui_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def main():
""",
pyproject_table_linux_flatpak="""\
flatpak_runtime = "org.gnome.Platform"
flatpak_runtime_version = "47"
flatpak_runtime_version = "48"
flatpak_sdk = "org.gnome.Sdk"
""",
pyproject_table_windows="""\
Expand Down Expand Up @@ -491,7 +491,7 @@ def main():
""",
pyproject_table_linux_flatpak="""\
flatpak_runtime = "org.kde.Platform"
flatpak_runtime_version = "6.7"
flatpak_runtime_version = "6.9"
flatpak_sdk = "org.kde.Sdk"
""",
pyproject_table_windows="""\
Expand Down