Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "blink-eye",
"private": true,
"version": "2.7.5",
"version": "2.7.6",
"type": "module",
"displayName": "Blink Eye",
"categories": [
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
11 changes: 7 additions & 4 deletions website/app/sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ async function fetchReleases(): Promise<Release[]> {
"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) {
Expand Down Expand Up @@ -53,7 +56,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
lastModified: new Date().toISOString(),
changeFrequency: "weekly" as const,
priority: 0.8,
}))
})),
);

// Generate release-specific routes
Expand All @@ -63,7 +66,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
lastModified: new Date().toISOString(),
changeFrequency: "weekly" as const,
priority: 0.8,
}))
})),
);

// Generate routes for all locales
Expand All @@ -73,7 +76,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
lastModified: new Date(),
changeFrequency: "weekly" as const,
priority: route === "" ? 1 : 0.9,
}))
})),
);

return [
Expand Down
2 changes: 1 addition & 1 deletion website/configs/seo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
};
Loading