File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " blink-eye" ,
33 "private" : true ,
4- "version" : " 2.7.5 " ,
4+ "version" : " 2.7.6 " ,
55 "type" : " module" ,
66 "displayName" : " Blink Eye" ,
77 "categories" : [
Original file line number Diff line number Diff line change 11[package ]
22name = " Blink-Eye"
3- version = " 2.7.5 "
3+ version = " 2.7.6 "
44description = " A minimalist eye care reminder app for Windows, macOS, and Linux."
55authors = [" Noman Dhoni" ]
66edition = " 2021"
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://schema.tauri.app/config/2.0.6" ,
33 "productName" : " Blink Eye" ,
4- "version" : " 2.7.5 " ,
4+ "version" : " 2.7.6 " ,
55 "identifier" : " com.blinkeye.app" ,
66 "build" : {
77 "beforeDevCommand" : " bun run dev" ,
Original file line number Diff line number Diff line change @@ -15,7 +15,10 @@ async function fetchReleases(): Promise<Release[]> {
1515 "https://api.github.com/repos/nomandhoni-cs/blink-eye/releases" ,
1616 {
1717 cache : "force-cache" ,
18- }
18+ headers : {
19+ Authorization : `Bearer ${ process . env . BLINK_EYE_WEBSITE_TOKEN } ` ,
20+ } ,
21+ } ,
1922 ) ;
2023
2124 if ( ! res . ok ) {
@@ -53,7 +56,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
5356 lastModified : new Date ( ) . toISOString ( ) ,
5457 changeFrequency : "weekly" as const ,
5558 priority : 0.8 ,
56- } ) )
59+ } ) ) ,
5760 ) ;
5861
5962 // Generate release-specific routes
@@ -63,7 +66,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
6366 lastModified : new Date ( ) . toISOString ( ) ,
6467 changeFrequency : "weekly" as const ,
6568 priority : 0.8 ,
66- } ) )
69+ } ) ) ,
6770 ) ;
6871
6972 // Generate routes for all locales
@@ -73,7 +76,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
7376 lastModified : new Date ( ) ,
7477 changeFrequency : "weekly" as const ,
7578 priority : route === "" ? 1 : 0.9 ,
76- } ) )
79+ } ) ) ,
7780 ) ;
7881
7982 return [
Original file line number Diff line number Diff line change @@ -66,6 +66,6 @@ export const SEO = {
6666 "20 20 20 rule app for windows" ,
6767 ] ,
6868 thumb : "https://utfs.io/f/93hqarYp4cDdRfdEFOs3IvZkCG1g7rYl8WhFVBbNozK265eA" ,
69- url : "https://blinkeye.app" ,
69+ url : process . env . NEXT_PUBLIC_SITE_URL || "https://blinkeye.app" ,
7070 twitter : "@blinkeyeapp" ,
7171} ;
You can’t perform that action at this time.
0 commit comments