6 Commits
Author SHA1 Message Date
sugoidogo 5650f82d77 css update
publish.yaml / release (push) Successful in 32s
2026-07-29 03:42:12 -07:00
sugoidogo bd4628efea Revert "css update"
This reverts commit 3e335e72e3.
2026-07-29 02:06:06 -07:00
sugoidogo e0e6b83162 update obsconnect url
publish.yaml / release (push) Successful in 31s
2026-07-29 00:50:40 -07:00
sugoidogo b088c5bf85 fix wrong assets
publish.yaml / release (push) Successful in 31s
2026-07-28 23:56:54 -07:00
sugoidogo 78e7d06fd5 update defaults to use tubie
publish.yaml / release (push) Successful in 33s
2026-07-28 23:49:24 -07:00
sugoidogo 3e335e72e3 css update 2026-07-28 23:44:49 -07:00
7 changed files with 32 additions and 6 deletions
+16
View File
@@ -1,5 +1,21 @@
{
"assets":[
{
"id":"active",
"url":"tubie/active.png"
},
{
"id": "active-blink",
"url": "tubie/active-blink.png"
},
{
"id": "idle",
"url": "tubie/idle.png"
},
{
"id": "idle-blink",
"url": "tubie/idle-blink.png"
},
{
"id":"bounce_animation",
"url":"bounce.css"
+15 -5
View File
@@ -1,3 +1,10 @@
<head>
<link rel="icon" href="data:image/png;base64,iVBORw0KGgo=">
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" media="screen" />
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura-dark.css"
media="screen and (prefers-color-scheme: dark)" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<h1>PNGTube</h1>
<select id="instance" hidden></select>
<form name="new_instance" hidden>
@@ -93,8 +100,8 @@
</span>
<style>
* {
font-family: Inter, Roobert, Helvetica Neue, Helvetica, Arial, sans-serif;
body {
margin: 0;
}
form[name=new_instance]:not([hidden]),
form[name=instance_config]:not([hidden]){
@@ -110,12 +117,15 @@
white-space: normal;
width: 20em;
}
input:invalid:required {
background-color: lightpink;
}
button#add_source,
button.sensitivity {
width: 100%;
}
.source {
margin: 10px;
}
form, input[type=search] {
margin-bottom: 0;
}
</style>
<script type="module" src="index.js"></script>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

+1 -1
View File
@@ -294,7 +294,7 @@ async function obs_init() {
return obs.connect(obsurl, obspassword)
}
async function obs_auth() {
const url = new URL('https://sugoidogo.github.io/obsconnect')
const url = new URL('https://obsconnect.sugoidogo.com')
url.searchParams.append('redirect_uri', location.href)
location.assign(url)
}