From b5e3ef57b4574de5b644fbcefa37b1ee2265cca3 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Thu, 15 Sep 2016 14:56:05 -0400 Subject: [PATCH 1/8] Remove empty maintenance listing --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b48073df..edadfb85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,6 @@ - Remove duplicate include of `base_path` in category-list.html [#522](https://github.com/mmistakes/minimal-mistakes/pull/522) -### Maintenance - ## [3.4.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.6) ### Enhancements From a48327908e3dc434afffab21b81cdbb4b289a532 Mon Sep 17 00:00:00 2001 From: Josh Habdas Date: Fri, 16 Sep 2016 11:43:02 -0500 Subject: [PATCH 2/8] Typography for larger viewports. Closes #533 --- _sass/_reset.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/_sass/_reset.scss b/_sass/_reset.scss index 7d33b497..d9ae7875 100644 --- a/_sass/_reset.scss +++ b/_sass/_reset.scss @@ -14,6 +14,14 @@ html { font-size: 18px; } + @include breakpoint($large) { + font-size: 20px; + } + + @include breakpoint($x-large) { + font-size: 22px; + } + -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } @@ -176,4 +184,4 @@ input[type="search"]::-webkit-search-cancel-button { textarea { overflow: auto; /* remove vertical scrollbar in IE6-9*/ vertical-align: top; /* readability and alignment cross-browser*/ -} \ No newline at end of file +} From 7a3c82f041d1675374feedbaa1f2522d05d92e0f Mon Sep 17 00:00:00 2001 From: Fernando Ribeiro Date: Sun, 18 Sep 2016 11:13:47 +0100 Subject: [PATCH 3/8] update Portuguese translation --- _data/ui-text.yml | 54 +++++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/_data/ui-text.yml b/_data/ui-text.yml index d4e22fb8..cb9346a0 100644 --- a/_data/ui-text.yml +++ b/_data/ui-text.yml @@ -186,40 +186,40 @@ tr-TR: pt: &DEFAULT_PT page : "Página" pagination_previous : "Anterior" - pagination_next : "Próxima" - breadcrumb_home_label : "Home" + pagination_next : "Seguinte" + breadcrumb_home_label : "Início" breadcrumb_separator : "/" - toc_label : "Nesta página" - ext_link_label : "Link direto" - less_than : "meno que" + toc_label : "Nesta Página" + ext_link_label : "Link Direto" + less_than : "menos de" minute_read : "minutos de leitura" - share_on_label : "Compartilhe em" + share_on_label : "Partilhar no" meta_label : - tags_label : "Tags:" + tags_label : "Etiquetas:" categories_label : "Categorias:" - date_label : "Atualizado em:" - comments_label : "Deixe um comentário" - comments_title : - more_label : "Aprenda Mais" - related_label : "Você Talvez Goste Também" - follow_label : "Acompanhe em" + date_label : "Atualizado:" + comments_label : "Deixe um Comentário" + comments_title : "Comentários" + more_label : "Saber mais" + related_label : "Também pode gostar de" + follow_label : "Siga:" feed_label : "Feed" powered_by : "Feito com" website_label : "Site" email_label : "Email" - recent_posts : "Postagens recentes" - undefined_wpm : "Parâmetro indefinido em word_per_minute no _config.yml" - comment_form_info : - comment_form_comment_label : - comment_form_md_info : - comment_form_name_label : - comment_form_email_label : - comment_form_website_label : - comment_btn_submit : - comment_btn_submitted : - comment_success_msg : - comment_error_msg : - loading_label : + recent_posts : "Artigos Recentes" + undefined_wpm : "Parâmetro words_per_minute não definido em _config.yml" + comment_form_info : "O seu endereço email não será publicado. Os campos obrigatórios estão assinalados" + comment_form_comment_label : "Comentário" + comment_form_md_info : "Markdown é suportado." + comment_form_name_label : "Nome" + comment_form_email_label : "Endereço Email" + comment_form_website_label : "Site (opcional)" + comment_btn_submit : "Sumbeter Comentário" + comment_btn_submitted : "Submetido" + comment_success_msg : "Obrigado pelo seu comentário! Será visível no site logo que aprovado." + comment_error_msg : "Lamento, ocorreu um erro na sua submissão. Por favor verifique se todos os campos obrigatórios estão corretamente preenchidos e tente novamente." + loading_label : "A carregar..." pt-BR: <<: *DEFAULT_PT pt-PT: @@ -266,7 +266,7 @@ it: &DEFAULT_IT loading_label : "Caricamento..." it-IT: <<: *DEFAULT_IT - + # Chinese (zh-CN Chinese - China) # ----------------- zh: &DEFAULT_ZH From dc7f352aff1dfbc17f89ee08da1663c6cc4e78b1 Mon Sep 17 00:00:00 2001 From: Sebastian Cachia Date: Mon, 19 Sep 2016 00:37:13 +0200 Subject: [PATCH 4/8] Fixed Last.fm URL (#540) lastfm.com/user... results in a server error, last.fm/user... is the correct URL. --- _includes/author-profile.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/author-profile.html b/_includes/author-profile.html index da17fc8b..510a1ba9 100644 --- a/_includes/author-profile.html +++ b/_includes/author-profile.html @@ -65,7 +65,7 @@
  • Stackoverflow
  • {% endif %} {% if author.lastfm %} -
  • Last.fm
  • +
  • Last.fm
  • {% endif %} {% if author.dribbble %}
  • Dribbble
  • From d4ee7ff12d3744c696a978eb44229d7d5ecdc503 Mon Sep 17 00:00:00 2001 From: Kyle Manna Date: Mon, 19 Sep 2016 06:48:58 -0700 Subject: [PATCH 5/8] includes: Enhance Twitter share link (#538) * Include the page title before the URL * If twitter.username is set, pass the `via` paramter for attribution --- _includes/social-share.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/social-share.html b/_includes/social-share.html index 718e6f97..2a05d50e 100644 --- a/_includes/social-share.html +++ b/_includes/social-share.html @@ -5,11 +5,11 @@ {% endif %} - + Google+ LinkedIn - \ No newline at end of file + From 0626821333db3916a42dd073f246eabbb41e4e79 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Mon, 19 Sep 2016 09:55:10 -0400 Subject: [PATCH 6/8] Re-add Brazilian Portuguese localized strings --- _data/ui-text.yml | 40 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/_data/ui-text.yml b/_data/ui-text.yml index cb9346a0..68c0476d 100644 --- a/_data/ui-text.yml +++ b/_data/ui-text.yml @@ -181,7 +181,7 @@ tr: &DEFAULT_TR tr-TR: <<: *DEFAULT_TR -# Brazilian Portguese +# Portuguese # ----------------- pt: &DEFAULT_PT page : "Página" @@ -220,8 +220,44 @@ pt: &DEFAULT_PT comment_success_msg : "Obrigado pelo seu comentário! Será visível no site logo que aprovado." comment_error_msg : "Lamento, ocorreu um erro na sua submissão. Por favor verifique se todos os campos obrigatórios estão corretamente preenchidos e tente novamente." loading_label : "A carregar..." +# Brazilian Portuguese pt-BR: - <<: *DEFAULT_PT + page : "Página" + pagination_previous : "Anterior" + pagination_next : "Próxima" + breadcrumb_home_label : "Home" + breadcrumb_separator : "/" + toc_label : "Nesta página" + ext_link_label : "Link direto" + less_than : "meno que" + minute_read : "minutos de leitura" + share_on_label : "Compartilhe em" + meta_label : + tags_label : "Tags:" + categories_label : "Categorias:" + date_label : "Atualizado em:" + comments_label : "Deixe um comentário" + comments_title : + more_label : "Aprenda Mais" + related_label : "Você Talvez Goste Também" + follow_label : "Acompanhe em" + feed_label : "Feed" + powered_by : "Feito com" + website_label : "Site" + email_label : "Email" + recent_posts : "Postagens recentes" + undefined_wpm : "Parâmetro indefinido em word_per_minute no _config.yml" + comment_form_info : + comment_form_comment_label : + comment_form_md_info : + comment_form_name_label : + comment_form_email_label : + comment_form_website_label : + comment_btn_submit : + comment_btn_submitted : + comment_success_msg : + comment_error_msg : + loading_label : pt-PT: <<: *DEFAULT_PT From 18a801b350a325a3dfbd9dee5657d95ba2faef89 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Mon, 19 Sep 2016 10:01:17 -0400 Subject: [PATCH 7/8] Update gems: `github-pages` (96), `jekyll-mentions` (1.2.0) --- Gemfile.lock | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 98c22301..f155ec95 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -22,7 +22,7 @@ GEM ffi (1.9.14-x64-mingw32) forwardable-extended (2.6.0) gemoji (2.1.0) - github-pages (93) + github-pages (96) activesupport (= 4.2.7) github-pages-health-check (= 1.2.0) jekyll (= 3.2.1) @@ -30,7 +30,7 @@ GEM jekyll-feed (= 0.5.1) jekyll-gist (= 1.4.0) jekyll-github-metadata (= 2.0.2) - jekyll-mentions (= 1.1.3) + jekyll-mentions (= 1.2.0) jekyll-paginate (= 1.1.0) jekyll-redirect-from (= 0.11.0) jekyll-sass-converter (= 1.3.0) @@ -41,7 +41,7 @@ GEM liquid (= 3.0.6) listen (= 3.0.6) mercenary (~> 0.3) - minima (= 1.0.1) + minima (= 1.2.0) rouge (= 1.11.1) terminal-table (~> 1.4) github-pages-health-check (1.2.0) @@ -72,7 +72,8 @@ GEM jekyll-github-metadata (2.0.2) jekyll (~> 3.1) octokit (~> 4.0) - jekyll-mentions (1.1.3) + jekyll-mentions (1.2.0) + activesupport (~> 4.0) html-pipeline (~> 2.3) jekyll (~> 3.0) jekyll-paginate (1.1.0) @@ -98,7 +99,7 @@ GEM rb-inotify (>= 0.9.7) mercenary (0.3.6) mini_portile2 (2.1.0) - minima (1.0.1) + minima (1.2.0) minitest (5.9.0) multipart-post (2.0.0) net-dns (0.8.0) @@ -123,12 +124,14 @@ GEM sawyer (0.7.0) addressable (>= 2.3.5, < 2.5) faraday (~> 0.8, < 0.10) - terminal-table (1.6.0) + terminal-table (1.7.2) + unicode-display_width (~> 1.1.1) thread_safe (0.3.5) typhoeus (0.8.0) ethon (>= 0.8.0) tzinfo (1.2.2) thread_safe (~> 0.1) + unicode-display_width (1.1.1) wdm (0.1.1) PLATFORMS From 7d341c312e657023d87dc9e8ac99db5bd001009c Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Mon, 19 Sep 2016 10:08:44 -0400 Subject: [PATCH 8/8] Update CHANGELOG.md and bump version to 3.4.8 --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edadfb85..7bd98594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## [3.4.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.8) + +### Enhancements + +- Improve type readability for larger viewports by bumping up base `font-size`. [#533](https://github.com/mmistakes/minimal-mistakes/issues/533) +- Update Portuguese localized UI text. [#541](https://github.com/mmistakes/minimal-mistakes/pull/541) +- Add `page.title` and via parameter to Twitter share link. [#538](https://github.com/mmistakes/minimal-mistakes/pull/538) + +### Bug Fixes + +- Fix Last.fm author profile URL. [#540](https://github.com/mmistakes/minimal-mistakes/pull/540) + +### Maintenance + +- Move Brazilian Portuguese localized text under `pt-BR` key. + ## [3.4.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.7) ### Enhancements diff --git a/package.json b/package.json index ce7de379..0be284e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minimal-mistakes", - "version": "3.4.7", + "version": "3.4.8", "description": "Minimal Mistakes Jekyll theme npm build scripts", "repository": { "type": "git",