diff --git a/webroot/index.html b/webroot/index.html index df5b8e840..ae1a82317 100644 --- a/webroot/index.html +++ b/webroot/index.html @@ -25,8 +25,11 @@ GW TODO: - expand user name change text box on focus.chat - accessilbity +- expect urls out of social list, not usernames - +- convert all the https://robohash.org/username123 areas to {{}}, put into util + - generate ?set=x(1-1)&size=10x10 +- don't force logo to be square. use as bg image :contain */ @@ -101,10 +104,12 @@ GW TODO: -
+
- + @@ -112,12 +117,12 @@ GW TODO:
- -
+
- - +
+ +
diff --git a/webroot/js/app.js b/webroot/js/app.js index 95b9738ed..5898194ba 100644 --- a/webroot/js/app.js +++ b/webroot/js/app.js @@ -18,6 +18,7 @@ async function setupApp() { summary: "", tags: [], title: "", + appVersion: "", }, watch: { @@ -66,9 +67,9 @@ function setupWebsocket() { // Uncomment to point to somewhere other than goth.land const protocol = location.protocol == "https:" ? "wss" : "ws" - var ws = new WebSocket(protocol + "://" + location.host + "/entry") + // var ws = new WebSocket(protocol + "://" + location.host + "/entry") - // var ws = new WebSocket("wss://goth.land/entry") + var ws = new WebSocket("wss://goth.land/entry") ws.onmessage = (e) => { const model = JSON.parse(e.data) diff --git a/webroot/js/footer.js b/webroot/js/footer.js index 330bd34d4..f2b3de6a0 100644 --- a/webroot/js/footer.js +++ b/webroot/js/footer.js @@ -1,9 +1,17 @@ Vue.component('owncast-footer', { + props: { + appVersion: { + type: String, + default: "0.1", + }, + }, + template: ` -