Skip to content

Commit

Permalink
fix: Migrate RunMath to Kiimesoft organization
Browse files Browse the repository at this point in the history
  • Loading branch information
dubisdev committed Jan 14, 2024
1 parent d86448b commit 646e128
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<a href="https://github.com/dubisdev/runmath">
<a href="https://github.com/kiimesoft/runmath">
<img alt="Runmath icon" src="./src-tauri/icons/128x128.png"/>
</a>
</p>
Expand All @@ -13,7 +13,7 @@
</p>

<p align="center">
<a href="https://github.com/dubisdev/runmath/releases/latest">
<a href="https://github.com/kiimesoft/runmath/releases/latest">
🔗 Go to Download Page
</a>
&nbsp; | &nbsp; Give it a Star ⭐ | &nbsp;
Expand All @@ -22,10 +22,10 @@

<p align="center">
<img
src="https://img.shields.io/github/v/tag/dubisdev/runmath?label=Version&style=flat-square"
src="https://img.shields.io/github/v/tag/kiimesoft/runmath?label=Version&style=flat-square"
alt="Last available version" />
<img
src="https://img.shields.io/github/downloads/dubisdev/runmath/total.svg?style=flat-square&color=blue&label=Downloads"
src="https://img.shields.io/github/downloads/kiimesoft/runmath/total.svg?style=flat-square&color=blue&label=Downloads"
alt="Total downloads" />
</p>

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
"typescript": "5.3.3",
"vite": "5.0.11"
},
"repository": "dubisdev/runmath"
"repository": "kiimesoft/runmath"
}
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"updater": {
"active": true,
"endpoints": [
"https://github.com/dubisdev/runmath/releases/latest/download/latest.json"
"https://github.com/kiimesoft/runmath/releases/latest/download/latest.json"
],
"dialog": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDFBMzM2NDgwQjQwQzFEOApSV1RZd1VBTFNEYWpBWFpMTlIxSzVYdEhjSDFqTTdPcFkwUEQzVHFsWlZ6a1dGRGFKdHY0UFBmbQo=",
Expand Down
4 changes: 2 additions & 2 deletions src/utils/updateNotifier.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { getVersion } from "@tauri-apps/api/app";
import { requestPermission, isPermissionGranted, sendNotification } from "@tauri-apps/api/notification";

export const RELEASE_URL = "https://github.com/dubisdev/RunMath/releases/latest";
export const API_RELEASE_URL = "https://api.github.com/repos/dubisdev/RunMath/releases/latest";
export const RELEASE_URL = "https://github.com/kiimesoft/RunMath/releases/latest";
export const API_RELEASE_URL = "https://api.github.com/repos/kiimesoft/RunMath/releases/latest";

export const checkForUpdates = async () => {
if (navigator.onLine === false) return;
Expand Down

0 comments on commit 646e128

Please sign in to comment.