Skip to content

Commit

Permalink
Release 2.0.3 (#59)
Browse files Browse the repository at this point in the history
* update dependencies & add instructions to rebuild native module from source

* fix: windows version

* fix: linux require picker

* feat: add picker for linux
  • Loading branch information
Toinane authored Jan 9, 2020
1 parent bcfc962 commit a52dfe2
Show file tree
Hide file tree
Showing 15 changed files with 6,257 additions and 5,965 deletions.
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
runtime = electron
target = 1.7.10
target = 7.1.7
target_arch = x64
disturl = https://atom.io/download/atom-shell
export npm_config_runtime=electron
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ Colorpicker's menu come with a lot of cool features :
With Pin, you can bring Colorpicker to the foreground. This makes it convenient to work quickly with different applications at the same time.

## Picker
#### Note: This feature isn't available for Linux. See [#18](https://github.com/Toinane/colorpicker/issues/18)
![Picker gif](https://github.com/Toinane/colorpicker-website/blob/master/gifs/picker.gif?raw=true)

The Picker allows you to quickly retrieve a color anywhere on the screen. Whether it's on your browser, Photoshop, or whatever.
Expand Down
70 changes: 36 additions & 34 deletions colorpicker-build-nightly.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,39 @@
{
"appId": "com.electron.colorpicker.nightly",
"productName": "ColorpickerNightly",
"compression": "store",
"copyright": "Copyright @Toinane",
"directories": {
"output": "out"
},
"files": [
"**/*"
],
"mac": {
"category": "public.app-category.graphics-design",
"icon": "build/icon-nightly.icns",
"type": "development"
},
"dmg": {
"icon": "build/VolumeIcon-nightly.icns",
"background": "build/background-nightly.png",
"window": {
"width": 540,
"height": 380
"appId": "com.electron.colorpicker.nightly",
"productName": "ColorpickerNightly",
"compression": "store",
"copyright": "Copyright @Toinane",
"buildDependenciesFromSource": true,
"directories": {
"output": "out"
},
"files": ["**/*"],
"mac": {
"category": "public.app-category.graphics-design",
"icon": "build/icon-nightly.icns",
"type": "development"
},
"dmg": {
"icon": "build/VolumeIcon-nightly.icns",
"background": "build/background-nightly.png",
"window": {
"width": 540,
"height": 380
}
},
"linux": {
"icon": "./build",
"synopsis": "Colorpicker App",
"category": "Graphics"
},
"snap": {
"plugs": ["default", "desktop"]
},
"win": {
"icon": "build/icon-nightly.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"linux": {
"icon": "./build",
"synopsis": "Colorpicker App",
"category": "Graphics"
},
"win": {
"icon": "build/icon-nightly.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
76 changes: 36 additions & 40 deletions colorpicker-build.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,39 @@
{
"appId": "com.electron.colorpicker",
"productName": "Colorpicker",
"compression": "maximum",
"copyright": "Copyright @Toinane",
"directories": {
"output": "out"
},
"files": [
"**/*"
],
"mac": {
"category": "public.app-category.graphics-design",
"icon": "build/icon.icns",
"type": "distribution"
},
"dmg": {
"icon": "build/VolumeIcon.icns",
"background": "build/background.png",
"window": {
"width": 540,
"height": 380
"appId": "com.electron.colorpicker",
"productName": "Colorpicker",
"compression": "maximum",
"copyright": "Copyright @Toinane",
"buildDependenciesFromSource": true,
"directories": {
"output": "out"
},
"files": ["**/*"],
"mac": {
"category": "public.app-category.graphics-design",
"icon": "build/icon.icns",
"type": "distribution"
},
"dmg": {
"icon": "build/VolumeIcon.icns",
"background": "build/background.png",
"window": {
"width": 540,
"height": 380
}
},
"linux": {
"icon": "./build",
"synopsis": "Colorpicker App",
"category": "Graphics"
},
"snap": {
"plugs": ["default", "desktop"]
},
"win": {
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"linux": {
"icon": "./build",
"synopsis": "Colorpicker App",
"category": "Graphics"
},
"snap": {
"plugs": [
"default",
"desktop"
]
},
"win": {
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
Loading

0 comments on commit a52dfe2

Please sign in to comment.