Skip to content

Commit c9fd472

Browse files
committed
Release 0.0.2
1 parent 4f5d9ec commit c9fd472

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
os: [macos-latest]
14+
os: [macos-latest, windows-latest]
1515

1616
steps:
1717
- name: Checkout git repo
@@ -52,4 +52,4 @@ jobs:
5252
# This is used for uploading release assets to github
5353
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5454
run: |
55-
yarn postinstall && yarn build && yarn electron-builder --publish always --win --mac --linux
55+
yarn postinstall && yarn build && yarn electron-builder --publish always

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515

1616
## Download
1717

18-
- For macOS: https://github.com/plainlab/plainprinter/releases
19-
- For Windows: I don't have a Windows device so you have to build it yourself.
18+
- For macOS & Windows: https://github.com/plainlab/plainprinter/releases
2019

2120
---
2221

assets/icon.icns

-15.5 KB
Binary file not shown.

assets/icon.ico

-1.19 KB
Binary file not shown.

assets/icon.png

-5.32 KB
Loading

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"rebuild": "electron-rebuild --parallel --types prod,dev,optional --module-dir src",
1010
"lint": "cross-env NODE_ENV=development eslint . --cache --ext .js,.jsx,.ts,.tsx",
1111
"package": "rm -rf src/dist && yarn build && electron-builder build --publish never --mac",
12-
"release": "rm -rf src/dist && yarn build && electron-builder build --publish always --mac",
12+
"release": "rm -rf src/dist && yarn build && electron-builder build --publish always",
1313
"postinstall": "node -r @babel/register .erb/scripts/CheckNativeDep.js && electron-builder install-app-deps && yarn cross-env NODE_ENV=development webpack --config ./.erb/configs/webpack.config.renderer.dev.dll.babel.js && opencollective-postinstall && yarn-deduplicate yarn.lock",
1414
"start": "node -r @babel/register ./.erb/scripts/CheckPortInUse.js && yarn start:renderer",
1515
"start:main": "cross-env NODE_ENV=development electron -r ./.erb/scripts/BabelRegister ./src/main.dev.ts",
@@ -97,7 +97,7 @@
9797
},
9898
"author": {
9999
"name": "PlainLab",
100-
"email": "[email protected]",
100+
"email": "[email protected]",
101101
"url": "https://plainlab.github.io"
102102
},
103103
"license": "GPL-3.0-only",

src/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "plainprinter",
33
"productName": "PlainPrinter",
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"description": "Plain screen printer",
66
"main": "./main.prod.js",
77
"author": {
88
"name": "PlainLab",
9-
"email": "[email protected]",
9+
"email": "[email protected]",
1010
"url": "https://github.com/plainlab"
1111
},
1212
"scripts": {

0 commit comments

Comments
 (0)