diff --git a/package.json b/package.json index 2469fbd5..ed44cf0a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "blink-eye", "private": true, - "version": "2.7.5", + "version": "2.7.6", "type": "module", "displayName": "Blink Eye", "categories": [ diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 71465a2a..3c8c54c3 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "Blink-Eye" -version = "2.7.5" +version = "2.7.6" description = "A minimalist eye care reminder app for Windows, macOS, and Linux." authors = ["Noman Dhoni"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2f299fad..cbd99668 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2.0.6", "productName": "Blink Eye", - "version": "2.7.5", + "version": "2.7.6", "identifier": "com.blinkeye.app", "build": { "beforeDevCommand": "bun run dev", diff --git a/website/app/sitemap.ts b/website/app/sitemap.ts index 4c94a7ae..fffdb905 100644 --- a/website/app/sitemap.ts +++ b/website/app/sitemap.ts @@ -15,7 +15,10 @@ async function fetchReleases(): Promise { "https://api.github.com/repos/nomandhoni-cs/blink-eye/releases", { cache: "force-cache", - } + headers: { + Authorization: `Bearer ${process.env.BLINK_EYE_WEBSITE_TOKEN}`, + }, + }, ); if (!res.ok) { @@ -53,7 +56,7 @@ export default async function sitemap(): Promise { lastModified: new Date().toISOString(), changeFrequency: "weekly" as const, priority: 0.8, - })) + })), ); // Generate release-specific routes @@ -63,7 +66,7 @@ export default async function sitemap(): Promise { lastModified: new Date().toISOString(), changeFrequency: "weekly" as const, priority: 0.8, - })) + })), ); // Generate routes for all locales @@ -73,7 +76,7 @@ export default async function sitemap(): Promise { lastModified: new Date(), changeFrequency: "weekly" as const, priority: route === "" ? 1 : 0.9, - })) + })), ); return [ diff --git a/website/configs/seo.ts b/website/configs/seo.ts index bdfa8925..bf524e4c 100644 --- a/website/configs/seo.ts +++ b/website/configs/seo.ts @@ -66,6 +66,6 @@ export const SEO = { "20 20 20 rule app for windows", ], thumb: "https://utfs.io/f/93hqarYp4cDdRfdEFOs3IvZkCG1g7rYl8WhFVBbNozK265eA", - url: "https://blinkeye.app", + url: process.env.NEXT_PUBLIC_SITE_URL || "https://blinkeye.app", twitter: "@blinkeyeapp", };