Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #160 from urbit/fixing-win-build
Browse files Browse the repository at this point in the history
Fixing win build
  • Loading branch information
arthyn committed Dec 24, 2021
2 parents cc69088 + 10eaca0 commit d606f78
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ Formerly called Taisho, Port allows you to spin up, access, and manage your ship

## Installing

Head over to [releases](https://github.com/arthyn/port/releases) and download the installer for your operating system from the latest release. Currently available for all major OSes.
Head over to [releases](https://github.com/urbit/port/releases) and download the installer for your operating system from the latest release. Currently available for all major OSes.

## Screenshots
![](https://hmillerdev.nyc3.digitaloceanspaces.com/nocsyx-lassul/taisho-welcome.jpg)
Expand Down
2 changes: 1 addition & 1 deletion forge.config.js
Expand Up @@ -98,7 +98,7 @@ module.exports = {
name: '@electron-forge/publisher-github',
config: {
repository: {
owner: 'arthyn',
owner: 'urbit',
name: 'port'
},
draft: true
Expand Down
8 changes: 4 additions & 4 deletions package.json
@@ -1,16 +1,16 @@
{
"name": "port",
"productName": "Port",
"version": "1.7.0",
"version": "1.7.1",
"description": "A ship runner and manager for Urbit OS",
"repository": {
"type": "git",
"url": "https://github.com/arthyn/port.git"
"url": "https://github.com/urbit/port.git"
},
"keywords": [],
"author": {
"name": "Hunter Miller",
"email": "hunter@hmiller.dev"
"name": "Urbit Foundation",
"email": "dev@urbit.org"
},
"license": "MIT",
"main": ".webpack/main",
Expand Down
2 changes: 1 addition & 1 deletion src/background/services/pier-service.ts
Expand Up @@ -16,7 +16,7 @@ import mv from 'mv'
import { each } from 'async';
import find from 'find-process';

const IS_PROD = process.env.NODE_ENV === 'production';
const IS_PROD = !isDev;
const platform = getPlatform();

const asyncRm = promisify(unlink);
Expand Down
2 changes: 1 addition & 1 deletion src/main/index.ts
Expand Up @@ -15,7 +15,7 @@ let mainWindow: BrowserWindow;

if (!isDev) {
const server = 'https://update.electronjs.org'
const feed = `${server}/arthyn/port/${process.platform}-${process.arch}/${app.getVersion()}`
const feed = `${server}/urbit/port/${process.platform}-${process.arch}/${app.getVersion()}`

autoUpdater.setFeedURL({
url: feed
Expand Down
4 changes: 2 additions & 2 deletions src/main/menu.ts
Expand Up @@ -247,13 +247,13 @@ export function createMenu({
{
label: `Port v${pjson.version}`,
click: () => {
shell.openExternal('https://github.com/arthyn/port');
shell.openExternal('https://github.com/urbit/port');
},
},
{
label: 'Report an Issue',
click: () => {
shell.openExternal('https://github.com/arthyn/port/issues');
shell.openExternal('https://github.com/urbit/port/issues');
},
},
],
Expand Down

0 comments on commit d606f78

Please sign in to comment.