Skip to content

Commit

Permalink
Merge pull request #32 from Autre31415/update-dependencies
Browse files Browse the repository at this point in the history
0.4.3
  • Loading branch information
Autre31415 authored Apr 25, 2018
2 parents dbeef06 + 2b952a1 commit 714cd93
Show file tree
Hide file tree
Showing 6 changed files with 2,990 additions and 857 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Desktop application for [Glyphr Studio](http://glyphrstudio.com) built in [Elect

## Download

- [Linux 32-bit](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.2/Glyphr.Studio-linux-ia32.zip)
- [Linux 64-bit](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.2/Glyphr.Studio-linux-x64.zip)
- [macOS](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.2/Glyphr.Studio-darwin-x64.zip)
- [Windows 32-bit](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.2/Glyphr.Studio-win32-ia32.zip)
- [Windows 64-bit](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.2/Glyphr.Studio-win32-x64.zip)
- [Linux 32-bit](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.3/Glyphr.Studio-linux-ia32.zip)
- [Linux 64-bit](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.3/Glyphr.Studio-linux-x64.zip)
- [macOS](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.3/Glyphr.Studio-darwin-x64.zip)
- [Windows 32-bit](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.3/Glyphr.Studio-win32-ia32.zip)
- [Windows 64-bit](https://github.com/glyphr-studio/Glyphr-Studio-Desktop/releases/download/v0.4.3/Glyphr.Studio-win32-x64.zip)

## How to run from source

Expand Down Expand Up @@ -39,19 +39,19 @@ npm i

Then:

All Platforms: `npm run build`
All Platforms: `npm run package`

64-Bit Platforms Only: `npm run build -- -64`
64-Bit Platforms Only: `npm run package -- --64`

Linux 32-Bit: `npm run build -- -linux32`
Linux 32-Bit: `npm run package -- --linux32`

Linux 64-Bit: `npm run build -- -linux`
Linux 64-Bit: `npm run package -- --linux`

macOS: `npm run build -- -mac`
macOS: `npm run package -- --mac`

Windows 32-Bit: `npm run build -- -win32`
Windows 32-Bit: `npm run package -- --win32`

Windows 64-Bit: `npm run build -- -win`
Windows 64-Bit: `npm run package -- --win`

## Troubleshooting

Expand Down
14 changes: 7 additions & 7 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ const template = [
{
label: 'Edit',
submenu: [
{ label: 'Undo', accelerator: 'CmdOrCtrl+Z', selector: 'undo:' },
{ label: 'Redo', accelerator: 'Shift+CmdOrCtrl+Z', selector: 'redo:' },
{ type: 'separator' },
{ label: 'Cut', accelerator: 'CmdOrCtrl+X', selector: 'cut:' },
{ label: 'Copy', accelerator: 'CmdOrCtrl+C', selector: 'copy:' },
{ label: 'Paste', accelerator: 'CmdOrCtrl+V', selector: 'paste:' },
{ label: 'Select All', accelerator: 'CmdOrCtrl+A', selector: 'selectAll:' }
{ label: 'Undo', accelerator: 'CmdOrCtrl+Z', selector: 'undo:' },
{ label: 'Redo', accelerator: 'Shift+CmdOrCtrl+Z', selector: 'redo:' },
{ type: 'separator' },
{ label: 'Cut', accelerator: 'CmdOrCtrl+X', selector: 'cut:' },
{ label: 'Copy', accelerator: 'CmdOrCtrl+C', selector: 'copy:' },
{ label: 'Paste', accelerator: 'CmdOrCtrl+V', selector: 'paste:' },
{ label: 'Select All', accelerator: 'CmdOrCtrl+A', selector: 'selectAll:' }
]
},
{
Expand Down
Loading

0 comments on commit 714cd93

Please sign in to comment.