Skip to content

Commit

Permalink
v0.0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Feb 4, 2024
1 parent 04da082 commit 0ce8b2b
Show file tree
Hide file tree
Showing 11 changed files with 60 additions and 41 deletions.
27 changes: 25 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,42 @@ root = true

; Always use Unix style new lines with new line ending on every file and trim whitespace
[*]
charset = utf-8 # added
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

; Python: PEP8 defines 4 spaces for indentation
[*.py]
indent_style = space
indent_size = 4


[{src,scripts}/**.{ts,json,js}]
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4


; Salt state files, YAML format, 2 spaces
[*.sls, *.yaml, *.yml]
indent_style = space
indent_size = 2


[*.{md,Rmd,rst}]
trim_trailing_whitespace = false
indent_style = space
indent_size = 2


; The indent size used in the `package.json` file cannot be changed
; https://github.com/npm/npm/pull/3180#issuecomment-16336516
[{.travis.yml,npm-shrinkwrap.json,package.json}]
indent_style = space
indent_size = 4
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.19
0.0.20
4 changes: 0 additions & 4 deletions dist/css/icon.css

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

2 changes: 1 addition & 1 deletion dist/css/icon.min.css

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": "icon.gl",
"version": "0.0.19",
"version": "0.0.20",
"description": "icon.gl is a icon library and framework developed by Scape Agency.",
"keywords": [
"icon.gl",
Expand Down
22 changes: 11 additions & 11 deletions dist/scss/mixins/_font.scss
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@



@include icon_face(
"#{$font_dir}/#{$font_name}",
$font_name,
"",
// 600,
// "normal",
// "#{$font_name} SemiBold",
// "#{$font_name}-SemiBold",
"ttf",
// "otf"
);
// @include icon_face(
// "#{$icon_dir}/#{$icon_name}",
// $icon_name,
// "",
// // 600,
// // "normal",
// // "#{$icon_name} SemiBold",
// // "#{$icon_name}-SemiBold",
// "ttf",
// // "otf"
// );
6 changes: 3 additions & 3 deletions dist/scss/variables/_font.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
// FontFace Variables
// ============================================================================

$font_name: "icongl" !default;
$font_dir: "../font" !default;
$font_hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default;
$icon_name: "icongl" !default;
$icon_dir: "../font" !default;
$icon_hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default;


// Font Formats
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "icon.gl",
"description": "icon.gl is a icon library and framework developed by Scape Agency.",
"version": "0.0.19",
"version": "0.0.20",
"config": {
"version_short": "0.0"
},
Expand Down
6 changes: 3 additions & 3 deletions src/hbs/_font_variables.scss.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
// FontFace Variables
// ============================================================================

$font_name: "{{ name }}" !default;
$font_dir: ".{{ fontsUrl }}" !default;
$font_hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default;
$icon_name: "{{ name }}" !default;
$icon_dir: ".{{ fontsUrl }}" !default;
$icon_hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default;


// Font Formats
Expand Down
22 changes: 11 additions & 11 deletions src/scss/mixins/_font.scss
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@



@include icon_face(
"#{$font_dir}/#{$font_name}",
$font_name,
"",
// 600,
// "normal",
// "#{$font_name} SemiBold",
// "#{$font_name}-SemiBold",
"ttf",
// "otf"
);
// @include icon_face(
// "#{$icon_dir}/#{$icon_name}",
// $icon_name,
// "",
// // 600,
// // "normal",
// // "#{$icon_name} SemiBold",
// // "#{$icon_name}-SemiBold",
// "ttf",
// // "otf"
// );
6 changes: 3 additions & 3 deletions src/scss/variables/_font.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
// FontFace Variables
// ============================================================================

$font_name: "icongl" !default;
$font_dir: "../font" !default;
$font_hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default;
$icon_name: "icongl" !default;
$icon_dir: "../font" !default;
$icon_hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default;


// Font Formats
Expand Down

0 comments on commit 0ce8b2b

Please sign in to comment.