Skip to content

Commit

Permalink
Fixed new repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
cplepage committed Feb 18, 2025
1 parent 4b69094 commit 205fdb9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion download/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
</a>
</li>
<li>
<a href="https://github.com/fullstackedorg/editor">
<a href="https://github.com/fullstackedorg/fullstacked">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
Expand Down
6 changes: 3 additions & 3 deletions download/script.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
async function getLatestRelease() {
const response = await fetch(
"https://api.github.com/repos/fullstackedorg/editor/releases/latest"
"https://api.github.com/repos/fullstackedorg/fullstacked/releases/latest"
);
const { tag_name } = await response.json();
return tag_name;
}

async function getMainVersion() {
const response = await fetch(
"https://raw.githubusercontent.com/fullstackedorg/editor/refs/heads/main/package.json"
"https://raw.githubusercontent.com/fullstackedorg/fullstacked/refs/heads/main/package.json"
);
const { version } = await response.json();
return version;
}

async function getLatestCommit() {
const response = await fetch("https://api.github.com/repos/fullstackedorg/editor/git/refs/heads/main");
const response = await fetch("https://api.github.com/repos/fullstackedorg/fullstacked/git/refs/heads/main");
const { object: { sha } } = await response.json();
return sha;
}
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
</a>
</li>
<li>
<a href="https://github.com/fullstackedorg/editor">
<a href="https://github.com/fullstackedorg/fullstacked">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
Expand Down

0 comments on commit 205fdb9

Please sign in to comment.