From 61994554bf78cada062be5a05cdb0d9751f4a747 Mon Sep 17 00:00:00 2001
From: Toinane A mininal but complete colorpicker desktop app Modern and powerful color management software
Colorpicker
-
+ Please connect to Crowdin and join the project, your contribution is highly appreciated! 👍 +
+ +--- Colorpicker is a desktop tool with _Electron_ to get and save colors code quickly for _OSX_, _Windows_ and _Linux_! @@ -30,14 +39,14 @@ Colorpicker is a desktop tool with _Electron_ to get and save colors code quickl Colorpicker's menu come with a lot of cool features : -- [Pin](#pin): pin Colorpicker to the foreground; -- [Picker](#picker): open an eyedropper who can pick a color from your desktop; -- [Colorsbook](#colorsbook): open Colorsbook, a color manager; -- [Shading](#shading): show three bar of shading — hue bar, natural bar and lightness bar; -- [Clean Vue](#clean-vue): unshow menu, ranges and inputs; -- [Magic color](#magic-color): show colors from the clipboard; -- [Random](#random): show a random color; -- [Settings](#settings): open the preferences panel. +- [Pin](#pin): pin Colorpicker to the foreground; +- [Picker](#picker): open an eyedropper who can pick a color from your desktop; +- [Colorsbook](#colorsbook): open Colorsbook, a color manager; +- [Shading](#shading): show three bar of shading — hue bar, natural bar and lightness bar; +- [Clean Vue](#clean-vue): unshow menu, ranges and inputs; +- [Magic color](#magic-color): show colors from the clipboard; +- [Random](#random): show a random color; +- [Settings](#settings): open the preferences panel. ## Pin @@ -106,8 +115,7 @@ The settings menu allows you to customize your Colorpicker, I let you discover i # Download -- You can download the [latest release on the website!](https://colorpicker.fr) -- Or [on GitHub releases here.](https://github.com/Toinane/colorpicker/releases) +- You can download [on GitHub releases here.](https://github.com/Toinane/colorpicker/releases) ## Want to support me? @@ -115,35 +123,51 @@ You can [buy me a coffee here](https://toinane.itch.io/colorpicker)! Thank you! #### **_Happy Design !_** -# Developers +# Development -### Changelog +### Prerequisites -See [changelog here](changelog.md). +#### Windows + +You'll need to install Visual Studio Installer and install Development with C++ module. + +Install latest Python version. + +#### MacOS + +You'll need the latest Xcode Command Line Tools installed. + +Install latest Python version. + +#### Linux + +Install libxtst-dev libpng++-dev package: +`apt-get install libxtst-dev libpng++-dev` + +Install latest Python version if already installed. ### How to compile -- Install dependencies: +1. Install dependencies: ```shell -yarn +npm install ``` -- To build C/C++ modules to the correct Electron version, use: +2. Rebuild C/C++ modules to the correct Electron version: ```shell -yarn rebuild +npm run rebuild ``` -- To build a new version: +3. Launch Colorpicker in development mode: ```shell -# You can build nightly & release only for your current OS. -# i.e. you can't build a OSX version if you use a Windows +npm start +``` -# build a nightly version -yarn nightly +4. To build a new version: -# build a release version -yarn release +```shell +npm run release ```