Skip to content

Commit

Permalink
Prep for 2.5.0 release
Browse files Browse the repository at this point in the history
- Bump rev
- Upgrade doc theme
- Restructure docs
- Fix lint
- Deploy docs on release
  • Loading branch information
facelessuser committed May 27, 2017
1 parent 2ced99c commit 2261b21
Show file tree
Hide file tree
Showing 35 changed files with 62 additions and 222 deletions.
13 changes: 12 additions & 1 deletion .travis.yml
Expand Up @@ -17,5 +17,16 @@ addons:
- aspell-en
script:
- py.test .
- nosetests .
- flake8 .
- python tests/spellcheck.py
- mkdocs build --clean --verbose --strict
deploy:
- provider: pages
github_token: $GITHUB_TOKEN
name: $GITHUB_USER
email: $GITHUB_EMAIL
skip_cleanup: true
local_dir: site
on:
tags: true
repo: facelessuser/ColorHelper
9 changes: 9 additions & 0 deletions CHANGES.md
@@ -1,3 +1,12 @@
# ColorHelper 2.5.0

> Released May, 27, 2017
- **NEW**: Use the newer API for opening settings [#78](https://github.com/facelessuser/ColorHelper/pull/78).
- **NEW**: Require ST 3124+ (this will also be limited in Package Control soonish).
- **NEW**: Add basic support for Less [#92](https://github.com/facelessuser/ColorHelper/pull/92).
- **FIX**: Small fonts are not as small now.

# ColorHelper 2.4.2

> Released Feb 2, 2017
Expand Down
10 changes: 7 additions & 3 deletions README.md
Expand Up @@ -2,15 +2,17 @@
[![Package Control Downloads][pc-image]][pc-link]
![License][license-image]
# ColorHelper

ColorHelper makes work with colors easier by providing inline color previews in your documents (ST3 build 3118+) and offers tooltips with color previews of stylesheet colors, provides color translation, and allows the storing and accessing of favorite colors in color palettes. Most features are optionally configurable. For the most part, these tooltips should show any time the cursor is in a CSS, SCSS, or SASS color. It should also appear when in HTML style attributes.

![Screenshot1](docs/images/composite.png)
![Screenshot1](docs/src/markdown/images/composite.png)

![Screenshot2](docs/images/color_picker.png)
![Screenshot2](docs/src/markdown/images/color_picker.png)

![Screencap3](docs/images/inline_preview.gif)
![Screencap3](docs/src/markdown/images/inline_preview.gif)

# Features

- Inline color previews.
- Useful tooltip popups that show the previews of selected colors.
- Support colors in CSS, SCSS, SASS, and HTML attributes.
Expand All @@ -21,9 +23,11 @@ ColorHelper makes work with colors easier by providing inline color previews in
- Can optionally treat hexa format (#RRGGBBAA) as #AARRGGBB.

# Documentation

http://facelessuser.github.io/ColorHelper/

# License

ColorHelper is released under the MIT license.

Copyright (c) 2015 - 2017 Isaac Muse <isaacmuse@gmail.com>
Expand Down
202 changes: 0 additions & 202 deletions doc_theme/extra.css

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions docs/contributing.md → docs/src/markdown/contributing.md
@@ -1,3 +1,5 @@
# Contributing &amp; Support

## Overview

Sublime\ Versions | Description
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 2 additions & 0 deletions docs/index.md → docs/src/markdown/index.md
@@ -1,3 +1,5 @@
# About Markdown Popups

## ColorHelper

ColorHelper makes work with colors easier by providing inline color previews in your documents (ST3 build 3118+) and offers tooltips with color previews of stylesheet colors, provides color translation, and allows the storing and accessing of favorite colors in color palettes. Most features are optionally configurable. For the most part, these tooltips should show any time the cursor is in a CSS, SCSS, or SASS color. It should also appear when in HTML style attributes.
Expand Down
3 changes: 3 additions & 0 deletions docs/installation.md → docs/src/markdown/installation.md
@@ -1,4 +1,7 @@
# Installation

## Package Control

The recommended way to install ColorHelper is via [Package Control](https://packagecontrol.io/). Package Control will install the correct branch on your system and keep it up to date.

---
Expand Down
2 changes: 2 additions & 0 deletions docs/license.md → docs/src/markdown/license.md
@@ -1,3 +1,5 @@
# License

ColorHelper is released under the MIT license.

Copyright (c) 2015 - 2017 Isaac Muse <isaacmuse@gmail.com>
Expand Down
4 changes: 3 additions & 1 deletion docs/usage.md → docs/src/markdown/usage.md
@@ -1,4 +1,6 @@
## General Usage
# User Guide

## Overview

ColorHelper is a CSS/SCSS/Sass tooltip. When the cursor is on a CSS color, the tooltip will appear. When entering a color into a supported file, the color palette panel will be triggered so you can optionally insert a color from a saved palette. The panel will popup after either: `#`, `rgb(`, `rgba(`, `hsl(` or `hsla(`.

Expand Down

0 comments on commit 2261b21

Please sign in to comment.