mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-17 11:29:58 +08:00
parent
1e99873fa5
commit
a2b80ca5c6
@ -84,7 +84,7 @@ No changes to highlight.
|
||||
* Better warnings (when there is a mismatch between the number of output components and values returned by a function, or when the `File` component or `UploadButton` component includes a `file_types` parameter along with `file_count=="dir"`) by [@abidlabs](https://github.com/abidlabs) in [PR 3194](https://github.com/gradio-app/gradio/pull/3194)
|
||||
* Raises a `gr.Error` instead of a regular Python error when you use `gr.Interface.load()` to load a model and there's an error querying the HF API by [@abidlabs](https://github.com/abidlabs) in [PR 3194](https://github.com/gradio-app/gradio/pull/3194)
|
||||
* Fixed gradio share links so that they are persistent and do not reset if network
|
||||
connection is disrupted by by [XciD](https://github.com/XciD), [Wauplin](https://github.com/Wauplin), and [@abidlabs](https://github.com/abidlabs) in [PR 3149](https://github.com/gradio-app/gradio/pull/3149)
|
||||
connection is disrupted by by [XciD](https://github.com/XciD), [Wauplin](https://github.com/Wauplin), and [@abidlabs](https://github.com/abidlabs) in [PR 3149](https://github.com/gradio-app/gradio/pull/3149) and a follow-up to allow it to work for users upgrading from a previous Gradio version in [PR 3221](https://github.com/gradio-app/gradio/pull/3221)
|
||||
|
||||
## Contributors Shoutout:
|
||||
No changes to highlight.
|
||||
|
@ -28,7 +28,7 @@ class Tunnel:
|
||||
|
||||
# Check if the file exist
|
||||
binary_name = f"frpc_{platform.system().lower()}_{machine.lower()}"
|
||||
binary_path = str(Path(__file__).parent / binary_name)
|
||||
binary_path = str(Path(__file__).parent / binary_name) + f"_v{VERSION}"
|
||||
|
||||
extension = ".exe" if os.name == "nt" else ""
|
||||
|
||||
|
@ -1 +1 @@
|
||||
3.18.1b2
|
||||
3.18.1b7
|
||||
|
Loading…
Reference in New Issue
Block a user