5 Commits

Author SHA1 Message Date
4f91309f7f update 2025-12-24 06:29:44 +06:00
bcd457e2d6 update 2025-12-24 06:20:11 +06:00
8eef4fc477 update 2025-12-24 04:39:46 +06:00
614867bd12 update 2025-12-24 04:35:41 +06:00
cdf2bf5952 update 2025-12-24 04:35:13 +06:00
6 changed files with 15 additions and 16 deletions

View File

@@ -1,7 +1,7 @@
name: Deploy
on:
push:
# on:
# push:
# tags:
# - "v[0-9]+.[0-9]+.[0-9]+"

View File

@@ -66,11 +66,11 @@ export const useSignaling = createSharedComposable(() => {
const uri = host ? `${protocol}//${host}` : ``
socket.value = io(`http://localhost:4000/webrtc`, {
path: `/chad/ws`,
// socket.value = io(`http://localhost:4000/webrtc`, {
// path: `/chad/ws`,
socket.value = io(`${uri}/webrtc`, {
path: `${pathname}/ws`,
transports: ['websocket'],
// socket.value = io(`${uri}/webrtc`, {
// path: `${pathname}/ws`,
withCredentials: true,
auth: {
userId: me.value.id,

View File

@@ -1,7 +1,7 @@
<template>
<div class="grid grid-cols-2 h-screen">
<div class="flex flex-col shadow-xl shadow-surface-950 overflow-y-hidden">
<AppHeader title="Шальные сиськи 18+">
<AppHeader title="Надарики">
<template #right>
<PrimeButtonGroup class="ml-auto">
<PrimeButton

View File

@@ -7,7 +7,7 @@ export default defineNuxtRouteMiddleware(async (to, from) => {
if (!isTauri.value)
return
if (from?.name)
if (from?.name || !!to.redirectedFrom)
return
const { checkForUpdates } = useUpdater()
@@ -15,6 +15,6 @@ export default defineNuxtRouteMiddleware(async (to, from) => {
const update = await checkForUpdates()
if (update) {
return navigateTo({ name: 'Updating' })
return navigateTo({ name: 'Updater' })
}
})

View File

@@ -23,7 +23,6 @@ definePageMeta({
auth: false,
middleware: () => {
const { lastUpdate } = useUpdater()
if (!lastUpdate.value)
return navigateTo('/')
},

View File

@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "chad",
"version": "0.2.7",
"version": "0.2.11",
"identifier": "xyz.koptilnya.chad",
"build": {
"frontendDist": "../.output/public",