Skip to content

Commit

Permalink
"Filecoin Station" -> "Checker"
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangruber committed Feb 11, 2025
1 parent cb805e4 commit 618f696
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Filecoin Station
# Checker

[![](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/CheckerNetwork/app/actions/workflows/ci.yml/badge.svg)](https://github.com/CheckerNetwork/app/actions/workflows/ci.yml)

Filecoin Station is a desktop app that connects your computer’s idle resources
Station is a desktop app that connects your computer’s idle resources
to the Filecoin network and rewards you with Filecoin. Taking part is simple,
just launch the app and start earning. Learn more at
[filstation.app](https://filstation.app).

## Install

Release notes and all versions of Filecoin Station can be found on the
Release notes and all versions of Checker can be found on the
[releases page](https://github.com/CheckerNetwork/app/releases).

Each release has packages for desktop platforms:
Expand Down
2 changes: 1 addition & 1 deletion docs/RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Overview

Filecoin Station uses
Checker uses
[electron-build/auto-update](https://www.electron.build/auto-update) and a
modified flow from
[Electron Builder Action](https://github.com/samuelmeuli/action-electron-builder#electron-builder-action):
Expand Down
2 changes: 1 addition & 1 deletion main/app-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function setupCheckForUpdatesMenuItem (ctx, menu) {
visible: false
})

// Filecoin Station menu
// Checker menu
menu.items[0].submenu?.insert(1, checkForUpdates)
menu.items[0].submenu?.insert(2, checkingForUpdates)
}
Expand Down
2 changes: 1 addition & 1 deletion main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const inTest = (process.env.NODE_ENV === 'test')
const isDev = !app.isPackaged && !inTest

log.info(format(
'Filecoin Station build version: %s %s-%s%s%s',
'Checker build version: %s %s-%s%s%s',
BUILD_VERSION,
os.platform(),
os.arch(),
Expand Down
4 changes: 2 additions & 2 deletions main/tray.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function getTrayIcon (readyToUpdate, isOnline) {
const createContextMenu = (/** @type {Context} */ ctx) => {
const contextMenu = Menu.buildFromTemplate([
{
label: `Filecoin Station v${CHECKER_VERSION}`,
label: `Checker v${CHECKER_VERSION}`,
enabled: false
},
{
Expand Down Expand Up @@ -89,7 +89,7 @@ module.exports = async function (/** @type {Context} */ ctx) {
tray = new Tray(getTrayIcon(false, core.isOnline()))

const contextMenu = createContextMenu(ctx)
tray.setToolTip('Filecoin Station')
tray.setToolTip('Checker')
tray.setContextMenu(contextMenu)

setupIpcEventListeners(ctx)
Expand Down
6 changes: 3 additions & 3 deletions main/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = async function (ctx) {

const dimensions = screen.getPrimaryDisplay().size
const ui = new BrowserWindow({
title: 'Filecoin Station',
title: 'Checker',
show: false, // we show it via ready-to-show
width: Math.min(dimensions.width, 1440),
height: Math.min(dimensions.height, 900),
Expand Down Expand Up @@ -94,8 +94,8 @@ module.exports = async function (ctx) {
event.preventDefault()
if (!getTrayOperationExplained()) {
showDialogSync({
title: 'Closing Filecoin Station',
message: 'Station will continue running in the background.'
title: 'Closing Checker',
message: 'Checker will continue running in the background.'
})
setTrayOperationExplained()
}
Expand Down
12 changes: 6 additions & 6 deletions main/updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ function onUpdateNotAvailable ({ version }) {

showDialogSync({
title: 'Update not available',
message: `You are on the latest version of Filecoin Station (${version}).`,
message: `You are on the latest version of Checker (${version}).`,
type: 'info',
buttons: ['Close']
})
Expand All @@ -186,8 +186,8 @@ function onUpdateDownloaded (ctx, { version /*, releaseNotes */ }) {

const showUpdateDialog = () => {
const buttonIx = showDialogSync({
title: 'Update Filecoin Station',
message: `An update to Filecoin Station ${version} is available. ` +
title: 'Update Checker',
message: `An update to Checker ${version} is available. ` +
'Would you like to install it now?',
type: 'info',
buttons: ['Later', 'Show Release Notes', 'Install now']
Expand All @@ -208,8 +208,8 @@ function onUpdateDownloaded (ctx, { version /*, releaseNotes */ }) {
// show unobtrusive notification + dialog on click
ipcMain.emit(ipcMainEvents.READY_TO_UPDATE)
updateNotification = new Notification({
title: 'Filecoin Station Update',
body: `An update to Filecoin Station ${version} is available.`
title: 'Checker Update',
body: `An update to Checker ${version} is available.`
})
updateNotification.on('click', showUpdateDialog)
updateNotification.show()
Expand All @@ -218,7 +218,7 @@ function onUpdateDownloaded (ctx, { version /*, releaseNotes */ }) {
// We have a new version that we did not tried to install previously
// Let's go ahead and restart the app to update
updateNotification = new Notification({
title: 'Restarting Filecoin Station',
title: 'Restarting Checker',
body: `Updating to version ${version}.`
})
updateNotification.show()
Expand Down

0 comments on commit 618f696

Please sign in to comment.