Skip to content

Commit ef808fe

Browse files
committed
feat!: updated repo urls
1 parent 3ff30af commit ef808fe

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616

1717
- name: Fetch repository details
1818
run: |
19-
curl -s https://api.github.com/repos/REDasmOrg/REDasm > repository.json
19+
curl -s https://api.github.com/repos/redasm-dev/redasm > repository.json
2020
2121
- name: Fetch releases
2222
run: |
23-
curl -s https://api.github.com/repos/REDasmOrg/REDasm/releases > releases.json
23+
curl -s https://api.github.com/repos/redasm-dev/redasm/releases > releases.json
2424
2525
- name: Push updates to data branch
2626
run: |

src/index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,25 +42,25 @@
4242
<a data-default data-navigation href="/plugins">Plugins</a>
4343
</li>
4444
<li>
45-
<a data-default target="_blank" href="https://github.com/REDasmOrg">Source Code</a>
45+
<a data-default target="_blank" href="https://github.com/redasm-dev">Source Code</a>
4646
</li>
4747
</ul>
4848
<ul class="flex flex-col md:flex-row gap-x-3">
49-
<li>
50-
<a data-default href="https://t.me/REDasmDisassembler">
51-
<i class="fab fa-telegram fa-fw fa-lg" aria-label="Telegram"></i>
52-
</a>
53-
</li>
49+
<!-- <li> -->
50+
<!-- <a data-default href="https://t.me/REDasmDisassembler"> -->
51+
<!-- <i class="fab fa-telegram fa-fw fa-lg" aria-label="Telegram"></i> -->
52+
<!-- </a> -->
53+
<!-- </li> -->
5454
<li>
5555
<a data-default href="https://x.com/re_dasm">
5656
<i class="fab fa-x-twitter fa-fw fa-lg" aria-label="X"></i>
5757
</a>
5858
</li>
59-
<li>
60-
<a data-default href="https://www.reddit.com/r/REDasm">
61-
<i class="fab fa-reddit-alien fa-fw fa-lg" aria-label="Reddit"></i>
62-
</a>
63-
</li>
59+
<!-- <li> -->
60+
<!-- <a data-default href="https://www.reddit.com/r/REDasm"> -->
61+
<!-- <i class="fab fa-reddit-alien fa-fw fa-lg" aria-label="Reddit"></i> -->
62+
<!-- </a> -->
63+
<!-- </li> -->
6464
<li>
6565
<a data-default href="https://www.youtube.com/@redasm">
6666
<i class="fab fa-youtube fa-fw fa-lg" aria-label="YouTube"></i>

src/lib/ghstats.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class GitHubStats extends HTMLElement {
2-
REPO = "https://github.com/REDasmOrg/REDasm"
3-
URL = "https://raw.githubusercontent.com/REDasmOrg/redasm.github.io/refs/heads/data/repository.json";
2+
REPO = "https://github.com/redasm-dev/redasm"
3+
URL = "https://raw.githubusercontent.com/redasm-dev/web/refs/heads/data/repository.json";
44

55
connectedCallback() {
66
this.innerHTML = /*html*/`

src/routes/download.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function getFileSize(bytes, si = false, dp = 1) {
1818
}
1919

2020
async function fetchReleases() {
21-
const URL = "https://raw.githubusercontent.com/REDasmOrg/redasm.dev/refs/heads/data/releases.json";
21+
const URL = "https://raw.githubusercontent.com/redasm-dev/redasm.dev/refs/heads/data/releases.json";
2222

2323
try {
2424
const response = await fetch(URL);
@@ -145,7 +145,7 @@ export default {
145145
</tab-panel>
146146
<tab-panel title="Nightly Builds">
147147
Nightly builds are provided by
148-
<a href="https://github.com/REDasmOrg/REDasm/actions/workflows/build.yml">GitHub Actions</a>.<br>
148+
<a href="https://github.com/redasm-dev/redasm/actions/workflows/build.yml">GitHub Actions</a>.<br>
149149
They provides the latest features and bugfixes, but they can be unstable.
150150
</tab-panel>
151151
<tab-panel id="download__packages" title="Packages">

src/routes/plugins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default {
7878
</p>
7979
<p>
8080
Have a suggestion or an idea? Feel free to request a feature or join the discussion
81-
<a href="https://github.com/REDasmOrg/REDasm/issues">by opening an issue on GitHub</a>!
81+
<a href="https://github.com/redasm-dev/redasm/issues">by opening an issue on GitHub</a>!
8282
</p>
8383
`
8484
};

0 commit comments

Comments
 (0)