-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/nulled666/nppqcp.git
- Loading branch information
Showing
1 changed file
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
**A color picker plugin for Notepad++** | ||
The C++ Color Picker class can also be reused in other programs. | ||
|
||
Download from [[Amazon Mirror]](https://s3-ap-southeast-1.amazonaws.com/nppqcp/nppqcp-1.2.0.zip) | ||
[[Fosshub.com Mirror]](http://code.fosshub.com/Quick-Color-Picker-for-Notepad/downloads) | ||
[[Download from Amazon Mirror]](https://s3-ap-southeast-1.amazonaws.com/nppqcp/nppqcp-2.0.zip) | ||
|
||
|
||
v1.2.0 | ||
* Fixed a critical crash on new versions of Notepad++ | ||
* Added option for disable color highlight | ||
v2.0 | ||
* Fixed crash problem cause by Scintilla RegExp search interface | ||
* Use self-drawn underline marker to avoid comflict with other plugins & features | ||
* Added Color Picker & Screen Picker commands for hotkey assignment | ||
* Added HSL & HSLA color format support | ||
* Added transparent color support (with adjustment) | ||
* Use SPACE key toggle mouse speed in Screen Picker for better aiming | ||
* Slightly enlarged UI elements | ||
|
||
[View Full Changelog](https://github.com/nulled666/nppqcp/blob/wiki/Changelog.md) | ||
|
||
|
||
![Screenshot](https://s3-ap-southeast-1.amazonaws.com/nppqcp/features-1.2.0.png) | ||
![Screenshot](https://s3-ap-southeast-1.amazonaws.com/nppqcp/features-2.0.png) | ||
|
||
**FEATURES** | ||
|
||
* HEX, RGB, RGBA color code highlight | ||
* supported formats: #ffcc00, rgb(255, 37, 37), rgba(255, 37, 37, 0.5) | ||
* HEX/RGB/RGBA/HSL/HSLA color code highlight | ||
* Double-click activation of color picker | ||
* double-click hex code portion "ffcc00" of hex string | ||
* double-click "rgb" or "rgba" header of rgb colors | ||
* double-click "rgb"/"rgba"/"hsl"/"hsla" header of bracket colors | ||
* Allow assign hotkeys for Color Picker and Screen Picker | ||
* Professional color palette | ||
* same palette layout as in most popular design software | ||
* recent color swatches | ||
* mark current color on palette | ||
* compare new & old colors | ||
* Quick HSL color tuning | ||
* click to fine-tune the Hue, Saturation or Lightness of your color | ||
* Quick HSLA color tuning | ||
* click to fine-tune the Hue, Saturation, Lightness or Transparency of your color | ||
* right-click on palette color to put the color into tuning swatch | ||
* Screen color picker | ||
* hide notepad++ window when pick color | ||
* zoomed aim | ||
* hide notepad++ window while picking color | ||
* zoomed aim, press SPACE to toggle precise aiming mode | ||
* real-time color code display | ||
* Windows color chooser Access | ||
* Access Windows Color Chooser | ||
* recent colors will appear in custom colors list | ||
|
||
**FUTURE PLAN** | ||
|
||
* switch to text style for color code highlight | ||
* auto-complete like behavior | ||
* when user type '#' or 'rgb(' | ||
This project is using https://github.com/kkaefer/css-color-parser-cpp for css color parse. |