Skip to content

Commit

Permalink
move repo to filecoin-station/desktop (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangruber authored Feb 23, 2023
1 parent 008d251 commit da7ba09
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](https://protocol.ai/)
[![](https://img.shields.io/badge/project-Filecoin-blue.svg?style=flat-square)](https://filecoin.io/)
[![ci](https://github.com/filecoin-project/filecoin-station/actions/workflows/ci.yml/badge.svg)](https://github.com/filecoin-project/filecoin-station/actions/workflows/ci.yml)
[![ci](https://github.com/filecoin-station/desktop/actions/workflows/ci.yml/badge.svg)](https://github.com/filecoin-station/desktop/actions/workflows/ci.yml)

> A short repo tagline goes here
Expand All @@ -11,7 +11,7 @@ A longer description goes here.
## Install

Release notes and all versions of Filecoin Station can be found on the
[releases page](https://github.com/filecoin-project/filecoin-station/releases).
[releases page](https://github.com/filecoin-station/desktop/releases).

Each release has packages for desktop platforms:

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ as a security vulnerability, .
## Reporting a non security bug

For non-security bugs, please simply file a GitHub
[issue](https://github.com/filecoin-project/filecoin-station/issues/new).
[issue](https://github.com/filecoin-station/desktop/issues/new).
16 changes: 8 additions & 8 deletions docs/DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

```mermaid
graph
fil-stat-repo(github.com/filecoin-project/filecoin-station) --> fil-stat-main(Station main process)
fil-stat-repo(github.com/filecoin-station/desktop) --> fil-stat-main(Station main process)
fil-stat-repo --> fil-stat-webui(Station WebUI)
saturn-l2-repo(https://github.com/filecoin-project/saturn-l2)
Expand All @@ -23,17 +23,17 @@ graph

Repositories:

- https://github.com/filecoin-project/filecoin-station
- https://github.com/filecoin-project/saturn-l2
- https://github.com/filecoin-station/desktop
- https://github.com/filecoin-saturn/L2-node
- https://github.com/filecoin-project/saturn-webui

### End-to-end release workflow

1. `saturn-webui` publishes a new release with WebUI assets
2. `saturn-l2` is updated to use the new `saturn-webui` version
3. `saturn-l2` publishes a new release
4. `filecoin-station` is updated to use the new `saturn-l2 `version
5. `filecoin-station` publishes a new release
1. `filecoin-project/saturn-webui` publishes a new release with WebUI assets
2. `filecoin-saturn/L2-node` is updated to use the new `saturn-webui` version
3. `filecoin-saturn/L2-node` publishes a new release
4. `filecoin-station/desktop` is updated to use the new `L2-node` version
5. `filecoin-station/desktop` publishes a new release

## Development workflow

Expand Down
8 changes: 4 additions & 4 deletions docs/RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ modified flow from
```

1. Wait for GitHub Actions CI to upload the binaries to a draft release
[here](https://github.com/filecoin-project/filecoin-station/releases) (a new
[here](https://github.com/filecoin-station/desktop/releases) (a new
one will be created if you haven't drafted one).
1. Review and publish the release draft.
- Once a release is published, users will receive the app update
- The `latest.yml, latest-mac.yml, latest-linux.yml` files attached to
[/releases](https://github.com/filecoin-project/filecoin-station/releases)
[/releases](https://github.com/filecoin-station/desktop/releases)
are used by the desktop app to determine when an app update is available.
1. Done!

Expand All @@ -56,12 +56,12 @@ modified flow from
4. Publish local changes and the tag to the GitHub repo:
`git push && git push origin vA.B.C`.
5. Wait for GitHub Actions CI to upload the binaries to a draft release
[here](https://github.com/filecoin-project/filecoin-station/releases) (a new
[here](https://github.com/filecoin-station/desktop/releases) (a new
one will be created if you haven't drafted one).
6. Review and publish the release draft.
- Once a release is published, users will receive the app update
- The `latest.yml, latest-mac.yml, latest-linux.yml` files attached to
[/releases](https://github.com/filecoin-project/filecoin-station/releases)
[/releases](https://github.com/filecoin-station/desktop/releases)
are used by the desktop app to determine when an app update is available.
7. Done!

Expand Down
2 changes: 1 addition & 1 deletion main/updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function onUpdateAvailable ({ version /*, releaseNotes */ }) {

function openReleaseNotes () {
const version = nextVersion ? `v${nextVersion}` : 'latest'
shell.openExternal(`https://github.com/filecoin-station/filecoin-station/releases/${version}`)
shell.openExternal(`https://github.com/filecoin-station/desktop/releases/${version}`)
}

/**
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/filecoin-project/filecoin-station.git"
"url": "git+https://github.com/filecoin-station/desktop.git"
},
"keywords": [
"filecoin"
],
"author": "Protocol Labs",
"license": "(Apache-2.0 AND MIT)",
"bugs": {
"url": "https://github.com/filecoin-project/filecoin-station/issues"
"url": "https://github.com/filecoin-station/desktop/issues"
},
"homepage": "https://github.com/filecoin-project/filecoin-station#readme",
"homepage": "https://github.com/filecoin-station/desktop#readme",
"dependencies": {
"@glif/filecoin-address": "2.0.1",
"@glif/filecoin-message": "^2.0.27",
Expand Down

0 comments on commit da7ba09

Please sign in to comment.