From 7ac254511569479a53b643c642d402a9c6cd909e Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Thu, 4 Dec 2014 00:59:13 -0500 Subject: [PATCH 1/5] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 33da336e3..92a0ba648 100755 --- a/README.md +++ b/README.md @@ -48,8 +48,6 @@ You may also prefer to use individual components found in `dist/components` to r ``` -If you are unable to run build tools, for whatever reason, you can create a custom build by simply copying and pasting your necessary components into an online minifier](http://marijnhaverbeke.nl/uglifyjs) - ### Recommended Usage (Themed) From 139adda3cc7584f075cf2c073a95d5cb2c0113b8 Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Thu, 4 Dec 2014 01:02:14 -0500 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 92a0ba648..6ef8e0a21 100755 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Key Features * 3 Levels of Variable Inheritance (Similar to SublimeText) * Built using EM values for responsive design -> Semantic UI is now at 1.0, be sure to check out our [release notes](https://github.com/Semantic-Org/Semantic-UI/blob/master/RELEASE-NOTES.md) for changes from the pre-release. +> Semantic UI is now at 1.0, be sure to check out our [release notes](https://github.com/Semantic-Org/Semantic-UI/blob/master/RELEASE-NOTES.md#version-100---november-24-2014) for changes from the pre-release. ## Community Support From d52eaa7c2e275e12de7296b4fe3116fb00241661 Mon Sep 17 00:00:00 2001 From: Gabor Meszoly Date: Thu, 4 Dec 2014 10:45:59 +0100 Subject: [PATCH 3/5] Google Fonts Character Subset Param --- src/themes/default/globals/site.variables | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/themes/default/globals/site.variables b/src/themes/default/globals/site.variables index 5d87d4b47..654fb1c0f 100644 --- a/src/themes/default/globals/site.variables +++ b/src/themes/default/globals/site.variables @@ -13,9 +13,10 @@ @importGoogleFonts : true; @googleFontName : 'Lato'; @googleFontSizes : '400,700,400italic,700italic'; +@googleSubset : 'latin'; @googleProtocol : 'http://'; -@googleFontRequest : '@{googleFontName}:@{googleFontSizes}'; +@googleFontRequest : '@{googleFontName}:@{googleFontSizes}&subset=@{@googleSubset}'; /*------------------- Base Sizes From a5e614a1f8f5f5db4a926a30c391c7bf3e5b932a Mon Sep 17 00:00:00 2001 From: Luca Cioria Date: Fri, 5 Dec 2014 23:15:17 +0100 Subject: [PATCH 4/5] fix variable Google Fonts Character Subset Param --- src/themes/default/globals/site.variables | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/themes/default/globals/site.variables b/src/themes/default/globals/site.variables index 654fb1c0f..0d4f41845 100644 --- a/src/themes/default/globals/site.variables +++ b/src/themes/default/globals/site.variables @@ -16,7 +16,7 @@ @googleSubset : 'latin'; @googleProtocol : 'http://'; -@googleFontRequest : '@{googleFontName}:@{googleFontSizes}&subset=@{@googleSubset}'; +@googleFontRequest : '@{googleFontName}:@{googleFontSizes}&subset=@{googleSubset}'; /*------------------- Base Sizes From 34a62312ab12540505c9bc3c500b667cf6abf0aa Mon Sep 17 00:00:00 2001 From: vsn4ik Date: Sat, 6 Dec 2014 02:28:31 +0300 Subject: [PATCH 5/5] Remove duplicated ignore property in bower.json. --- bower.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bower.json b/bower.json index 64af033ca..2f82943b7 100755 --- a/bower.json +++ b/bower.json @@ -6,9 +6,6 @@ "name" : "Jack Lukic", "web" : "http://www.jacklukic.com" }, - "ignore" : [ - "src/site" - ], "dependencies": { "jquery" : ">=1.8" }, @@ -26,6 +23,7 @@ "http://semantic-ui.mit-license.org/" ], "ignore": [ + "src/site", "test" ] }