1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-27 21:00:08 -07:00

Merge pull request #73 from pavlobu/no-pulse

No pulse animation
This commit is contained in:
Pavlo Buidenkov 2021-01-29 12:22:29 +02:00 committed by GitHub
commit 4ca0f1d420
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 8 deletions

View File

@ -20,7 +20,7 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: Deskreen Release ${{ github.ref }}
draft: false
draft: true
prerelease: false
release:
@ -35,7 +35,7 @@ jobs:
- os: windows-2019
artifact_name: 'release/{*.msi,*.exe,*.blockmap,*.yml}'
- os: macos-10.15
artifact_name: 'release/{*.zip,*.dmg,*.blockmap,*.yml}'
artifact_name: 'release/{*.dmg,*.blockmap,*.yml}'
steps:
- name: Checkout code

View File

@ -70,7 +70,7 @@ export default function ColorlibStepIcon(props: StepIconPropsDeskreen) {
className={`${clsx(classes.root, {
[classes.active]: active,
[classes.completed]: completed,
})} ${active ? 'active-stepper-pulse-icon' : ''}`}
})}`}
>
{icons[String(icon)]}
</div>

2
app/package-lock.json generated
View File

@ -1,5 +1,5 @@
{
"name": "Deskreen",
"version": "1.0.2",
"version": "1.0.3",
"lockfileVersion": 1
}

View File

@ -1,7 +1,7 @@
{
"name": "deskreen",
"productName": "Deskreen",
"version": "1.0.2",
"version": "1.0.3",
"description": "Deskreen turns any device into a secondary screen for your computer",
"main": "./main.prod.js",
"author": {

View File

@ -1,7 +1,7 @@
{
"name": "deskreen",
"productName": "Deskreen",
"version": "1.0.2",
"version": "1.0.3",
"description": "Deskreen turns any device into a secondary screen for your computer",
"scripts": {
"build": "yarn build-client && yarn build-main && yarn build-renderer",
@ -70,6 +70,7 @@
"build": {
"productName": "Deskreen",
"appId": "com.pavlobu.Deskreen",
"copyright": "Copyright © 2020-present Pavlo (Paul) Buidenkov",
"files": [
"dist/",
"node_modules/",
@ -98,9 +99,13 @@
"win": {
"target": [
"nsis",
"msi"
"msi",
"portable"
]
},
"portable": {
"artifactName": "${name}_${version}_Windows_portable.exe"
},
"linux": {
"target": [
"deb",
@ -136,7 +141,7 @@
"url": "https://github.com/pavlobu"
}
],
"license": "MIT",
"license": "AGPL-3.0 License",
"bugs": {
"url": "https://github.com/pavlobu/deskreen/issues"
},