Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 77447b7

Browse files
authored
Update contribution link (#817)
* update teaxyz -> pkgdev on github links * fix update dev path
1 parent 6d26ba8 commit 77447b7

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

electron/libs/auto-updater.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ autoUpdater.on("update-downloaded", (info) => {
109109
sendStatusToWindow({ status: "ready", version: info.version });
110110
});
111111

112-
export const isDev = () => fs.existsSync(path.join(getPkgxPath(), "tea.xyz/gui/dev"));
112+
export const isDev = () => fs.existsSync(path.join(getGuiPath(), "dev"));
113113
export const isForceUpdate = () => fs.existsSync(path.join(getGuiPath(), "force-auto-update"));
114114

115115
async function setPublishURL() {

svelte/src/components/package-banner/package-banner.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
helpText="edit package"
105105
on:click={() =>
106106
shellOpenExternal(
107-
`https://github.com/teaxyz/pantry/blob/main/projects/${pkg.full_name}/package.yml`
107+
`https://github.com/pkgxdev/pantry/blob/main/projects/${pkg.full_name}/package.yml`
108108
)}
109109
/>
110110
<ButtonIcon

svelte/src/components/search-popup-results/no-search-results.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Button
1111
type="plain"
1212
color="blue"
13-
onClick={() => shellOpenExternal("https://github.com/teaxyz/pantry")}
13+
onClick={() => shellOpenExternal("https://github.com/pkgxdev/pantry")}
1414
>
1515
<span class="px-12 text-sm">VISIT PANTRY</span>
1616
</Button>

svelte/src/components/select-lang/select-lang.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}));
1414
1515
const openLangugeContributionPage = () => {
16-
shellOpenExternal("https://github.com/orgs/teaxyz/discussions/618");
16+
shellOpenExternal("https://github.com/orgs/pkgxdev/discussions/618");
1717
};
1818
</script>
1919

0 commit comments

Comments
 (0)