Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mkloubert committed Dec 31, 2017
1 parent 201b8d7 commit af67b6a
Show file tree
Hide file tree
Showing 30 changed files with 3,838 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 1,5 @@
out
node_modules
.vscode-test/
.vsix
/pushall.sh
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 1,28 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/**/*.js" ],
"preLaunchTask": "npm: watch"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
"preLaunchTask": "npm: watch"
}
]
}
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 1,9 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
}
}
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 1,20 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
8 changes: 8 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 1,8 @@
.vscode/**
.vscode-test/**
out/test/**
out/**/*.map
src/**
.gitignore
tsconfig.json
img/**
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 1,7 @@
# Change Log (vscode-git-notify)

[![Share via Facebook](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Facebook.png)](https://www.facebook.com/sharer/sharer.php?u=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&quote=Git Notify) [![Share via Twitter](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Twitter.png)](https://twitter.com/intent/tweet?source=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&text=Git Notify: https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&via=mjkloubert) [![Share via Google ](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Google .png)](https://plus.google.com/share?url=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify) [![Share via Pinterest](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Pinterest.png)](http://pinterest.com/pin/create/button/?url=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&description=Visual Studio Code extension, which receives and shows git events from webhooks.) [![Share via Reddit](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Reddit.png)](http://www.reddit.com/submit?url=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&title=Git Notify) [![Share via LinkedIn](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/LinkedIn.png)](http://www.linkedin.com/shareArticle?mini=true&url=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&title=Git Notify&summary=Visual Studio Code extension, which receives and shows git events from webhooks.&source=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify) [![Share via Wordpress](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Wordpress.png)](http://wordpress.com/press-this.php?u=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&quote=Git Notify&s=Visual Studio Code extension, which receives and shows git events from webhooks.) [![Share via Email](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Email.png)](mailto:?subject=Git Notify&body=Visual Studio Code extension, which receives and shows git events from webhooks.: https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify)


## [Unreleased]
- Initial release
46 changes: 45 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 1,46 @@
# vscode-git-notify
Visual Studio Code extension, which receives and shows git events from webhooks.

[![Share via Facebook](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Facebook.png)](https://www.facebook.com/sharer/sharer.php?u=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&quote=Git Notify) [![Share via Twitter](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Twitter.png)](https://twitter.com/intent/tweet?source=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&text=Git Notify: https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&via=mjkloubert) [![Share via Google ](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Google .png)](https://plus.google.com/share?url=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify) [![Share via Pinterest](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Pinterest.png)](http://pinterest.com/pin/create/button/?url=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&description=Visual Studio Code extension, which receives and shows git events from webhooks.) [![Share via Reddit](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Reddit.png)](http://www.reddit.com/submit?url=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&title=Git Notify) [![Share via LinkedIn](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/LinkedIn.png)](http://www.linkedin.com/shareArticle?mini=true&url=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&title=Git Notify&summary=Visual Studio Code extension, which receives and shows git events from webhooks.&source=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify) [![Share via Wordpress](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Wordpress.png)](http://wordpress.com/press-this.php?u=https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify&quote=Git Notify&s=Visual Studio Code extension, which receives and shows git events from webhooks.) [![Share via Email](https://raw.githubusercontent.com/mkloubert/vscode-git-notify/master/img/share/Email.png)](mailto:?subject=Git Notify&body=Visual Studio Code extension, which receives and shows git events from webhooks.: https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-git-notify)


[Visual Studio Code](https://code.visualstudio.com) extension, which receives and shows git events from webhooks.

## Table of contents

1. [Install](#install-)
2. [How to use](#how-to-use-)
3. [Support and contribute](#support-and-contribute-)

## Install [[↑](#table-of-contents)]

Launch VS Code Quick Open (`Ctrl P`), paste the following command, and press enter:

```bash
ext install vscode-git-notify
```

Or search for things like `vscode-git-notify` in your editor.

## How to use [[↑](#table-of-contents)]

@TODO

## Support and contribute [[↑](#table-of-contents)]

If you like the extension, you can support the project by sending a donation

[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://paypal.me/MarcelKloubert)

to [me](https://github.com/mkloubert).

To contribute, you can [open an issue](https://github.com/mkloubert/vscode-git-notify/issues) and/or fork this repository.

To work with the code:

* clone [this repository](https://github.com/mkloubert/vscode-git-notify)
* create and change to a new branch, like `git checkout -b my_new_feature`
* run `npm install` from your project folder
* open that project folder in Visual Studio Code
* now you can edit and debug there
* commit your changes to your new branch and sync it with your forked GitHub repo
* make a [pull request](https://github.com/mkloubert/vscode-git-notify/pulls)
4 changes: 4 additions & 0 deletions copyright.txt
Original file line number Diff line number Diff line change
@@ -0,0 1,4 @@

Icons:
- /icon.png (Alfredo Hernandez; https://www.iconfinder.com/AlfredoHernandez)
- /img/share/* (https://simplesharingbuttons.com)
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Email.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Facebook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Google .png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/LinkedIn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Pinboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Pinterest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Pocket.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Reddit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Tumblr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/share/Wordpress.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit af67b6a

Please sign in to comment.