Skip to content

Commit 141a876

Browse files
committed
Merge branch 'main' into release/v0.85.0
2 parents 915c647 + 03d39db commit 141a876

48 files changed

Lines changed: 1374 additions & 287 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

tools/crocodocs/src/crocodocs/scripts/cli_to_md.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def _head(level: int, text: str, anchor_id: Optional[str] = None) -> str:
109109
"""Markdown heading helper."""
110110
heading = f"{'#' * level} {text}"
111111
if anchor_id:
112-
heading += f" {{#{anchor_id}}}"
112+
heading += f" {{/* #{anchor_id} */}}"
113113
return heading
114114

115115
def _ensure_blank(lines: list[str]) -> None:

website/.codex/skills/flet-release-announcement/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If inputs are missing, infer from open files and recent release posts.
3030

3131
1. Inspect prior release posts for structure
3232
- Read 2-3 recent release posts in `/blog`.
33-
- Reuse conventions: frontmatter, short intro, highlights bullets, `<!-- truncate -->`, upgrade section, major feature sections, improvements, other changes, conclusion.
33+
- Reuse conventions: frontmatter, short intro, highlights bullets, `{/* truncate */}`, upgrade section, major feature sections, improvements, other changes, conclusion.
3434

3535
2. Ground facts in changelog
3636
- Use the exact release section from `CHANGELOG.md` or the release branch/tag anchor.

website/blog/2022-06-12-using-custom-fonts-in-flet-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The following font formats are supported:
1515

1616
Use [`page.fonts`](https://flet.dev/docs/controls/page/#flet.Page.fonts) property to import fonts.
1717

18-
<!-- truncate -->
18+
{/* truncate */}
1919

2020
Set `page.fonts` property to a dictionary where key is the font family name to refer that font and the value is the URL of the font file to import:
2121

website/blog/2022-07-14-drag-and-drop-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Take a look at [Drag-and-Drop example](https://github.com/flet-dev/examples/blob
1717

1818
Explore [`Draggable`](https://flet.dev/docs/controls/draggable/) and [`DragTarget`](https://flet.dev/docs/controls/dragtarget/) controls, their properties and events.
1919

20-
<!-- truncate -->
20+
{/* truncate */}
2121

2222
## Absolute positioning inside Stack
2323

website/blog/2022-07-23-navigation-and-routing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Well, it took [more efforts](https://github.com/flet-dev/flet/pull/95/files) tha
2121

2222
Explore [source code](https://github.com/flet-dev/examples/blob/main/python/apps/routing-navigation/building-views-on-route-change.py) of the example above.
2323

24-
<!-- truncate -->
24+
{/* truncate */}
2525

2626
## Page route
2727

website/blog/2022-07-24-flet-mobile-strategy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ New Flet developers are constantly asking if there is a way to package Flet prog
1111

1212
In this post I would like to share our vision for Flet going mobile and provide a roadmap.
1313

14-
<!-- truncate -->
14+
{/* truncate */}
1515

1616
## Server-Driven UI
1717

website/blog/2022-08-03-control-refs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ When more and mode controls and event handlers added it becomes challenging to k
5050

5151
Is `first_name` a TextField, does it have autofocus set? Is greetings a `Row` or a `Column`?
5252

53-
<!-- truncate -->
53+
{/* truncate */}
5454

5555
## `Ref` class
5656

website/blog/2022-08-04-gradients-button-textfield-styles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ We've just released [Flet 0.1.46](https://pypi.org/project/flet/0.1.46/) adding
1111
* Extensive styling for buttons, TextField and Dropdown controls
1212
* ...and more
1313

14-
<!-- truncate -->
14+
{/* truncate */}
1515

1616
## Gradient backgrounds
1717

website/blog/2022-08-21-fun-with-animations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Flutter offers [multiple approaches](https://docs.flutter.dev/development/ui/ani
1111

1212
We are starting with "implicit" animations which allows you to animate a control property by setting a target value; whenever that target value changes, the control animates the property from the old value to the new one.
1313

14-
<!-- truncate -->
14+
{/* truncate */}
1515

1616
## Demo time
1717

website/blog/2022-09-02-file-picker-and-uploads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ File picker allows opening three dialogs:
2121
* **Save file** - choose directory and file name.
2222
* **Get directory** - select directory.
2323

24-
<!-- truncate -->
24+
{/* truncate */}
2525

2626
When running Flet app in a browser only "Pick files" option is available and it's used for uploads only as it, obviously, doesn't return a full path to a selected file.
2727

0 commit comments

Comments
 (0)