Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f6fc882
Fix: hidden files in site-packages are skipped when building macOS app
FeodorFitsner Apr 10, 2025
310bebd
Fix tests
FeodorFitsner Apr 10, 2025
6c24e5b
Fix tests, again
FeodorFitsner Apr 10, 2025
d697666
Remove .dist-info from junk files
FeodorFitsner Aug 22, 2025
6d8f914
Update changelogs to note .dist-info metadata fix
FeodorFitsner Aug 22, 2025
6ebe996
Bump Flutter to 3.35.1, fix package command
FeodorFitsner Aug 22, 2025
f8edb00
Set default assetPath if null in package command
FeodorFitsner Aug 23, 2025
c17024d
Rollback Flet version
FeodorFitsner Aug 23, 2025
21016a7
Remove hideLoadingPage from FletApp and update dependencies
FeodorFitsner Aug 23, 2025
162c82c
Remove --pre flag from test scripts in Appveyor config
FeodorFitsner Aug 23, 2025
211d3f1
Remove redundant '-r' flag from test scripts
FeodorFitsner Aug 23, 2025
f0f9709
Update Pyodide CDN URL to v0.28.3
FeodorFitsner Sep 26, 2025
8e7b5b7
Update Pyodide platform tag to 2025.0
FeodorFitsner Sep 26, 2025
8dc7baf
Revert "Update Pyodide platform tag to 2025.0"
FeodorFitsner Sep 26, 2025
8b773ff
Update Pyodide CDN URL to v0.27.7
FeodorFitsner Sep 26, 2025
0bf8f38
Merge branch 'flet-dev:hidden-files-fix' into hidden-files-fix
Creeper19472 Oct 5, 2025
2a031cd
Update pubspec.yaml
Creeper19472 Oct 5, 2025
9b96ad2
Update pubspec.yaml
Creeper19472 Oct 5, 2025
0dd8c1e
merge (#1)
Creeper19472 Oct 5, 2025
ffc6be7
Merge (#2)
Creeper19472 Oct 6, 2025
a9f012d
add gradle-wrapper.properties
Creeper19472 Oct 6, 2025
a37a84d
revert
Creeper19472 Oct 6, 2025
b7ba402
fix utils.dart
Creeper19472 Oct 6, 2025
2a73426
add changelog & update version numbers
Creeper19472 Oct 6, 2025
8fe6246
Sync upstream (#4)
Creeper19472 Oct 24, 2025
9a8182d
Merge branch 'android-16k' into hidden-files-fix
Creeper19472 Oct 24, 2025
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
297 changes: 0 additions & 297 deletions .appveyor.yml

This file was deleted.

6 changes: 5 additions & 1 deletion ci/patch_pubspec.py → .github/scripts/patch_pubspec.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# /// script
# dependencies = ["pyyaml"]
# ///

import os
import pathlib
import sys
Expand All @@ -22,7 +26,7 @@
"serious_python_macos",
]

with open(pubspec_path, "r") as f:
with open(pubspec_path) as f:
data = yaml.safe_load(f)

# patch version
Expand Down
Loading
Loading