From fd85455c2471cd3e94f79399e928fba2adefcee1 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Wed, 15 Apr 2020 23:24:57 -0300 Subject: [PATCH 1/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 61426bbe7..d6e70f5a4 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ The VTEX platform SDK for .NET projects (both Core & Framework). ## CI/CD -[![Build status](https://ci.appveyor.com/api/projects/status/kuso66xs0ljrcxfn?svg=true)](https://ci.appveyor.com/project/guibranco/kuso66xs0ljrcxfn) +[![Build status](https://ci.appveyor.com/api/projects/status/kuso66xs0ljrcxfn?svg=true)](https://ci.appveyor.com/project/guibranco/vtex-sdk-dotnet) [![VTEX NuGet Version](https://img.shields.io/nuget/v/VTEX.svg?style=flat)](https://www.nuget.org/packages/VTEX/) [![VTEX NuGet Downloads](https://img.shields.io/nuget/dt/VTEX.svg?style=flat)](https://www.nuget.org/packages/VTEX/) [![Github All Releases](https://img.shields.io/github/downloads/guibranco/VTEX-SDK-dotnet/total.svg?style=flat)](https://github.com/guibranco/VTEX-SDK-dotnet) From 1179a03a9ed333efd21cb3ac25b37b3cdcd6d210 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Fri, 17 Apr 2020 21:09:54 -0300 Subject: [PATCH 2/7] Set theme jekyll-theme-leap-day --- _config.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 _config.yml diff --git a/_config.yml b/_config.yml new file mode 100644 index 000000000..b84971359 --- /dev/null +++ b/_config.yml @@ -0,0 +1 @@ +theme: jekyll-theme-leap-day \ No newline at end of file From 95e74573061cf998d99a81b0bd117b0936a043fe Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Fri, 17 Apr 2020 21:11:20 -0300 Subject: [PATCH 3/7] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d6e70f5a4..ca029558b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # VTEX SDK dotNet -The VTEX platform SDK for .NET projects (both Core & Framework). +The [VTEX platform](https://www.nuget.org/packages/VTEX) SDK for .NET projects (both Core & Framework). ![VTEX logo](https://raw.githubusercontent.com/guibranco/VTEX-SDK-dotnet/master/logo.png) @@ -36,12 +36,14 @@ The VTEX platform SDK for .NET projects (both Core & Framework). Download the latest zip file from the [Release pages](https://github.com/guibranco/VTEX/releases) or simple install from [NuGet](https://www.nuget.org/packages/VTEX) package manager -NuGet URL: https://www.nuget.org/packages/VTEX +NuGet URL: [https://www.nuget.org/packages/VTEX](https://www.nuget.org/packages/VTEX) NuGet installation via *Package Manager Console*: ```ps + Install-Package VTEX + ``` --- From 52877ebfdebf7bf64a833a8d804109468603b455 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Fri, 17 Apr 2020 21:29:00 -0300 Subject: [PATCH 4/7] Update _config.yml --- _config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index b84971359..38cfd9f3d 100644 --- a/_config.yml +++ b/_config.yml @@ -1 +1,3 @@ -theme: jekyll-theme-leap-day \ No newline at end of file +theme: jekyll-theme-leap-day +title: VTEX SDK (.NET) +show_downloads: true From 5a43305977fe5ec7345f90e058e0a472dbc4e3a3 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Fri, 17 Apr 2020 21:45:11 -0300 Subject: [PATCH 5/7] Create styles.scss --- assets/css/styles.scss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 assets/css/styles.scss diff --git a/assets/css/styles.scss b/assets/css/styles.scss new file mode 100644 index 000000000..d5d649582 --- /dev/null +++ b/assets/css/styles.scss @@ -0,0 +1,16 @@ +--- +--- + +@import "{{ site.theme }}"; + +body { + background: #FFF; +} + +header { + background: #E42760; +} + +header h1 { + text-shadow: 0px 2px 0px #E42760; +} From 51db07471ba871e82f8cd3054530d3ae18db35ff Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Fri, 17 Apr 2020 21:46:09 -0300 Subject: [PATCH 6/7] Rename styles.scss to style.scss --- assets/css/{styles.scss => style.scss} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename assets/css/{styles.scss => style.scss} (100%) diff --git a/assets/css/styles.scss b/assets/css/style.scss similarity index 100% rename from assets/css/styles.scss rename to assets/css/style.scss From 180c3522970dc0cb7fd69a8cd47c4ed755430e84 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Fri, 17 Apr 2020 21:47:45 -0300 Subject: [PATCH 7/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ca029558b..049dba967 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# VTEX SDK dotNet +# VTEX SDK The [VTEX platform](https://www.nuget.org/packages/VTEX) SDK for .NET projects (both Core & Framework).