Skip to content

Commit 64ad628

Browse files
authored
Merge latest from pre release
Merge pull request #2 from ClydeDz/pre-release
2 parents 0501dd6 + 4d952a7 commit 64ad628

File tree

14 files changed

+239
-99
lines changed

14 files changed

+239
-99
lines changed

GASnippetPack/GoogleAnalyticsSnippetPack.Web/css/main.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
@import url("https://fonts.googleapis.com/css?family=Bungee|Montserrat");
22
header {
33
min-height: 450px;
4-
background-image: url("https://raw.githubusercontent.com/ClydeDz/fancy-comments/master/docs/images/banners/vsix-ext-familydesigns.png");
4+
background-image: url("https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/banners/vsix-ext-familydesigns.png");
55
background-repeat: repeat;
66
background-size: contain; }
77
header div div.website-logo {
88
width: 150px;
99
margin-left: auto;
1010
margin-right: auto;
11-
padding-top: 122px; }
11+
padding-top: 67px; }
1212
@media (max-width: 468px) {
1313
header div div.website-logo {
1414
padding-top: 95px; } }

GASnippetPack/GoogleAnalyticsSnippetPack.Web/css/main.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GASnippetPack/GoogleAnalyticsSnippetPack.Web/index.html

Lines changed: 43 additions & 41 deletions
Large diffs are not rendered by default.
Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,36 @@
1-
# Marketplace description
1+
## Google Analytics Snippet Pack for Visual Studio
2+
3+
Google Analytics Snippet Pack for Visual Studio helps you write global site tag (gtag.js) code that allows you to send event data to Google Analytics. Due to the nature of this extension, you will find these snippets in HTML and JavaScript Google Analytics Snippet Pack is compatible right from Visual Studio 2012 to 2017 (Community, Professional and Enterprise).
4+
5+
![Google Analytics Snippet Pack in Visual Studio's Code Snippet Manager](https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/anime/code-snip-manager.gif)
6+
7+
## How to use?
8+
9+
The Google Analytics Snippet Pack extends the code snippet manager of Visual Studio and allows you to insert code snippets into your editor. To insert snippets for the language you're currently writing in your editor, you can use the shortcut keys ``CTRL+K CTRL+X`` and then find Fancy Comments as a folder. Alternatively, to bring up the code snippet manager, use the shortcut keys ``CTRL+K CTRL+B``. The GIF below shows HTML Google Analytics Snippet Pack being used.
10+
11+
![GIF showing HTML Google Analytics Snippet Pack in use](https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/anime/html-install-snippet.gif)
12+
13+
OR, if you would like to send an event from JavaScript, you could do something like this -
14+
15+
![GIF showing JavaScript Google Analytics Snippet Pack in use](https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/anime/js-send-event.gif)
16+
17+
## Feedback
18+
19+
Google Analytics Snippet Pack is just in version 1.0.0 right now. Should you find your use case missing in the snippet pack, it would be great if you could create a new issue on [GitHub here](https://github.com/ClydeDz/google-analytics-snippet-pack/issues) and let me know what you're after and I can include that in the product backlog for next releases. Please search the issues first before creating a new one.
20+
21+
22+
## Website
23+
24+
[https://clydedz.github.io/google-analytics-snippet-pack/](http://bit.ly/gaspvsix-web)
25+
26+
27+
## GitHub
28+
29+
Visit the [GitHub repository](https://github.com/ClydeDz/google-analytics-snippet-pack).
30+
31+
## Facebook
32+
33+
[Follow Google Analytics Snippet Pack on Facebook](https://www.facebook.com/Google-Analytics-Snippet-Pack-599242807159278/)
34+
35+
36+
Google Analytics Snippet Pack (c) 2018 [Clyde D'Souza](https://clydedsouza.net/#/)

GASnippetPack/GoogleAnalyticsSnippetPack.Web/sass/components/_header.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ header {
44
min-height: 450px;
55

66
background: {
7-
image: url('https://raw.githubusercontent.com/ClydeDz/fancy-comments/master/docs/images/banners/vsix-ext-familydesigns.png');
7+
image: url('https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/banners/vsix-ext-familydesigns.png');
88
repeat: repeat;
99
size: contain;
1010
}
@@ -18,7 +18,7 @@ header {
1818
width: 150px;
1919
margin-left: auto;
2020
margin-right: auto;
21-
padding-top: 122px;
21+
padding-top: 67px;
2222
}
2323
}
2424

GASnippetPack/GoogleAnalyticsSnippetPack/extension.manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"overview": "readme.md",
88
"priceCategory": "free",
99
"publisher": "clydedsouza",
10-
"private": true,
10+
"private": false,
1111
"qna": true,
1212
"repo": "https://github.com/ClydeDz/google-analytics-snippet-pack"
1313
}
Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,36 @@
1-
# Marketplace description
1+
## Google Analytics Snippet Pack for Visual Studio
2+
3+
Google Analytics Snippet Pack for Visual Studio helps you write global site tag (gtag.js) code that allows you to send event data to Google Analytics. Due to the nature of this extension, you will find these snippets in HTML and JavaScript Google Analytics Snippet Pack is compatible right from Visual Studio 2012 to 2017 (Community, Professional and Enterprise).
4+
5+
![Google Analytics Snippet Pack in Visual Studio's Code Snippet Manager](https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/anime/code-snip-manager.gif)
6+
7+
## How to use?
8+
9+
The Google Analytics Snippet Pack extends the code snippet manager of Visual Studio and allows you to insert code snippets into your editor. To insert snippets for the language you're currently writing in your editor, you can use the shortcut keys ``CTRL+K CTRL+X`` and then find Fancy Comments as a folder. Alternatively, to bring up the code snippet manager, use the shortcut keys ``CTRL+K CTRL+B``. The GIF below shows HTML Google Analytics Snippet Pack being used.
10+
11+
![GIF showing HTML Google Analytics Snippet Pack in use](https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/anime/html-install-snippet.gif)
12+
13+
OR, if you would like to send an event from JavaScript, you could do something like this -
14+
15+
![GIF showing JavaScript Google Analytics Snippet Pack in use](https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/anime/js-send-event.gif)
16+
17+
## Feedback
18+
19+
Google Analytics Snippet Pack is just in version 1.0.0 right now. Should you find your use case missing in the snippet pack, it would be great if you could create a new issue on [GitHub here](https://github.com/ClydeDz/google-analytics-snippet-pack/issues) and let me know what you're after and I can include that in the product backlog for next releases. Please search the issues first before creating a new one.
20+
21+
22+
## Website
23+
24+
[https://clydedz.github.io/google-analytics-snippet-pack/](http://bit.ly/gaspvsix-web)
25+
26+
27+
## GitHub
28+
29+
Visit the [GitHub repository](https://github.com/ClydeDz/google-analytics-snippet-pack).
30+
31+
## Facebook
32+
33+
[Follow Google Analytics Snippet Pack on Facebook](https://www.facebook.com/Google-Analytics-Snippet-Pack-599242807159278/)
34+
35+
36+
Google Analytics Snippet Pack (c) 2018 [Clyde D'Souza](https://clydedsouza.net/#/)

GASnippetPack/GoogleAnalyticsSnippetPack/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="a486958a-384d-4e72-b00a-8725d6280af5" Version="0.0.4" Language="en-US" Publisher="Clyde D'Souza" />
4+
<Identity Id="a486958a-384d-4e72-b00a-8725d6280af5" Version="1.0.0" Language="en-US" Publisher="Clyde D'Souza" />
55
<DisplayName>Google Analytics Snippet Pack</DisplayName>
66
<Description xml:space="preserve">Google Analytics Snippet Pack for Visual Studio helps you write global site tag (gtag.js) code that allows you to send event data to Google Analytics.</Description>
77
<MoreInfo>https://github.com/ClydeDz/google-analytics-snippet-pack</MoreInfo>

README.md

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,38 @@
1-
# Google Analytics Snippet Pack
1+
## Google Analytics Snippet Pack for Visual Studio
22

33
[![Build Status](https://clydedsouza.visualstudio.com/Google%20Analytics%20Snippet%20Pack/_apis/build/status/Google%20Analytics%20Snippet%20Pack%20Master%20Build)](https://clydedsouza.visualstudio.com/Google%20Analytics%20Snippet%20Pack/_build/latest?definitionId=12)
44

5-
Google Analytics Snippet Pack for Visual Studio helps you write global site tag (gtag.js) code that allows you to send event data to Google Analytics.
5+
Google Analytics Snippet Pack for Visual Studio helps you write global site tag (gtag.js) code that allows you to send event data to Google Analytics. Due to the nature of this extension, you will find these snippets in HTML and JavaScript Google Analytics Snippet Pack is compatible right from Visual Studio 2012 to 2017 (Community, Professional and Enterprise).
66

7+
![Google Analytics Snippet Pack in Visual Studio's Code Snippet Manager](https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/anime/code-snip-manager.gif)
78

9+
## How to use?
10+
11+
The Google Analytics Snippet Pack extends the code snippet manager of Visual Studio and allows you to insert code snippets into your editor. To insert snippets for the language you're currently writing in your editor, you can use the shortcut keys ``CTRL+K CTRL+X`` and then find Fancy Comments as a folder. Alternatively, to bring up the code snippet manager, use the shortcut keys ``CTRL+K CTRL+B``. The GIF below shows HTML Google Analytics Snippet Pack being used.
12+
13+
![GIF showing HTML Google Analytics Snippet Pack in use](https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/anime/html-install-snippet.gif)
14+
15+
OR, if you would like to send an event from JavaScript, you could do something like this -
16+
17+
![GIF showing JavaScript Google Analytics Snippet Pack in use](https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/anime/js-send-event.gif)
18+
19+
## Feedback
20+
21+
Google Analytics Snippet Pack is just in version 1.0.0 right now. Should you find your use case missing in the snippet pack, it would be great if you could create a new issue on [GitHub here](https://github.com/ClydeDz/google-analytics-snippet-pack/issues) and let me know what you're after and I can include that in the product backlog for next releases. Please search the issues first before creating a new one.
22+
23+
24+
## Website
25+
26+
[https://clydedz.github.io/google-analytics-snippet-pack/](http://bit.ly/gaspvsix-web)
27+
28+
29+
## GitHub
30+
31+
Visit the [GitHub repository](https://github.com/ClydeDz/google-analytics-snippet-pack).
32+
33+
## Facebook
34+
35+
[Follow Google Analytics Snippet Pack on Facebook](https://www.facebook.com/Google-Analytics-Snippet-Pack-599242807159278/)
36+
37+
38+
Google Analytics Snippet Pack (c) 2018 [Clyde D'Souza](https://clydedsouza.net/#/)

docs/css/main.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
@import url("https://fonts.googleapis.com/css?family=Bungee|Montserrat");
22
header {
33
min-height: 450px;
4-
background-image: url("https://raw.githubusercontent.com/ClydeDz/fancy-comments/master/docs/images/banners/vsix-ext-familydesigns.png");
4+
background-image: url("https://raw.githubusercontent.com/ClydeDz/google-analytics-snippet-pack/master/GASnippetPack/GoogleAnalyticsSnippetPack.Web/images/banners/vsix-ext-familydesigns.png");
55
background-repeat: repeat;
66
background-size: contain; }
77
header div div.website-logo {
88
width: 150px;
99
margin-left: auto;
1010
margin-right: auto;
11-
padding-top: 122px; }
11+
padding-top: 67px; }
1212
@media (max-width: 468px) {
1313
header div div.website-logo {
1414
padding-top: 95px; } }

0 commit comments

Comments
 (0)