- Upgrade pigments version. Includes fixes for #74)
- Fix deprecations on editor methods (8386e01e)
- Fix missing color search for restored text editors (f189b73d)
- Prevent errors in markers update when res is null (cfe9dbfa)
- Fix remaining deprecations (36179390)
- Fix error raised when closing an editor (f9914482)
- Fix colors marker not rendered when editor is not active when opened (5f291f66)
- Add missing CHANGELOG entries for v3.0.0.
- The major changes in v3.0.0 concerns the view appended to the DOM. Now views are handled through custom elements instead of
space-pen
views.
- Fix marker display issue when scrolling (01aba50e)
- Fix palette event deprecation (7e905df5)
- Fix error raised when closing the last editor of a pane (8ee359eb)
- Upgrade to pigments v3.0.4.
- Change how finder package is required in models (147647a2)
- Upgrade to pigments v3.0.3.
- Add a more detailed description of the
excludedGrammars
setting.
- Rebuild markers on editor config changes (845b8d65, #32)
- Fix region styles when shadow DOM is enabled (06c0f4e2)
- Fix broken access to scope in latest Atom (ffb4468d)
- Fix issue with variable names in pigments (51e4a719)
- Fix access to a removed private method (f12d0a2f)
- Fix engine version (52be0d14)
- Add a setting to exclude specified grammar from highlighting (724ff88a)
By setting a list of grammar scopes in theexcludedGrammars
setting, the corresponding files wonβt display any color highlights.
- Fix broken dot marker update since API changes (a9b97049)
- Fix aliased color at n+2 not detected (6f446e79)
- Prevent works when no markers was found (352c9cf1)
- Fix warning due to deprecated prefixed function (49bd8c6e)
- Add support of pigments 2.0.0 and Atom 0.120.0 (78d0db5f)
- Fix invalid layout when adding removing a color in a line (a185707c)
- Fix missing match when a color is followed by a class selector (8c482feb)
- Fix invalid lighten/darken operation for less/sass (abe33/pigments@8ac0214d, abe33/atom-color-highlight#26)
- Fix css color function raising exception when invalid (abe33/pigments@a883ccad, abe33/atom-color-highlight#27)
- Fix broken variable handling at n+1 (abe33/pigments@f34be5b0, #23)
- Fix creating markers for invalid colors (dc204b98)
- Implement masking markers present in strings (7691338b)
- Add support for variables in color functions (abe33/pigments@ee67434a)
Includes:- Any parameter can now be a variable
- Any missing variable will mark the color as invalid
- Add support for css 4
gray
functional notation. (abe33/pigments@f8f0d212) - Add support for the
hwb
color model the corresponding css4 function. (abe33/pigments@b64d9574, abe33/atom-color-highlight#20)
- Fix z-index issues with popover lists (ea13b1d1, #17)
- Fix missing getBufferRange method on dot markers (4d25639b, #19)
- Implement masking markers present in comments (cb4d5529, #16)
- Implement dot markers on end of lines (98d7e33d, #11)
- Fix views and models access by editors on react (3f0c77eb)
- Add screenshot for live update feature (259574ea)
- Add live update of colors derived of a variable from same file (6ab0d54a)
- Implement support for color provided by pigments during scan (dedf26ff)
It enables parsing of colors using variables defined in the same file.
- Fix broken view when react editor is enabled (4be2c7b3)
- meta: updates CHANGELOG with latest changes
- markers: handles properly declarations that spans on several lines (349ada974e, #8)
- expressions:
- uses pigments module and removes previous color model
- uses project-palette-finder color model if available
- docs: updates the changelog
- dependencies: updates oniguruma version from
1.x
to2.x
- functions: adds support for the following color functions:
- tint (stylus)
- shade (stylus)
- lighten
- darken
- transparentize
- opacify
- grayscale
- saturate
- desaturate
- adjust-hue
- invert
- mix (sass/less)
- fadein (less)
- fadeout (less)
- greyscale (less)
- expressions:
- adds support for hsv and hsva expression
- adds support for
darken
,lighten
andtransparentize
functions
- expressions: previously hsl expressions was treated as in hsv color space