2023-07-27 05:10:24 +08:00
# @gradio/audio
2024-06-06 23:15:46 +08:00
## 0.11.9
### Dependency updates
- @gradio/upload@0 .11.1
- @gradio/client@1 .1.0
- @gradio/button@0 .2.42
2024-06-06 22:06:28 +08:00
## 0.11.8
### Dependency updates
- @gradio/statustracker@0 .6.0
- @gradio/client@1 .0.0
- @gradio/upload@0 .11.0
- @gradio/button@0 .2.41
2024-05-31 05:55:23 +08:00
## 0.11.7
### Dependency updates
- @gradio/upload@0 .10.7
- @gradio/client@0 .20.1
- @gradio/button@0 .2.40
2024-05-30 07:00:00 +08:00
## 0.11.6
### Dependency updates
- @gradio/client@0 .20.0
- @gradio/statustracker@0 .6.0
- @gradio/button@0 .2.39
- @gradio/upload@0 .10.6
2024-05-22 05:01:35 +08:00
## 0.11.5
### Dependency updates
- @gradio/utils@0 .4.2
- @gradio/atoms@0 .7.4
- @gradio/statustracker@0 .5.5
- @gradio/upload@0 .10.5
- @gradio/client@0 .19.4
- @gradio/button@0 .2.38
2024-05-16 06:23:53 +08:00
## 0.11.4
### Dependency updates
- @gradio/client@0 .19.3
- @gradio/statustracker@0 .5.4
- @gradio/button@0 .2.37
- @gradio/upload@0 .10.4
2024-05-14 20:45:39 +08:00
## 0.11.3
### Dependency updates
- @gradio/upload@0 .10.3
- @gradio/client@0 .19.2
- @gradio/button@0 .2.36
2024-05-14 07:23:49 +08:00
## 0.11.2
### Dependency updates
- @gradio/statustracker@0 .5.3
- @gradio/client@0 .19.1
- @gradio/button@0 .2.35
- @gradio/upload@0 .10.2
2024-05-11 02:31:04 +08:00
## 0.11.1
### Fixes
- [#8252 ](https://github.com/gradio-app/gradio/pull/8252 ) [`22df61a` ](https://github.com/gradio-app/gradio/commit/22df61a26adf8023f6dd49c051979990e8d3879a ) - Client node fix. Thanks @pngwn !
### Dependency updates
- @gradio/atoms@0 .7.3
- @gradio/statustracker@0 .5.2
- @gradio/client@0 .19.0
- @gradio/icons@0 .4.1
- @gradio/upload@0 .10.1
- @gradio/button@0 .2.34
2024-05-04 02:06:05 +08:00
## 0.11.0
### Features
- [#8121 ](https://github.com/gradio-app/gradio/pull/8121 ) [`f5b710c` ](https://github.com/gradio-app/gradio/commit/f5b710c919b0ce604ea955f0d5f4faa91095ca4a ) - chore(deps): update dependency eslint to v9. Thanks @renovate !
- [#8209 ](https://github.com/gradio-app/gradio/pull/8209 ) [`b9afe93` ](https://github.com/gradio-app/gradio/commit/b9afe93915401df5bd6737c89395c2477acfa585 ) - Rename `eventSource_Factory` and `fetch_implementation` . Thanks @hannahblair !
### Fixes
- [#8179 ](https://github.com/gradio-app/gradio/pull/8179 ) [`6a218b4` ](https://github.com/gradio-app/gradio/commit/6a218b4148095aaa0c58d8c20973ba01c8764fc2 ) - rework upload to be a class method + pass client into each component. Thanks @pngwn !
### Dependency updates
- @gradio/atoms@0 .7.2
- @gradio/client@0 .18.0
- @gradio/upload@0 .10.0
- @gradio/utils@0 .4.1
- @gradio/wasm@0 .10.1
- @gradio/statustracker@0 .5.1
- @gradio/button@0 .2.33
2024-04-26 07:08:27 +08:00
## 0.10.0
### Highlights
#### Setting File Upload Limits ([#7909](https://github.com/gradio-app/gradio/pull/7909) [`2afca65`](https://github.com/gradio-app/gradio/commit/2afca6541912b37dc84f447c7ad4af21607d7c72))
We have added a `max_file_size` size parameter to `launch()` that limits to size of files uploaded to the server. This limit applies to each individual file. This parameter can be specified as a string or an integer (corresponding to the size in bytes).
The following code snippet sets a max file size of 5 megabytes.
```python
import gradio as gr
demo = gr.Interface(lambda x: x, "image", "image")
demo.launch(max_file_size="5mb")
# or
demo.launch(max_file_size=5 * gr.FileSize.MB)
```
![max_file_size_upload ](https://github.com/gradio-app/gradio/assets/41651716/7547330c-a082-4901-a291-3f150a197e45 )
#### Error states can now be cleared
When a component encounters an error, the error state shown in the UI can now be cleared by clicking on the `x` icon in the top right of the component. This applies to all types of errors, whether it's raised in the UI or the server.
![error_modal_calculator ](https://github.com/gradio-app/gradio/assets/41651716/16cb071c-accd-45a6-9c18-0dea27d4bd98 )
Thanks @freddyaboulton !
### Features
- [#8065 ](https://github.com/gradio-app/gradio/pull/8065 ) [`5bf61cb` ](https://github.com/gradio-app/gradio/commit/5bf61cb15b7a1f8af12c87ae710df07099b5e460 ) - Hide the scroll bar in WaveformControls when it's not necessary. Thanks @whitphx !
### Fixes
- [#8066 ](https://github.com/gradio-app/gradio/pull/8066 ) [`624f9b9` ](https://github.com/gradio-app/gradio/commit/624f9b9477f74a581a6c14119234f9efdfcda398 ) - make gradio dev tools a local dependency rather than bundling. Thanks @pngwn !
### Dependency updates
- @gradio/atoms@0 .7.1
- @gradio/client@0 .17.0
- @gradio/button@0 .2.32
- @gradio/statustracker@0 .5.0
- @gradio/upload@0 .9.0
- @gradio/utils@0 .4.0
2024-04-19 02:09:10 +08:00
## 0.9.12
### Dependency updates
- @gradio/utils@0 .3.2
- @gradio/statustracker@0 .4.12
- @gradio/client@0 .16.0
- @gradio/upload@0 .8.5
- @gradio/atoms@0 .7.0
- @gradio/icons@0 .4.0
- @gradio/button@0 .2.31
2024-04-09 03:07:24 +08:00
## 0.9.11
### Dependency updates
- @gradio/utils@0 .3.1
- @gradio/atoms@0 .6.2
- @gradio/statustracker@0 .4.11
- @gradio/upload@0 .8.4
- @gradio/client@0 .15.1
- @gradio/button@0 .2.30
2024-04-03 01:33:48 +08:00
## 0.9.10
### Dependency updates
- @gradio/button@0 .2.29
- @gradio/upload@0 .8.3
- @gradio/client@0 .15.0
2024-03-28 05:25:36 +08:00
## 0.9.9
### Dependency updates
- @gradio/button@0 .2.28
- @gradio/atoms@0 .6.1
- @gradio/statustracker@0 .4.10
- @gradio/icons@0 .3.4
- @gradio/upload@0 .8.2
2024-03-26 00:35:44 +08:00
## 0.9.8
### Dependency updates
- @gradio/upload@0 .8.1
- @gradio/button@0 .2.27
- @gradio/statustracker@0 .4.9
- @gradio/wasm@0 .10.0
- @gradio/atoms@0 .6.0
2024-03-20 04:50:31 +08:00
## 0.9.7
### Dependency updates
- @gradio/client@0 .14.0
- @gradio/upload@0 .8.0
- @gradio/wasm@0 .9.0
- @gradio/button@0 .2.26
2024-03-09 08:35:23 +08:00
## 0.9.6
### Dependency updates
- @gradio/button@0 .2.25
- @gradio/upload@0 .7.7
- @gradio/client@0 .13.0
- @gradio/wasm@0 .8.0
2024-03-07 01:13:41 +08:00
## 0.9.5
### Patch Changes
- Updated dependencies [[`8181695` ](https://github.com/gradio-app/gradio/commit/8181695e70187e8bc2bf7518697098c8d1b9843d )]:
- @gradio/upload@0 .7.6
- @gradio/button@0 .2.24
2024-03-06 08:54:36 +08:00
## 0.9.4
### Fixes
2024-03-07 01:13:41 +08:00
- [#7599 ](https://github.com/gradio-app/gradio/pull/7599 ) [`f26aba0` ](https://github.com/gradio-app/gradio/commit/f26aba00a71a5b4eff60c37580c8d25f9bc048da ) - Prevent audio speeding up when trimming. Thanks [@hannahblair ](https://github.com/hannahblair )!
2024-03-06 08:54:36 +08:00
2024-02-23 05:29:11 +08:00
## 0.9.3
### Patch Changes
- Updated dependencies [[`98a2719` ](https://github.com/gradio-app/gradio/commit/98a2719bfb9c64338caf9009891b6c6b0b33ea89 )]:
- @gradio/statustracker@0 .4.8
2024-02-17 04:28:13 +08:00
## 0.9.2
### Fixes
2024-02-23 05:29:11 +08:00
- [#6991 ](https://github.com/gradio-app/gradio/pull/6991 ) [`f191786` ](https://github.com/gradio-app/gradio/commit/f1917867916647d383b8d7ce15e0c17f2abbdec1 ) - Improve responsiveness of `gr.Audio()` controls. Thanks [@hannahblair ](https://github.com/hannahblair )!
2024-02-17 04:28:13 +08:00
2024-02-15 06:17:50 +08:00
## 0.9.1
### Patch Changes
- Updated dependencies [[`065c5b1` ](https://github.com/gradio-app/gradio/commit/065c5b163c4badb9d9cbd06d627fb4ba086003e7 ), [`32b317f` ](https://github.com/gradio-app/gradio/commit/32b317f24e3d43f26684bb9f3964f31efd0ea556 )]:
- @gradio/utils@0 .3.0
- @gradio/client@0 .12.1
- @gradio/atoms@0 .5.2
- @gradio/button@0 .2.21
- @gradio/statustracker@0 .4.6
- @gradio/upload@0 .7.3
2024-02-10 14:15:34 +08:00
## 0.9.0
### Features
2024-02-15 06:17:50 +08:00
- [#7183 ](https://github.com/gradio-app/gradio/pull/7183 ) [`49d9c48` ](https://github.com/gradio-app/gradio/commit/49d9c48537aa706bf72628e3640389470138bdc6 ) - [WIP] Refactor file normalization to be in the backend and remove it from the frontend of each component. Thanks [@abidlabs ](https://github.com/abidlabs )!
2024-02-10 14:15:34 +08:00
2024-02-07 07:19:29 +08:00
## 0.8.1
### Features
2024-02-15 06:17:50 +08:00
- [#7274 ](https://github.com/gradio-app/gradio/pull/7274 ) [`fdd1521` ](https://github.com/gradio-app/gradio/commit/fdd15213c24b9cbc58bbc1b6beb4af7c18f48557 ) - chore: Change time format (thanks @jjshoots for the independent contribution). Thanks [@arian81 ](https://github.com/arian81 )!
2024-02-07 07:19:29 +08:00
### Fixes
2024-02-15 06:17:50 +08:00
- [#7192 ](https://github.com/gradio-app/gradio/pull/7192 ) [`8dd6f4b` ](https://github.com/gradio-app/gradio/commit/8dd6f4bc1901792f05cd59e86df7b1dbab692739 ) - Handle the case where examples is `null` for all components. Thanks [@abidlabs ](https://github.com/abidlabs )!
- [#7158 ](https://github.com/gradio-app/gradio/pull/7158 ) [`ded5256` ](https://github.com/gradio-app/gradio/commit/ded5256c4a39a84155b9c3d7f4e8e7060d798186 ) - Fix audio recording events not dispatching. Thanks [@hannahblair ](https://github.com/hannahblair )!
- [#7207 ](https://github.com/gradio-app/gradio/pull/7207 ) [`e3217b4` ](https://github.com/gradio-app/gradio/commit/e3217b41862925a6a05f44070ac2bdabbeee6769 ) - Amend audio waveform colour. Thanks [@hannahblair ](https://github.com/hannahblair )!
2024-02-07 07:19:29 +08:00
2024-01-26 08:10:24 +08:00
## 0.8.0
### Features
2024-02-15 06:17:50 +08:00
- [#7104 ](https://github.com/gradio-app/gradio/pull/7104 ) [`bc2cdc1` ](https://github.com/gradio-app/gradio/commit/bc2cdc1df95b38025486cf76df4a494b66d98585 ) - Allow download button for interactive Audio and Video components. Thanks [@hannahblair ](https://github.com/hannahblair )!
2024-01-26 08:10:24 +08:00
### Fixes
2024-02-15 06:17:50 +08:00
- [#7082 ](https://github.com/gradio-app/gradio/pull/7082 ) [`c35fac0` ](https://github.com/gradio-app/gradio/commit/c35fac049a44b14719509443c68690e7f23ce70d ) - Ensure device selection works in Audio when streaming. Thanks [@hannahblair ](https://github.com/hannahblair )!
- [#7045 ](https://github.com/gradio-app/gradio/pull/7045 ) [`13cb6af` ](https://github.com/gradio-app/gradio/commit/13cb6af8b23be063d85b2c632f36afa37d874e5d ) - Ensure microphone devices list updates. Thanks [@hannahblair ](https://github.com/hannahblair )!
- [#6826 ](https://github.com/gradio-app/gradio/pull/6826 ) [`e8b2d8b` ](https://github.com/gradio-app/gradio/commit/e8b2d8b2f81b7c4b2d107765f06eaf09a030f1df ) - Add sample rate config option to `gr.Audio()` . Thanks [@tsukumijima ](https://github.com/tsukumijima )!
2024-01-26 08:10:24 +08:00
2024-01-19 13:13:02 +08:00
## 0.7.2
### Patch Changes
- Updated dependencies [[`3c3cf86` ](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2 ), [`3f139c7` ](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9 )]:
- @gradio/client@0 .10.1
- @gradio/upload@0 .6.1
- @gradio/button@0 .2.17
2024-01-11 05:42:25 +08:00
## 0.7.1
### Patch Changes
- Updated dependencies [[`793bf8f` ](https://github.com/gradio-app/gradio/commit/793bf8f7b1943f265c5d016c1a0c682ee549232a ), [`5d00dd3` ](https://github.com/gradio-app/gradio/commit/5d00dd37ca14bbfef2ceac550b29dbe05ba8cab0 )]:
- @gradio/upload@0 .6.0
- @gradio/wasm@0 .5.0
- @gradio/button@0 .2.16
2024-01-05 08:02:25 +08:00
## 0.7.0
### Features
2024-01-11 05:42:25 +08:00
- [#6897 ](https://github.com/gradio-app/gradio/pull/6897 ) [`fb9c6ca` ](https://github.com/gradio-app/gradio/commit/fb9c6cacd7ca4598c000f1f97d7d39a8c4463519 ) - Lite: Chatbot. Thanks [@whitphx ](https://github.com/whitphx )!
2024-01-05 08:02:25 +08:00
2023-12-23 05:05:17 +08:00
## 0.6.4
### Patch Changes
- Updated dependencies [[`d406855` ](https://github.com/gradio-app/gradio/commit/d4068557953746662235d595ec435c42ceb24414 )]:
- @gradio/client@0 .9.4
- @gradio/button@0 .2.14
- @gradio/upload@0 .5.7
2023-12-20 08:17:10 +08:00
## 0.6.3
### Fixes
2023-12-23 05:05:17 +08:00
- [#6766 ](https://github.com/gradio-app/gradio/pull/6766 ) [`73268ee` ](https://github.com/gradio-app/gradio/commit/73268ee2e39f23ebdd1e927cb49b8d79c4b9a144 ) - Improve source selection UX. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-12-20 08:17:10 +08:00
2023-12-16 07:39:46 +08:00
## 0.6.2
### Fixes
2023-12-23 05:05:17 +08:00
- [#6799 ](https://github.com/gradio-app/gradio/pull/6799 ) [`c352811` ](https://github.com/gradio-app/gradio/commit/c352811f76d4126613ece0a584f8c552fdd8d1f6 ) - Adds docstrings for `gr.WaveformOptions` , `gr.Brush` , and `gr.Eraser` , fixes examples for `ImageEditor` , and allows individual images to be used as the initial `value` for `ImageEditor` . Thanks [@abidlabs ](https://github.com/abidlabs )!
2023-12-16 07:39:46 +08:00
2023-12-15 05:14:57 +08:00
## 0.6.1
### Patch Changes
- Updated dependencies [[`5d51fbc` ](https://github.com/gradio-app/gradio/commit/5d51fbce7826da840a2fd4940feb5d9ad6f1bc5a ), [`34f9431` ](https://github.com/gradio-app/gradio/commit/34f943101bf7dd6b8a8974a6131c1ed7c4a0dac0 )]:
- @gradio/upload@0 .5.4
- @gradio/client@0 .9.1
- @gradio/button@0 .2.11
2023-12-13 10:32:54 +08:00
## 0.6.0
### Features
2023-12-15 05:14:57 +08:00
- [#6398 ](https://github.com/gradio-app/gradio/pull/6398 ) [`67ddd40` ](https://github.com/gradio-app/gradio/commit/67ddd40b4b70d3a37cb1637c33620f8d197dbee0 ) - Lite v4. Thanks [@whitphx ](https://github.com/whitphx )!
- [#6745 ](https://github.com/gradio-app/gradio/pull/6745 ) [`3240d04` ](https://github.com/gradio-app/gradio/commit/3240d042e907a3f2f679c2310c0dc6a688d2c07e ) - Add `editable` parameter to Audio. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-12-13 10:32:54 +08:00
2023-12-05 08:14:12 +08:00
## 0.5.5
### Fixes
2023-12-15 05:14:57 +08:00
- [#6551 ](https://github.com/gradio-app/gradio/pull/6551 ) [`8fc562a` ](https://github.com/gradio-app/gradio/commit/8fc562a8abc0932fc312ac33bcc015f6cf2700f6 ) - Add `show_recording_waveform` to Audio. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-12-05 08:14:12 +08:00
2023-11-23 07:43:10 +08:00
## 0.5.4
### Fixes
2023-12-15 05:14:57 +08:00
- [#6546 ](https://github.com/gradio-app/gradio/pull/6546 ) [`a424fdbb2` ](https://github.com/gradio-app/gradio/commit/a424fdbb2389219661b9a73197f4cc095a08cfe9 ) - Ensure audio waveform `autoplay` updates. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-11-23 07:43:10 +08:00
2023-11-21 05:45:52 +08:00
## 0.5.3
### Patch Changes
- Updated dependencies [[`9caddc17b` ](https://github.com/gradio-app/gradio/commit/9caddc17b1dea8da1af8ba724c6a5eab04ce0ed8 )]:
- @gradio/atoms@0 .3.0
- @gradio/icons@0 .3.0
- @gradio/statustracker@0 .4.0
- @gradio/upload@0 .5.0
- @gradio/button@0 .2.7
2023-11-17 11:54:38 +08:00
## 0.5.2
### Features
2023-11-21 05:45:52 +08:00
- [#6419 ](https://github.com/gradio-app/gradio/pull/6419 ) [`1959471a8` ](https://github.com/gradio-app/gradio/commit/1959471a8d939275c7b9184913a5a6f92e567604 ) - Add download tests for audio/video. Thanks [@freddyaboulton ](https://github.com/freddyaboulton )!
2023-11-17 11:54:38 +08:00
### Fixes
2023-11-21 05:45:52 +08:00
- [#6454 ](https://github.com/gradio-app/gradio/pull/6454 ) [`2777f326e` ](https://github.com/gradio-app/gradio/commit/2777f326e595541fbec8ce14f56340b9e740f1da ) - Ensure Audio ouput events are dispatched. Thanks [@hannahblair ](https://github.com/hannahblair )!
- [#6254 ](https://github.com/gradio-app/gradio/pull/6254 ) [`f816136a0` ](https://github.com/gradio-app/gradio/commit/f816136a039fa6011be9c4fb14f573e4050a681a ) - Add volume control to Audio. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-11-17 11:54:38 +08:00
2023-11-14 11:19:34 +08:00
## 0.5.1
### Fixes
2023-11-21 05:45:52 +08:00
- [#6382 ](https://github.com/gradio-app/gradio/pull/6382 ) [`2090aad73` ](https://github.com/gradio-app/gradio/commit/2090aad731b186ef0a3f63ec2b4d1a6e3acb1754 ) - Move wavesurfer dep to js/audio. Thanks [@freddyaboulton ](https://github.com/freddyaboulton )!
2023-11-14 11:19:34 +08:00
2023-11-11 07:12:33 +08:00
## 0.5.0
### Features
2023-11-21 05:45:52 +08:00
- [#6343 ](https://github.com/gradio-app/gradio/pull/6343 ) [`37dd335e5` ](https://github.com/gradio-app/gradio/commit/37dd335e5f04a8e689dd7f23ae24ad1934ea08d8 ) - Fix audio streaming output issues in 4.0. Thanks [@aliabid94 ](https://github.com/aliabid94 )!
2023-11-11 07:12:33 +08:00
2023-11-08 07:50:13 +08:00
## 0.4.3
### Fixes
2023-11-21 05:45:52 +08:00
- [#6317 ](https://github.com/gradio-app/gradio/pull/6317 ) [`19af2806a` ](https://github.com/gradio-app/gradio/commit/19af2806a58419cc551d2d1d6d8987df0db91ccb ) - Add autoplay to `waveform_settings` . Thanks [@hannahblair ](https://github.com/hannahblair )!
- [#6279 ](https://github.com/gradio-app/gradio/pull/6279 ) [`3cdeabc68` ](https://github.com/gradio-app/gradio/commit/3cdeabc6843000310e1a9e1d17190ecbf3bbc780 ) - Ensure source selection does not get hidden in overflow. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-11-08 07:50:13 +08:00
2023-11-04 03:16:42 +08:00
## 0.4.2
### Fixes
2023-11-21 05:45:52 +08:00
- [#6234 ](https://github.com/gradio-app/gradio/pull/6234 ) [`aaa55ce85` ](https://github.com/gradio-app/gradio/commit/aaa55ce85e12f95aba9299445e9c5e59824da18e ) - Video/Audio fixes. Thanks [@freddyaboulton ](https://github.com/freddyaboulton )!
2023-11-04 03:16:42 +08:00
2023-10-31 23:25:11 +08:00
## 0.4.1
### Patch Changes
- Updated dependencies [[`2ba14b284` ](https://github.com/gradio-app/gradio/commit/2ba14b284f908aa13859f4337167a157075a68eb )]:
- @gradio/client@0 .7.1
- @gradio/button@0 .2.1
- @gradio/upload@0 .3.1
2023-10-31 21:20:18 +08:00
## 0.4.0
### Features
2023-10-31 23:25:11 +08:00
- [#5498 ](https://github.com/gradio-app/gradio/pull/5498 ) [`287fe6782` ](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7 ) - fix circular dependency with client + upload. Thanks [@pngwn ](https://github.com/pngwn )!
- [#5498 ](https://github.com/gradio-app/gradio/pull/5498 ) [`287fe6782` ](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7 ) - Improve Audio Component. Thanks [@pngwn ](https://github.com/pngwn )!
- [#5498 ](https://github.com/gradio-app/gradio/pull/5498 ) [`287fe6782` ](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7 ) - Clean root url. Thanks [@pngwn ](https://github.com/pngwn )!
- [#5498 ](https://github.com/gradio-app/gradio/pull/5498 ) [`287fe6782` ](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7 ) - Image v4. Thanks [@pngwn ](https://github.com/pngwn )!
- [#5498 ](https://github.com/gradio-app/gradio/pull/5498 ) [`287fe6782` ](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7 ) - Publish all components to npm. Thanks [@pngwn ](https://github.com/pngwn )!
- [#5498 ](https://github.com/gradio-app/gradio/pull/5498 ) [`287fe6782` ](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7 ) - Custom components. Thanks [@pngwn ](https://github.com/pngwn )!
2023-10-31 21:20:18 +08:00
2023-10-31 12:46:02 +08:00
## 0.4.0-beta.9
2023-10-20 02:23:27 +08:00
2023-10-31 12:46:02 +08:00
### Features
2023-10-20 02:23:27 +08:00
2023-10-31 23:25:11 +08:00
- [#6153 ](https://github.com/gradio-app/gradio/pull/6153 ) [`1162ed621` ](https://github.com/gradio-app/gradio/commit/1162ed6217fe58d66a1923834c390150599ad81f ) - Remove `show_edit_button` param in Audio. Thanks [@hannahblair ](https://github.com/hannahblair )!
- [#6124 ](https://github.com/gradio-app/gradio/pull/6124 ) [`a7435ba9e` ](https://github.com/gradio-app/gradio/commit/a7435ba9e6f8b88a838e80893eb8fedf60ccda67 ) - Fix static issues with Lite on v4. Thanks [@aliabd ](https://github.com/aliabd )!
- [#6143 ](https://github.com/gradio-app/gradio/pull/6143 ) [`e4f7b4b40` ](https://github.com/gradio-app/gradio/commit/e4f7b4b409323b01aa01b39e15ce6139e29aa073 ) - fix circular dependency with client + upload. Thanks [@pngwn ](https://github.com/pngwn )!
- [#6136 ](https://github.com/gradio-app/gradio/pull/6136 ) [`667802a6c` ](https://github.com/gradio-app/gradio/commit/667802a6cdbfb2ce454a3be5a78e0990b194548a ) - JS Component Documentation. Thanks [@freddyaboulton ](https://github.com/freddyaboulton )!
- [#6142 ](https://github.com/gradio-app/gradio/pull/6142 ) [`103416d17` ](https://github.com/gradio-app/gradio/commit/103416d17f021c82f5ff0583dcc2d80906ad279e ) - JS READMEs and Storybook on Docs. Thanks [@aliabd ](https://github.com/aliabd )!
- [#6094 ](https://github.com/gradio-app/gradio/pull/6094 ) [`c476bd5a5` ](https://github.com/gradio-app/gradio/commit/c476bd5a5b70836163b9c69bf4bfe068b17fbe13 ) - Image v4. Thanks [@pngwn ](https://github.com/pngwn )!
- [#6149 ](https://github.com/gradio-app/gradio/pull/6149 ) [`90318b1dd` ](https://github.com/gradio-app/gradio/commit/90318b1dd118ae08a695a50e7c556226234ab6dc ) - swap `mode` on the frontned to `interactive` to match the backend. Thanks [@pngwn ](https://github.com/pngwn )!
2023-10-20 02:23:27 +08:00
2023-10-31 12:46:02 +08:00
## 0.4.0-beta.8
### Features
2023-10-31 23:25:11 +08:00
- [#6016 ](https://github.com/gradio-app/gradio/pull/6016 ) [`83e947676` ](https://github.com/gradio-app/gradio/commit/83e947676d327ca2ab6ae2a2d710c78961c771a0 ) - Format js in v4 branch. Thanks [@freddyaboulton ](https://github.com/freddyaboulton )!
- [#5966 ](https://github.com/gradio-app/gradio/pull/5966 ) [`9cad2127b` ](https://github.com/gradio-app/gradio/commit/9cad2127b965023687470b3abfe620e188a9da6e ) - Improve Audio Component. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-10-19 22:28:58 +08:00
### Fixes
2023-10-31 23:25:11 +08:00
- [#6046 ](https://github.com/gradio-app/gradio/pull/6046 ) [`dbb7de5e0` ](https://github.com/gradio-app/gradio/commit/dbb7de5e02c53fee05889d696d764d212cb96c74 ) - fix tests. Thanks [@pngwn ](https://github.com/pngwn )!
2023-10-19 22:28:58 +08:00
2023-10-31 12:46:02 +08:00
## 0.4.0-beta.7
2023-10-19 03:06:23 +08:00
### Patch Changes
2023-10-31 12:46:02 +08:00
- Updated dependencies [[`174b73619` ](https://github.com/gradio-app/gradio/commit/174b736194756e23f51bbaf6f850bac5f1ca95b5 ), [`5fbda0bd2` ](https://github.com/gradio-app/gradio/commit/5fbda0bd2b2bbb2282249b8875d54acf87cd7e84 )]:
- @gradio/wasm@0 .2.0-beta.1
2023-10-19 03:06:23 +08:00
2023-10-31 12:46:02 +08:00
## 0.4.0-beta.6
2023-10-18 14:38:35 +08:00
2023-10-31 12:46:02 +08:00
### Features
2023-10-18 14:38:35 +08:00
2023-10-31 12:46:02 +08:00
- [#5960 ](https://github.com/gradio-app/gradio/pull/5960 ) [`319c30f3f` ](https://github.com/gradio-app/gradio/commit/319c30f3fccf23bfe1da6c9b132a6a99d59652f7 ) - rererefactor frontend files. Thanks [@pngwn ](https://github.com/pngwn )!
- [#5938 ](https://github.com/gradio-app/gradio/pull/5938 ) [`13ed8a485` ](https://github.com/gradio-app/gradio/commit/13ed8a485d5e31d7d75af87fe8654b661edcca93 ) - V4: Use beta release versions for '@gradio' packages. Thanks [@freddyaboulton ](https://github.com/freddyaboulton )!
- [#5498 ](https://github.com/gradio-app/gradio/pull/5498 ) [`85ba6de13` ](https://github.com/gradio-app/gradio/commit/85ba6de136a45b3e92c74e410bb27e3cbe7138d7 ) - Fix deployed demos on v4 branch. Thanks [@pngwn ](https://github.com/pngwn )!
2023-10-18 14:38:35 +08:00
2023-10-17 04:30:41 +08:00
## 0.4.0
### Features
2023-10-18 14:38:35 +08:00
- [#5627 ](https://github.com/gradio-app/gradio/pull/5627 ) [`b67115e8e` ](https://github.com/gradio-app/gradio/commit/b67115e8e6e489fffd5271ea830211863241ddc5 ) - Lite: Make the Examples component display media files using pseudo HTTP requests to the Wasm server. Thanks [@whitphx ](https://github.com/whitphx )!
- [#5934 ](https://github.com/gradio-app/gradio/pull/5934 ) [`8d909624f` ](https://github.com/gradio-app/gradio/commit/8d909624f61a49536e3c0f71cb2d9efe91216219 ) - Fix styling issues with Audio, Image and Video components. Thanks [@aliabd ](https://github.com/aliabd )!
2023-10-17 04:30:41 +08:00
2023-10-06 05:10:45 +08:00
## 0.3.7
### Fixes
2023-10-18 14:38:35 +08:00
- [#5794 ](https://github.com/gradio-app/gradio/pull/5794 ) [`f096c3ae1` ](https://github.com/gradio-app/gradio/commit/f096c3ae168c0df00f90fe131c1e48c572e0574b ) - Throw helpful error when media devices are not found. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-10-06 05:10:45 +08:00
2023-10-03 11:55:55 +08:00
## 0.3.6
### Patch Changes
- Updated dependencies [[`8f0fed857` ](https://github.com/gradio-app/gradio/commit/8f0fed857d156830626eb48b469d54d211a582d2 )]:
- @gradio/icons@0 .2.0
- @gradio/atoms@0 .1.3
- @gradio/statustracker@0 .2.1
- @gradio/upload@0 .3.1
- @gradio/button@0 .2.1
2023-09-27 05:50:39 +08:00
## 0.3.5
### Patch Changes
- Updated dependencies [[`75ddeb390` ](https://github.com/gradio-app/gradio/commit/75ddeb390d665d4484667390a97442081b49a423 )]:
- @gradio/button@0 .2.0
- @gradio/upload@0 .3.0
2023-09-19 11:54:50 +08:00
## 0.3.4
### Fixes
2023-09-27 05:50:39 +08:00
- [#5587 ](https://github.com/gradio-app/gradio/pull/5587 ) [`e0d61b8ba` ](https://github.com/gradio-app/gradio/commit/e0d61b8baa0f6293f53b9bdb1647d42f9ae2583a ) - Fix `.clear()` events for audio and image. Thanks [@dawoodkhan82 ](https://github.com/dawoodkhan82 )!
2023-09-19 11:54:50 +08:00
2023-09-13 10:31:08 +08:00
## 0.3.3
### Fixes
2023-09-27 05:50:39 +08:00
- [#5459 ](https://github.com/gradio-app/gradio/pull/5459 ) [`bd2fda77` ](https://github.com/gradio-app/gradio/commit/bd2fda77fc98d815f4fb670f535af453ebee9b80 ) - Dispatch `stop_recording` event in Audio. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-09-13 10:31:08 +08:00
2023-09-08 04:26:14 +08:00
## 0.3.2
### Patch Changes
- Updated dependencies [[`afac0006` ](https://github.com/gradio-app/gradio/commit/afac0006337ce2840cf497cd65691f2f60ee5912 )]:
- @gradio/statustracker@0 .2.0
- @gradio/utils@0 .1.1
- @gradio/atoms@0 .1.2
- @gradio/button@0 .1.3
- @gradio/upload@0 .2.1
2023-09-02 08:27:32 +08:00
## 0.3.1
### Features
2023-09-08 04:26:14 +08:00
- [#5370 ](https://github.com/gradio-app/gradio/pull/5370 ) [`61803c65` ](https://github.com/gradio-app/gradio/commit/61803c6545e73fce47e8740bd46721ab9bb0ba5c ) - chore(deps): update dependency extendable-media-recorder to v9. Thanks [@renovate ](https://github.com/apps/renovate )!
2023-09-02 08:27:32 +08:00
2023-08-24 06:41:08 +08:00
## 0.3.0
### Highlights
#### Improve startup performance and markdown support ([#5279](https://github.com/gradio-app/gradio/pull/5279) [`fe057300`](https://github.com/gradio-app/gradio/commit/fe057300f0672c62dab9d9b4501054ac5d45a4ec))
##### 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.
2023-09-08 04:26:14 +08:00
Thanks [@pngwn ](https://github.com/pngwn )!
2023-08-24 06:41:08 +08:00
### Features
2023-09-08 04:26:14 +08:00
- [#5215 ](https://github.com/gradio-app/gradio/pull/5215 ) [`fbdad78a` ](https://github.com/gradio-app/gradio/commit/fbdad78af4c47454cbb570f88cc14bf4479bbceb ) - Lazy load interactive or static variants of a component individually, rather than loading both variants regardless. This change will improve performance for many applications. Thanks [@pngwn ](https://github.com/pngwn )!
- [#5216 ](https://github.com/gradio-app/gradio/pull/5216 ) [`4b58ea6d` ](https://github.com/gradio-app/gradio/commit/4b58ea6d98e7a43b3f30d8a4cb6f379bc2eca6a8 ) - Update i18n tokens and locale files. Thanks [@hannahblair ](https://github.com/hannahblair )!
- [#5264 ](https://github.com/gradio-app/gradio/pull/5264 ) [`46a2b600` ](https://github.com/gradio-app/gradio/commit/46a2b600a7ff030a9ea1560b882b3bf3ad266bbc ) - ensure translations for audio work correctly. Thanks [@hannahblair ](https://github.com/hannahblair )!
2023-08-24 06:41:08 +08:00
2023-08-11 04:59:00 +08:00
## 0.2.0
### Features
- [#5149 ](https://github.com/gradio-app/gradio/pull/5149 ) [`144df459` ](https://github.com/gradio-app/gradio/commit/144df459a3b7895e524defcfc4c03fbb8b083aca ) - Add `show_edit_button` param to `gr.Audio` . Thanks [@hannahblair ](https://github.com/hannahblair )!
- [#5023 ](https://github.com/gradio-app/gradio/pull/5023 ) [`e6317d77` ](https://github.com/gradio-app/gradio/commit/e6317d77f87d3dad638acca3dbc4a9228570e63c ) - Update dependency extendable-media-recorder to v8. Thanks [@renovate ](https://github.com/apps/renovate )!
- [#5085 ](https://github.com/gradio-app/gradio/pull/5085 ) [`13e47835` ](https://github.com/gradio-app/gradio/commit/13e478353532c4af18cfa50772f8b6fb3c6c9818 ) - chore(deps): update dependency extendable-media-recorder to v8. Thanks [@renovate ](https://github.com/apps/renovate )!
2023-07-27 05:10:24 +08:00
## 0.1.0
### Features
2024-03-09 08:35:23 +08:00
- [#4993 ](https://github.com/gradio-app/gradio/pull/4993 ) [`dc07a9f9` ](https://github.com/gradio-app/gradio/commit/dc07a9f947de44b419d8384987a02dcf94977851 ) - Bringing back the "Add download button for audio" PR by [@leuryr ](https://github.com/leuryr ). Thanks [@abidlabs ](https://github.com/abidlabs )!