Skip to content

Commit 31d2b4f

Browse files
committed
New URL, no biggie
1 parent 9d6898e commit 31d2b4f

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<div align="center">
22

3-
[![CI/CD](https://img.shields.io/badge/Build-Passing-brightgreen)](https://github.com/yPhil-gh/emulsion/actions)
4-
[![Release](https://img.shields.io/github/v/release/yPhil-gh/emulsion?style=flat&logo=github&color=brightgreen)](https://github.com/yPhil-gh/emulsion/releases)
5-
[![License](https://img.shields.io/github/license/yPhil-gh/emulsion?style=flat)](https://github.com/yPhil-gh/emulsion/blob/main/LICENSE)
3+
[![CI/CD](https://img.shields.io/badge/Build-Passing-brightgreen)](https://github.com/yphil-dev/emulsion/actions)
4+
[![Release](https://img.shields.io/github/v/release/yphil-dev/emulsion?style=flat&logo=github&color=brightgreen)](https://github.com/yphil-dev/emulsion/releases)
5+
[![License](https://img.shields.io/github/license/yphil-dev/emulsion?style=flat)](https://github.com/yphil-dev/emulsion/blob/main/LICENSE)
66
[![LiberaPay](https://img.shields.io/liberapay/receives/yphil.svg?logo=liberapay&style=flat)](https://liberapay.com/yphil/donate)
77
[![Ko-fi](https://img.shields.io/badge/Ko--fi-Support_Me-FF5E5B?logo=ko-fi&logoColor=white&style=flat)](https://ko-fi.com/yphil)
88

@@ -12,7 +12,7 @@
1212

1313
**Display your games collection into responsive galleries, manage game metadata, cover art and emulator configuration. Launch your games in style.**
1414

15-
[Website](https://yphil.gitlab.io/emulsion)[Download](https://github.com/yPhil-gh/emulsion/releases/latest)[Documentation](#configuration)[GitHub mirror (releases)](https://github.com/yPhil-gh/Emulsion)[Blog](https://yphil.gitlab.io/)[Cracktro](https://yphil.gitlab.io/ext/emulsion.html)
15+
[Website](https://yphil.gitlab.io/emulsion)[Download](https://github.com/yphil-dev/emulsion/releases/latest)[Documentation](#configuration)[GitHub mirror (releases)](https://github.com/yphil-dev/Emulsion)[Blog](https://yphil.gitlab.io/)[Cracktro](https://yphil.gitlab.io/ext/emulsion.html)
1616

1717
![Emulsion Hero](https://yphil.gitlab.io/images/emulsion-screenshot_01.png?cache=xyzzz)
1818

@@ -34,13 +34,13 @@ Emulsion is **reproducible** - one single config file - and **arcade ready** ; P
3434

3535
### Packages
3636

37-
- [**Linux Debian / Ubuntu**](https://github.com/yPhil-gh/emulsion/releases/latest/download/emulsion_amd64.deb)
38-
- [**Linux RPM**](https://github.com/yPhil-gh/emulsion/releases/latest/download/emulsion_x86_64.rpm)
39-
- [**Linux AppImage**](https://github.com/yPhil-gh/emulsion/releases/latest/download/emulsion_x86_64.AppImage)
40-
- [**Windows**](https://github.com/yPhil-gh/emulsion/releases/latest/download/emulsion_x64.exe)
41-
- [**Mac OS** (testers needed)](https://github.com/yPhil-gh/emulsion/releases/latest/download/emulsion_x64.dmg)
37+
- [**Linux Debian / Ubuntu**](https://github.com/yphil-dev/emulsion/releases/latest/download/emulsion_amd64.deb)
38+
- [**Linux RPM**](https://github.com/yphil-dev/emulsion/releases/latest/download/emulsion_x86_64.rpm)
39+
- [**Linux AppImage**](https://github.com/yphil-dev/emulsion/releases/latest/download/emulsion_x86_64.AppImage)
40+
- [**Windows**](https://github.com/yphil-dev/emulsion/releases/latest/download/emulsion_x64.exe)
41+
- [**Mac OS** (testers needed)](https://github.com/yphil-dev/emulsion/releases/latest/download/emulsion_x64.dmg)
4242

43-
[**All Releases**](https://github.com/yphil-gh/emulsion/releases/latest)
43+
[**All Releases**](https://github.com/yphil-dev/emulsion/releases/latest)
4444

4545
### From Source
4646

@@ -222,9 +222,9 @@ Emulsion is open source under the [GPL V3](LICENSE) and brought to you for free
222222
## Links
223223

224224
- [Website](https://yphil.gitlab.io/emulsion)
225-
- [Releases](https://github.com/yPhil-gh/emulsion/releases)
225+
- [Releases](https://github.com/yphil-dev/emulsion/releases)
226226
- [GitLab (Primary)](https://gitlab.com/yphil/emulsion)
227-
- [GitHub (Mirror)](https://github.com/yPhil-gh/Emulsion)
227+
- [GitHub (Mirror)](https://github.com/yphil-dev/Emulsion)
228228
- [Blog](https://yphil.gitlab.io/)
229229

230230
---

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ ipcMain.handle('parse-sfo', async (_event, filePath) => {
888888
ipcMain.handle('get-versions', async () => {
889889
let latestVersion;
890890
try {
891-
const response = await fetch('https://api.github.com/repos/yPhil-gh/Emulsion/releases/latest');
891+
const response = await fetch('https://api.github.com/repos/yphil-dev/Emulsion/releases/latest');
892892
const data = await response.json();
893893
latestVersion = data.tag_name.replace(/^v/, '');
894894

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "emulsion",
3-
"version": "0.10.2",
3+
"version": "0.10.3",
44
"summary": "Better gaming throught chemistry",
55
"description": "Display your games collection into responsive galleries, manage game metadata, cover art and emulator configuration. Launch your games in style.",
66
"homepage": "https://yphil.gitlab.io/emulsion",

src/js/backends/giantbomb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const fetchImages = async (gameName, apiKey) => {
1111
try {
1212
const searchUrl = `https://www.giantbomb.com/api/search/?api_key=${apiKey}&format=json&query=${encodeURIComponent(gameName)}&resources=game`;
1313
const response = await axios.get(searchUrl, {
14-
headers: { 'User-Agent': 'EmumE/1.0 (https://github.com/yphil-gh/EmumE)' }
14+
headers: { 'User-Agent': 'EmumE/1.0 (https://github.com/yphil-dev/EmumE)' }
1515
});
1616

1717
if (response.status !== 200 || !response.data?.results?.length) {

src/js/dialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export async function helpDialog(defaultTabId = null) {
265265
}
266266

267267
dialog.querySelector('button.upgrade').addEventListener('click', () => {
268-
ipcRenderer.invoke('go-to-url', 'https://github.com/yPhil-gh/Emulsion/releases');
268+
ipcRenderer.invoke('go-to-url', 'https://github.com/yphil-dev/Emulsion/releases');
269269
});
270270

271271
dialog.querySelector('button.btn-liberapay').addEventListener('click', () => {

0 commit comments

Comments
 (0)