Skip to content

Commit 7ee0885

Browse files
committed
Added "counter" template. Bumped version to v0.10.3
1 parent fa77055 commit 7ee0885

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Flet changelog
22

3+
# 0.10.3
4+
5+
* Add proxy_path parameter to flet_fastapi.app() ([#1882](https://github.com/flet-dev/flet/issues/1882)).
6+
* Fix `flet create` crashes with an empty project name.
7+
38
## 0.10.2
49

510
* Wrapped --codesign-identity & --add-binary for flet pack ([#1789](https://github.com/flet-dev/flet/issues/1789)).

client/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ packages:
183183
path: "../package"
184184
relative: true
185185
source: path
186-
version: "0.10.2"
186+
version: "0.10.3"
187187
flutter:
188188
dependency: "direct main"
189189
description: flutter

media/pictures/plus-icon.svg

Lines changed: 7 additions & 4 deletions
Loading

package/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.10.3
2+
3+
* Add proxy_path parameter to flet_fastapi.app() ([#1882](https://github.com/flet-dev/flet/issues/1882)).
4+
* Fix `flet create` crashes with an empty project name.
5+
16
## 0.10.2
27

38
* Wrapped --codesign-identity & --add-binary for flet pack ([#1789](https://github.com/flet-dev/flet/issues/1789)).

package/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flet
22
description: Write entire Flutter app in Python or add server-driven UI experience into existing Flutter app.
33
homepage: https://flet.dev
44
repository: https://github.com/flet-dev/flet
5-
version: 0.10.2
5+
version: 0.10.3
66

77
# This package supports all platforms listed below.
88
platforms:

sdk/python/packages/flet/src/flet/cli/commands/create.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import argparse
22
from pathlib import Path
33

4+
from colorama import Fore, Style
45
from flet.cli.commands.base import BaseCommand
56
from flet_core.utils import slugify
6-
from colorama import Fore, Style
77

88

99
class Command(BaseCommand):
@@ -32,7 +32,7 @@ def add_arguments(self, parser: argparse.ArgumentParser) -> None:
3232
parser.add_argument(
3333
"--template",
3434
dest="template",
35-
choices=["minimal"],
35+
choices=["minimal", "counter"],
3636
default="minimal",
3737
help="template to use for new Flet project",
3838
required=False,

0 commit comments

Comments
 (0)