Skip to content
This repository has been archived by the owner on Mar 12, 2019. It is now read-only.

Commit

Permalink
Added version to menu
Browse files Browse the repository at this point in the history
More nomenclature changes
  • Loading branch information
howleysv committed Dec 19, 2017
1 parent 5771517 commit f704248
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,15 @@ const store = new Store({ name: is.development ? 'onyx-dev' : 'onyx' })

const menu = Menu.buildFromTemplate([
{
label: is.macos ? 'Onyx' : 'File',
label: is.macos ? app.getName() : 'File',
submenu: [
{
label: 'v' + app.getVersion(),
enabled: false,
},
{
type: 'separator',
},
{
label: 'Reset',
click: (item, focusedWindow) => {
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Mainframe",
"name": "Mainframe-Alpha",
"version": "0.4.1",
"description": "Decentralized messaging application based on PSS",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion electron-builder.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appId": "com.mainframe.onyx",
"productName": "Onyx",
"productName": "Mainframe Alpha",
"artifactName": "${productName}.${ext}",
"directories": {
"buildResources": "assets"
Expand Down
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Mainframe</title>
<title>Mainframe Alpha</title>
</head>
<body>
<noscript>
Expand Down

0 comments on commit f704248

Please sign in to comment.