mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
1459119c6e
* chore: update versions * change --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Ali Abid <ubuntu@ip-172-31-25-241.us-west-2.compute.internal>
4.7 KiB
4.7 KiB
@gradio/tootils
0.1.6
Patch Changes
- Updated dependencies []:
- @gradio/statustracker@0.4.2
0.1.5
Patch Changes
- Updated dependencies []:
- @gradio/statustracker@0.4.1
0.1.4
Patch Changes
- Updated dependencies [
9caddc17b
]:- @gradio/statustracker@0.4.0
0.1.3
Patch Changes
- Updated dependencies []:
- @gradio/statustracker@0.3.2
0.1.2
Patch Changes
- Updated dependencies []:
- @gradio/statustracker@0.3.1
0.1.1
Fixes
- #6234
aaa55ce85
- Video/Audio fixes. Thanks @freddyaboulton! - #6236
6bce259c5
- Ensuregr.CheckboxGroup
updates as expected. Thanks @pngwn! - #6249
2cffcf3c3
- ensure radios have different names. Thanks @pngwn!
0.1.0
Features
- #5498
287fe6782
- Publish all components to npm. Thanks @pngwn! - #5498
287fe6782
- Custom components. Thanks @pngwn!
0.1.0-beta.7
Patch Changes
- Updated dependencies [
667802a6c
]:- @gradio/utils@0.2.0-beta.6
0.1.0-beta.6
Features
- #6044
9053c95a1
- Simplify File Component. Thanks @freddyaboulton!
Fixes
0.1.0-beta.5
Patch Changes
- Updated dependencies [
13ed8a485
]:- @gradio/utils@0.2.0-beta.4
0.1.0-beta.4
Features
- #5648
c573e2339
- Publish all components to npm. Thanks @freddyaboulton!
0.1.0-beta.3
Patch Changes
- Updated dependencies [
0b4fd5b6d
]:- @gradio/utils@0.2.0-beta.3
0.1.0-beta.2
Patch Changes
- Updated dependencies [
14fc612d8
]:- @gradio/utils@0.2.0-beta.2
0.1.0-beta.1
Patch Changes
- Updated dependencies []:
- @gradio/utils@0.2.0-beta.1
0.1.0-beta.0
Features
0.0.2
Highlights
Improve startup performance and markdown support (#5279 fe057300
)
Improved markdown support
We now have better support for markdown in gr.Markdown
and gr.Dataframe
. Including syntax highlighting and Github Flavoured Markdown. We also have more consistent markdown behaviour and styling.
Various performance improvements
These improvements will be particularly beneficial to large applications.
- Rather than attaching events manually, they are now delegated, leading to a significant performance improvement and addressing a performance regression introduced in a recent version of Gradio. App startup for large applications is now around twice as fast.
- Optimised the mounting of individual components, leading to a modest performance improvement during startup (~30%).
- Corrected an issue that was causing markdown to re-render infinitely.
- Ensured that the
gr.3DModel
does re-render prematurely.
Thanks @pngwn!