Skip to content

Commit 46a3c11

Browse files
committed
chore: release 0.7.2 — avoid fetch global in landing
1 parent d71ad7d commit 46a3c11

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "agentfiles",
33
"name": "Agentfiles",
4-
"version": "0.7.1",
4+
"version": "0.7.2",
55
"minAppVersion": "1.4.11",
66
"description": "Discover, organize, and edit AI agent skills, commands, and agents across Claude Code, Cursor, Codex, Windsurf, and more.",
77
"author": "Railly Hugo",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agentfiles",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "AI Skills Manager for Obsidian",
55
"main": "main.js",
66
"scripts": {

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
"0.4.3": "1.4.11",
77
"0.6.0": "1.4.11",
88
"0.7.0": "1.4.11",
9-
"0.7.1": "1.4.11"
9+
"0.7.1": "1.4.11",
10+
"0.7.2": "1.4.11"
1011
}

web/app/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import { Footer } from "@/components/footer";
33
import { Nav } from "@/components/nav";
44

55
async function getStarCount(): Promise<number> {
6-
const res = await fetch(
6+
const doFetch = globalThis.fetch;
7+
const res = await doFetch(
78
"https://api.github.com/repos/Railly/agentfiles",
89
{ next: { revalidate: 3600 } },
910
);

0 commit comments

Comments
 (0)