Skip to content

Commit

Permalink
v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Jan 3, 2024
1 parent b673763 commit 2c39b96
Show file tree
Hide file tree
Showing 14 changed files with 52 additions and 55 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.6
0.0.7
49 changes: 24 additions & 25 deletions dist/md/hue.gl.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hue.gl",
"version": "0.0.6",
"version": "0.0.7",
"description": "hue.gl is a colour palette developed by Scape Agency.",
"keywords": [
"hue.gl",
Expand Down
2 changes: 1 addition & 1 deletion dist/py/hue.gl.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# =============================================================================
#
# hue.gl
# 0.0.6
# 0.0.7
#
# =============================================================================

Expand Down
2 changes: 1 addition & 1 deletion dist/rcpx/hue.gl.rcpx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE palette PUBLIC "-//Kreative//DTD ResplendentColor 1.0//EN" "http://www.kreativekorp.com/dtd/rcpx.dtd">
<!-- hue.gl, version: 0.0.6 - https://www.hue.gl/ -->
<!-- hue.gl, version: 0.0.7 - https://www.hue.gl/ -->
<palette name="Open Color"
orientation="square"
hwidth="241" hheight= "85"
Expand Down
2 changes: 1 addition & 1 deletion dist/scss/hue.gl.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// ============================================================================
//
// hue.gl
// 0.0.6
// 0.0.7
//
// ============================================================================

Expand Down
2 changes: 1 addition & 1 deletion dist/styl/hue.gl.styl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// ============================================================================
//
// hue.gl
// 0.0.6
// 0.0.7
//
// ============================================================================

Expand Down
2 changes: 1 addition & 1 deletion dist/tex/hue.gl.tex
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
% =============================================================================
%
% hue.gl
% 0.0.6
% 0.0.7
%
% =============================================================================

Expand Down
2 changes: 1 addition & 1 deletion dist/ts/hue.gl.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// ============================================================================
//
// hue.gl
// 0.0.6
// 0.0.7
//
// ============================================================================

Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hue.gl",
"description": "hue.gl is a colour palette developed by Scape Agency.",
"version": "0.0.6",
"version": "0.0.7",
"config": {
"version_short": "0.0"
},
Expand Down Expand Up @@ -83,8 +83,8 @@
"eslint-plugin-prettier": "^5.0.1",
"grid.gl": "^0.0.1",
"html-webpack-plugin": "^5.5.3",
"hue.gl": "^0.0.4",
"icon.gl": "^0.0.1",
"hue.gl": "^0.0.6",
"icon.gl": "^0.0.3",
"loop.gl": "^0.0.1",
"mini-css-extract-plugin": "^2.7.6",
"pack.gl": "^0.0.24",
Expand Down
4 changes: 2 additions & 2 deletions script/js/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions script/ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,11 @@ async function main() {
// --------------------------------------------------------------------

const directoryCopier = new DirectoryCopier();
await directoryCopier.copyFiles(
await directoryCopier.recursiveCopy(
CONFIG.path.ts_input,
CONFIG.path.ts_output,
);
await directoryCopier.copyFiles(
await directoryCopier.recursiveCopy(
CONFIG.path.scss_input,
CONFIG.path.scss_output,
);
Expand Down
8 changes: 3 additions & 5 deletions src/jinja/hue.gl.md.jinja
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
| | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
{% for group_name, group in colors -%}
| {{ group_name }} |
{%- for color_name, color in group %} <img src="/dist/png/swatch/{{ color_name }}.png" alt="{{ color_name }}"> {{ color_name }} |{% endfor %}
| **{{ group_name }}** |
{%- for color_name, color in group %} <img src="/dist/png/swatch/{{ color_name }}.png" alt="{{ color_name }}"><small>{{ color_name }}</small> |{% endfor %}

{% endfor %}

{# .slice(1, -1) #}
{% endfor %}

0 comments on commit 2c39b96

Please sign in to comment.