Skip to content

Commit

Permalink
v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MurhafSousli committed Oct 10, 2017
1 parent 53a6ec5 commit a9e2030
Show file tree
Hide file tree
Showing 166 changed files with 3,788 additions and 6,588 deletions.
2 changes: 1 addition & 1 deletion demo/.editorconfig → .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
max_line_length = 0
trim_trailing_whitespace = false
12 changes: 10 additions & 2 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@
[ ] question
```

**Minimal usage of the plugin**
### Versions
<!--
Help me understand your issue by posting your usage code*
Output from: `ng --version`, in case you are using Angular CLI.
Otherwise, output from: `node --version` , `npm --version` and Angular version.
-->

### Repro steps
<!-- Help me understand your issue by posting your usage code -->


### The log given by the failure
<!-- Normally this include a stack trace and some more information. -->
54 changes: 47 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,48 @@
# Node
node_modules
dist
coverage
# See http://help.github.com/ignore-files/ for more about ignoring files.

# private folders
/src/styles/menu
/src/styles/themes/premium-themes

# compiled output
/dist
/tmp

# dependencies
/node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
debug.log
/.idea/
/.vscode/
yarn-error.log
testem.log
/typings
/config/gulp-tasks/README.md
package-lock.json

# e2e
/e2e/*.js
/e2e/*.map

# System Files
.DS_Store
Thumbs.db
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install --quiet -g gulp-cli
- npm install

script: gulp test:ci

Expand Down
29 changes: 29 additions & 0 deletions .yo-rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"generator-ngx-library": {
"version": "4.3.0",
"authorName": "Murhaf Sousli",
"authorEmail": "[email protected]",
"githubUsername": "MurhafSousli",
"githubRepoName": "ngx-sharebuttons",
"projectName": "ngx-sharebuttons",
"projectVersion": "4.0.0",
"projectDescription": "Angular library built with ❤ using ngx-library yeoman generator.",
"projectKeywords": [
"ng",
"angular",
"library"
],
"ngPrefix": "my-lib",
"ngVersion": "4.0.0",
"ngModules": [
"core",
"common"
],
"useGreenkeeper": false,
"useCompodoc": false,
"enforceNgGitCommitMsg": false,
"exclusions": [
"demo/proxy.conf.json"
]
}
}
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 4.0.0@beta

Version 4 has been rewritten from scratch

- Major improvements: The list is long, just check the [demo](https://murhafsousli.github.io/ngx-sharebuttons/)
- Provide 3 different modules, import only what you use
- Use `HttpClient` for fetching share counts instead of `Http`, (requires Angular +4.3)
- Add new buttons for Telegram, Email, Print, Copy link
- Improve documentations
- License is now **GPL-3.0**

***

Version 3 is no longer supported

## 3.0.0

- Rename npm package to `ngx-sharebuttons`.
Expand Down Expand Up @@ -120,4 +135,4 @@

## 1.0.0

Stable release
Stable release
Loading

0 comments on commit a9e2030

Please sign in to comment.