Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v0.1.0 #1

Merged
merged 22 commits into from
Feb 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.DS_Store
node_modules
.sass-cache
package-lock.json
src/assets/svg-sprite-symbol/
.tarima
.nvmrc
.ruby-version
.DS_Store
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Changelog

## [Unreleased]

## [0.1.0] [#1](../../pull/1) - 2020-02-18
### Added
- HWB color model
- feColorMatrix’s values
- Default initial `#FFFFFF` color
- History navigation
- Random color button
- [`Simonwep/pickr`](https://github.com/Simonwep/pickr) color picker
- [`sindresorhus/copy-text-to-clipboard`](https://github.com/sindresorhus/copy-text-to-clipboard)
- Copied to clipboard feedback
- CSS Variables to update the UI
- Favicons and site.webmanifest

### Changed
- Start using [`tacoss/tarima`](https://github.com/tacoss/tarima) for pre-processing
- [`postcss`](https://github.com/postcss/postcss), [`rollup`](https://github.com/rollup/rollup), [`buble`](https://github.com/bublejs/buble)
- Start using [`Qix-/color`](https://github.com/Qix-/color) for color conversion and manipulation
- Overall design

### Removed
- Grunt, bower and [`noeldelgado/values.js`](https://github.com/noeldelgado/values.js)

## 2014-09-16
- [hsl support](10daf75e196ef6fb45dc78857a81309d2155cda6)

## [1c53e9d](https://github.com/noeldelgado/yacc/commit/1c53e9d2426c8e4fcd5ef9a062fc9baaca8039a5) - 2014-03-04
- hash based url
- disable HSL input

## 2013-10-03
- Initial release

[Unreleased]: https://github.com/noeldelgado/yacc/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/noeldelgado/yacc/releases/tag/v0.1.0
44 changes: 0 additions & 44 deletions Gruntfile.js

This file was deleted.

30 changes: 26 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
## Color Converter
## yet another color converter

Convert HEX/RGB/HSL color formats.
Convert HEX/RGB/HSL/HWB color models plus feColorMatrix’s values

https://noeldelgado.github.io/color-converter/
https://noeldelgado.github.io/yacc/

This micro tool was built using [Values.js](https://github.com/noeldelgado/Values.js).
### Development
Start server on port 3000 with livereload watching files on the `src` folder

```sh
npm install
npm start
```

#### SVG sprite
If you need to add a new `.svg` files to the svg sprite located after the `body` tag:

- Place your `.svg`’s files on the `src/assets/svg` folder
- Make sure you have `svg-sprite` installed, e.i.: `npm i -g svg-sprite`
- Run npm script `npm run svg`
- That should generate a new file at `src/assets/svg-sprite-symbol/svg/sprite.symbol.svg` (ignored by `.gitignore`’s rule)
- Copy the contents of that file and replace the `svg` line after the `body` 🙈

### Build
To minify the `build/{js,css}/main.<ext>` files. Make sure you have `uglify` installed, e.i.: `npm i -g uglify` and then

```sh
npm run build
```
21 changes: 0 additions & 21 deletions bower.json

This file was deleted.

37 changes: 0 additions & 37 deletions bower_components/syringe.js/.bower.json

This file was deleted.

Loading