version 2.8.0b (#549)

* updated PyPi version to 2.7.0a101

* updated PyPi version to 2.7.0a102

* updated PyPi version to 2.8.0b

* uncache output audio

Co-authored-by: Ali Abid <aliabid94@gmail.com>
This commit is contained in:
aliabid94 2022-02-07 12:39:01 -08:00 committed by GitHub
parent f7ca7d8fc9
commit dbd47d8746
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 17 additions and 12 deletions

View File

@ -4,10 +4,10 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel='stylesheet' href='/build/bundle.css'>
<link rel='stylesheet' href='/build/themes.css'>
<link rel='stylesheet' href='build/bundle.css'>
<link rel='stylesheet' href='build/themes.css'>
<link rel="stylesheet" href="./global.css">
<link rel="stylesheet" href="global.css">
<title>{{ config['title'] or 'Gradio' }}</title>
<meta property="og:url" content="https://gradio.app/" />
@ -43,6 +43,6 @@
<div id="root" style="height: 100%"></div>
</body>
<script defer src='/build/bundle.js'></script>
<script defer src='build/bundle.js'></script>
</html>

View File

@ -1,8 +1,13 @@
<script>
import { afterUpdate } from "svelte";
export let value, theme;
let audio;
afterUpdate(() => audio.src = value)
</script>
<audio {theme} controls>
<audio bind:this={audio} class="w-full" {theme} controls>
<source src={value} />
</audio>

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: gradio
Version: 2.8.0a0
Version: 2.8.0b0
Summary: Python library for easily interacting with trained machine learning models
Home-page: https://github.com/gradio-app/gradio-UI
Author: Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq

View File

@ -4,10 +4,10 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel='stylesheet' href='/build/bundle.css'>
<link rel='stylesheet' href='/build/themes.css'>
<link rel='stylesheet' href='build/bundle.css'>
<link rel='stylesheet' href='build/themes.css'>
<link rel="stylesheet" href="./global.css">
<link rel="stylesheet" href="global.css">
<title>{{ config['title'] or 'Gradio' }}</title>
<meta property="og:url" content="https://gradio.app/" />
@ -43,6 +43,6 @@
<div id="root" style="height: 100%"></div>
</body>
<script defer src='/build/bundle.js'></script>
<script defer src='build/bundle.js'></script>
</html>

View File

@ -1 +1 @@
2.8.0a
2.8.0b

View File

@ -5,7 +5,7 @@ except ImportError:
setup(
name="gradio",
version="2.8.0a",
version="2.8.0b",
include_package_data=True,
description="Python library for easily interacting with trained machine learning models",
author="Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq",