Skip to content

Commit

Permalink
Bump versions in Toga bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed Oct 7, 2024
1 parent 618fbc5 commit d783f20
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/briefcase/bootstraps/toga.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ def pyproject_table_macOS(self):
return """\
universal_build = true
requires = [
"toga-cocoa~=0.4.6",
"toga-cocoa~=0.4.7",
"std-nslog~=1.0.3",
]
"""

def pyproject_table_linux(self):
return """\
requires = [
"toga-gtk~=0.4.6",
"toga-gtk~=0.4.7",
]
"""

Expand Down Expand Up @@ -181,46 +181,46 @@ def pyproject_table_linux_appimage(self):
def pyproject_table_linux_flatpak(self):
return """\
flatpak_runtime = "org.gnome.Platform"
flatpak_runtime_version = "46"
flatpak_runtime_version = "47"
flatpak_sdk = "org.gnome.Sdk"
"""

def pyproject_table_windows(self):
return """\
requires = [
"toga-winforms~=0.4.6",
"toga-winforms~=0.4.7",
]
"""

def pyproject_table_iOS(self):
return """\
requires = [
"toga-iOS~=0.4.6",
"toga-iOS~=0.4.7",
"std-nslog~=1.0.3",
]
"""

def pyproject_table_android(self):
return """\
requires = [
"toga-android~=0.4.6",
"toga-android~=0.4.7",
]
base_theme = "Theme.MaterialComponents.Light.DarkActionBar"
build_gradle_dependencies = [
"com.google.android.material:material:1.11.0",
"com.google.android.material:material:1.12.0",
# Needed for DetailedList
# "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0",
# Needed for MapView
# "org.osmdroid:osmdroid-android:6.1.0",
# "org.osmdroid:osmdroid-android:6.1.20",
]
"""

def pyproject_table_web(self):
return """\
requires = [
"toga-web~=0.4.6",
"toga-web~=0.4.7",
]
style_framework = "Shoelace v2.3"
"""

0 comments on commit d783f20

Please sign in to comment.