Skip to content

Commit 8d4b40e

Browse files
authored
Change status-desktop to status-app and status-mobile to status-legacy (#862)
* change status-desktop repo to status-app and status-mobile to status-legacy * Update status fields in strong-kids-kick Change status-desktop to status-app and status-mobile to status-legacy * address feedback
1 parent 8500222 commit 8d4b40e

File tree

12 files changed

+26
-22
lines changed

12 files changed

+26
-22
lines changed

.changeset/strong-kids-kick.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"status.app": patch
3+
"connector": patch
4+
---
5+
6+
Change status-desktop to status-app and status-mobile to status-legacy

apps/connector/README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Status Desktop Wallet extended to decentralized applications in your browser.
66

77
Depends on:
88

9-
- **[Status Desktop](https://github.com/status-im/status-desktop/releases)** >=2.32.x
9+
* **[Status Desktop](https://github.com/status-im/status-app/releases)** >=2.32.x
1010

1111
Tested with these browsers:
1212

13-
- Google Chrome
14-
- Arc
13+
* Google Chrome
14+
* Arc
1515

1616
## Development
1717

@@ -81,7 +81,7 @@ pnpm build:firefox
8181

8282
#### Load
8383

84-
https://support.mozilla.org/en-US/kb/add-on-signing-in-firefox#w_what-are-my-options-if-i-want-to-use-an-unsigned-add-on-advanced-users
84+
https://support.mozilla.org/en-US/kb/add-on-signing-in-firefox#w\_what-are-my-options-if-i-want-to-use-an-unsigned-add-on-advanced-users
8585

8686
Firefox Developer Edition > Tools > Add-ons and Themes > click on gear icon (Tools for all add-ons) > Install Add-on From File... > select build (build/firefox-mv3-prod.zip)
8787

@@ -107,6 +107,4 @@ Download latest build from last merged PR or build from source. To use the exten
107107

108108
Browser > Console
109109

110-
```
111-
await connector.enableLogging(true)
112-
```
110+
await connector.enableLogging(true)

apps/connector/src/lib/desktop-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class DesktopClient {
2525
this.#rpcClient?.destroy()
2626
this.#rpcClient = null
2727

28-
// todo: publish disconnect message/event after https://github.com/status-im/status-desktop/issues/16014
28+
// todo: publish disconnect message/event after https://github.com/status-im/status-app/issues/16014
2929
}
3030

3131
public async send(args: DesktopRequestArguments) {

apps/status.app/content/help/communities/replace-your-community-s-control-node.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ roles:
1313
</Admonition>
1414

1515
{/*
16-
See [Support archive protocol when transferring control node to new device/account](https://github.com/status-im/status-desktop/issues/15235).
16+
See [Support archive protocol when transferring control node to new device/account](https://github.com/status-im/status-app/issues/15235).
1717
*/}
1818

1919
The [community's control node](./about-the-control-node-in-status-communities.mdx) maintains your community settings, configuration and functionality. The computer where you [create your Status Community](./create-a-status-community.mdx) or [transfer your community's ownership](./transfer-your-community-s-ownership.mdx) becomes a control node.

apps/status.app/content/help/wallet/status-wallet-faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ author: earakel, jorge-campo
1414

1515
### Is Status Wallet open source?
1616

17-
Yes. The source code of [Status Mobile](https://github.com/status-im/status-mobile), [Status Desktop](https://github.com/status-im/status-desktop) and [Status Web](https://github.com/status-im/status-web) is fully available on GitHub, including the Wallet's source code.
17+
Yes. The source code of [Status App](https://github.com/status-im/status-app) (Mobile and Desktop) and [Status Web](https://github.com/status-im/status-web) is fully available on GitHub, including the Wallet's source code.
1818

1919
### Is Status Wallet self-custodial?
2020

apps/status.app/src/app/(website)/insights/_components/table-issues/table-issues.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const TableIssues = (props: Props) => {
103103
router.push(`/insights/epics/${encodeURIComponent(label)}`)
104104
} else {
105105
// Otherwise, send to label page on github repository
106-
// example: https://github.com/status-im/status-desktop/labels/messenger-team
106+
// example: https://github.com/status-im/status-app/labels/messenger-team
107107
if (repo) {
108108
openInNewTab(`https://github.com/${repo}/labels/${label}`)
109109
}

apps/status.app/src/app/(website)/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export default async function WebsiteLayout(props: Props) {
1818
const { children } = props
1919

2020
const [mobileRelease, desktopRelease] = await Promise.all([
21-
getLatestRelease({ repo: 'status-mobile' }),
22-
getLatestRelease({ repo: 'status-desktop' }),
21+
getLatestRelease({ repo: 'status-legacy' }),
22+
getLatestRelease({ repo: 'status-app' }),
2323
]).catch(error => {
2424
console.error('Failed to fetch GitHub releases', error)
2525
return [null, null]

apps/status.app/src/app/api/download/[platform]/route.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export async function GET(
3535
if (platform === 'android') {
3636
const release = await octokit.repos.getLatestRelease({
3737
owner: 'status-im',
38-
repo: 'status-mobile',
38+
repo: 'status-legacy',
3939
})
4040

4141
await track('Download', {
@@ -54,10 +54,10 @@ export async function GET(
5454
try {
5555
const release = await octokit.repos.getLatestRelease({
5656
owner: 'status-im',
57-
repo: 'status-desktop',
57+
repo: 'status-app',
5858
})
5959

60-
// @see https://github.com/status-im/status-desktop/releases
60+
// @see https://github.com/status-im/status-app/releases
6161
const { browser_download_url: downloadUrl } = match(platform)
6262
.with(
6363
'macos-silicon',

apps/status.app/src/config/routes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const MESSARI_URL = 'https://messari.io/asset/status'
99
export const KEYCARD_STORE_URL = 'https://keycard.tech?buyKeycard=true'
1010

1111
export const STATUS_DESKTOP_REPO_ISSUES_URL =
12-
'https://github.com/status-im/status-desktop/issues/new?assignees=&labels=bug&projects=&template=bug.md'
12+
'https://github.com/status-im/status-app/issues/new?assignees=&labels=bug&projects=&template=bug.md'
1313
export const STATUS_DESKTOP_DOWNLOAD_URL_MACOS_SILICON =
1414
'/api/download/macos-silicon'
1515
export const STATUS_DESKTOP_DOWNLOAD_URL_MACOS_INTEL =
@@ -33,7 +33,7 @@ export const STATUS_PORTFOLIO_WALLET_CHROME_URL =
3333

3434
// https://vercel.live/link/status-website-git-desktop-app-focus-status-im-web.vercel.app?page=%2F%3FvercelThreadId%3DfrG-m&via=in-app-copy-link&p=1
3535
export const LEARN_MORE_MOBILE_APP_URL =
36-
'https://github.com/status-im/status-desktop/issues/18082'
36+
'https://github.com/status-im/status-app/issues/18082'
3737

3838
export const ROUTES = {
3939
Apps: [

apps/status.app/src/server/api/routers/releases.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const mapGitHubMilestoneToRelease = (milestone: GitHubMilestone) => ({
1919
description: milestone.description,
2020
dueOn: milestone.due_on,
2121
url: milestone.html_url,
22-
platform: (milestone.repository === 'status-im/status-desktop'
22+
platform: (milestone.repository === 'status-im/status-app'
2323
? 'desktop'
2424
: 'mobile') as ReleasePlatform,
2525
})

0 commit comments

Comments
 (0)