Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AckerApple committed Jun 27, 2019
1 parent 10b19a8 commit cfdc91f
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 12 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# angular-file - Change Log
All notable changes to this project will be documented here.

## 1.3.0 - (2019-06-26)
## 1.3.1 - (2019-06-27)
- Built on ng8
- NOTE: A report from another package on ng8 claims may not be compatible with ng7
- Built with strict mode
- Fixed demo upload url
- Fixed testing enviroment
- Docs have bundle sizes

## 1.2.4 - (2019-06-26)
- updated docs
Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ Easy to use Angular directives for user file selections ([DEMO PAGE](http://acke
[![npm version](https://badge.fury.io/js/angular-file.svg)](http://badge.fury.io/js/angular-file)
[![npm downloads](https://img.shields.io/npm/dm/angular-file.svg)](https://npmjs.org/angular-file)
[![Dependency Status](https://david-dm.org/ackerapple/angular-file.svg)](https://david-dm.org/ackerapple/angular-file)
[![min size](https://badgen.net/bundlephobia/min/angular-file)](https://bundlephobia.com/result?p=angular-file)
[![minzip size](https://badgen.net/bundlephobia/minzip/angular-file)](https://bundlephobia.com/result?p=angular-file)

> This package is to handle select/drag/drop of files. Once files are selected, for uploading, you then use native `@angular/common` for uploading selected files ([see here for more on uploading](#uploading)).
> This package is to handle select/drag/drop of files. Once files are selected, for uploading, you then use Angular's `@angular/common/http` for uploading selected files ([see here for more on uploading](#uploading)).
<details>
<summary>Table of Contents</summary>
Expand All @@ -25,6 +27,7 @@ Easy to use Angular directives for user file selections ([DEMO PAGE](http://acke
- [ngfUploadStatus Directive](#ngfuploadstatus-directive)
- [Uploading](#uploading)
- [Troubleshooting](#troubleshooting)
- [Development](#development)
- [Credits](#credits)
- [License](#license)

Expand Down Expand Up @@ -317,6 +320,17 @@ Please follow this guidelines when reporting bugs and feature requests:

Thanks for understanding!

## Development
Work on this package

> Source files are on not the default github branch
- [source files here](https://github.com/AckerApple/angular-file.git)

```
git clone https://github.com/AckerApple/angular-file.git -b development
```

## Credits
- Current Author: Acker Apple
- Forked from outdated package: [ng2-file-upload](https://www.npmjs.com/package/ng2-file-upload)
Expand Down
42 changes: 32 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"main": "index.js",
"version": "1.3.0",
"description": "Angular file upload directives",
"version": "1.3.1",
"description": "Easy to use Angular directives for user file selections",
"module": "index.js",
"typings": "index.d.ts",
"keywords": [
"angular2",
"bootstrap",
"angularjs",
"twitter-bootstrap",
"Angular",
"ng files",
"file-upload",
"ng-file-upload",
"ng2-file-upload",
"angular-file-upload"
],
"author": "Acker Apple",
Expand All @@ -19,8 +19,30 @@
"url": "git+ssh://[email protected]/ackerapple/angular-file.git"
},
"name": "angular-file",
"peerDependencies": {
"@angular/common": "^2.3.1 || >=4.0.0",
"@angular/core": "^2.3.1 || >=4.0.0"
}
"contributors": [
{
"name": "Vyacheslav Chub",
"email": "[email protected]",
"url": "https://github.com/buchslava"
},
{
"name": "Dmitriy Shekhovtsov",
"email": "[email protected]",
"url": "https://github.com/valorkin"
},
{
"name": "Adrian Faciu",
"email": "[email protected]",
"url": "https://github.com/adrianfaciu"
},
{
"name": "Oleksandr Telnov",
"email": "[email protected]",
"url": "https://github.com/otelnov"
},
{
"name": "Acker Apple",
"url": "https://github.com/ackerapple"
}
]
}

0 comments on commit cfdc91f

Please sign in to comment.