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
10 changes: 9 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,15 @@ for:
build_script:
- cd package
- flutter test
- echo "TODO"

deploy_script:
# publish package
- sh: |
if [[ "$APPVEYOR_REPO_TAG_NAME" != "" ]]; then
mkdir -p $HOME/.config/dart
echo $PUB_DEV_TOKEN | base64 --decode > $HOME/.config/dart/pub-credentials.json
dart pub publish -f
fi

# ======================================
# Build Flet View for Windows
Expand Down
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Flet changelog

## 0.3.0

* `flet pack` CLI to create app bundles with custom icons and metadata (https://github.com/flet-dev/flet/issues/770)
* Control comments (https://github.com/flet-dev/flet/issues/681)
* Fix MaterialState error in ButtonStyle (https://github.com/flet-dev/flet/issues/689)
* Flet CLI moved into separate module (https://github.com/flet-dev/flet/issues/679)
* Added BorderRadius to `__init__.py` (https://github.com/flet-dev/flet/issues/691)
* Added dense property to TextField and Dropdown controls (https://github.com/flet-dev/flet/issues/696)
* Correctly handle control replacement (https://github.com/flet-dev/flet/issues/710)
* Fix "replace" when moving children in the collection (https://github.com/flet-dev/flet/issues/711)
* Remove hard-coded colors in Markdown default code theme (https://github.com/flet-dev/flet/issues/731)
* Authorization should allow to override, such as request_token() methods (https://github.com/flet-dev/flet/issues/776)

## 0.2.4

* Use correct Flet viewer path when installed from a source package (https://github.com/flet-dev/flet/issues/675)
* add `ControlEvent` to __init__.py (https://github.com/flet-dev/flet/issues/657)
* fix: handle a few corner cases (https://github.com/flet-dev/flet/issues/503)

## 0.2.2

* Make `Control.offset` work without animation enabled (https://github.com/flet-dev/flet/issues/632)
* Added `Dropdown.alignment` property (https://github.com/flet-dev/flet/issues/630)
* Remove beartype runtime check for all `value` properties
* Fix `page.scroll` to allow None and strings
* Literals to Enums (https://github.com/flet-dev/flet/issues/626)
* `gapless_playback` is `True` by default for base64 images
* Ability to change border shape of FAB control (https://github.com/flet-dev/flet/issues/621)
* Added Slider's `on_change_start` and `on_change_end` events (https://github.com/flet-dev/flet/issues/620)
* DataTable control: 1-to-1 mapping to Flutter (https://github.com/flet-dev/flet/issues/583)
* Implemented `page.can_launch_url()` (https://github.com/flet-dev/flet/issues/582)
* Update project changelog from very beginning (https://github.com/flet-dev/flet/issues/581)
* Publish pre releases to pypi.org (https://github.com/flet-dev/flet/issues/579)
* Theming Slider control (https://github.com/flet-dev/flet/issues/573)

## 0.1.65

* Fixed: Floating Action Button now showing on top left ([#567](https://github.com/flet-dev/flet/issues/567))
Expand Down
2 changes: 1 addition & 1 deletion client/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ packages:
path: "../package"
relative: true
source: path
version: "0.1.65"
version: "0.3.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down
35 changes: 35 additions & 0 deletions package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## 0.3.0

* `flet pack` CLI to create app bundles with custom icons and metadata (https://github.com/flet-dev/flet/issues/770)
* Control comments (https://github.com/flet-dev/flet/issues/681)
* Fix MaterialState error in ButtonStyle (https://github.com/flet-dev/flet/issues/689)
* Flet CLI moved into separate module (https://github.com/flet-dev/flet/issues/679)
* Added BorderRadius to `__init__.py` (https://github.com/flet-dev/flet/issues/691)
* Added dense property to TextField and Dropdown controls (https://github.com/flet-dev/flet/issues/696)
* Correctly handle control replacement (https://github.com/flet-dev/flet/issues/710)
* Fix "replace" when moving children in the collection (https://github.com/flet-dev/flet/issues/711)
* Remove hard-coded colors in Markdown default code theme (https://github.com/flet-dev/flet/issues/731)
* Authorization should allow to override, such as request_token() methods (https://github.com/flet-dev/flet/issues/776)

## 0.2.4

* Use correct Flet viewer path when installed from a source package (https://github.com/flet-dev/flet/issues/675)
* add `ControlEvent` to `__init__.py` (https://github.com/flet-dev/flet/issues/657)
* fix: handle a few corner cases (https://github.com/flet-dev/flet/issues/503)

## 0.2.2

* Make `Control.offset` work without animation enabled (https://github.com/flet-dev/flet/issues/632)
* Added `Dropdown.alignment` property (https://github.com/flet-dev/flet/issues/630)
* Remove beartype runtime check for all `value` properties
* Fix `page.scroll` to allow None and strings
* Literals to Enums (https://github.com/flet-dev/flet/issues/626)
* `gapless_playback` is `True` by default for base64 images
* Ability to change border shape of FAB control (https://github.com/flet-dev/flet/issues/621)
* Added Slider's `on_change_start` and `on_change_end` events (https://github.com/flet-dev/flet/issues/620)
* DataTable control: 1-to-1 mapping to Flutter (https://github.com/flet-dev/flet/issues/583)
* Implemented `page.can_launch_url()` (https://github.com/flet-dev/flet/issues/582)
* Update project changelog from very beginning (https://github.com/flet-dev/flet/issues/581)
* Publish pre releases to pypi.org (https://github.com/flet-dev/flet/issues/579)
* Theming Slider control (https://github.com/flet-dev/flet/issues/573)

## 0.1.65

* Fixed: Floating Action Button now showing on top left ([#567](https://github.com/flet-dev/flet/issues/567))
Expand Down
2 changes: 1 addition & 1 deletion package/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flet
description: Write entire Flutter app in Python or add server-driven UI experience into existing Flutter app.
homepage: https://flet.dev
repository: https://github.com/flet-dev/flet
version: 0.1.65
version: 0.3.0

# This package supports all platforms listed below.
platforms:
Expand Down
2 changes: 1 addition & 1 deletion studio/client/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ packages:
path: "../../package"
relative: true
source: path
version: "0.1.65"
version: "0.3.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down