Skip to content

Commit d3df004

Browse files
committed
update readme
1 parent 5d1dd0b commit d3df004

File tree

4 files changed

+50
-2
lines changed

4 files changed

+50
-2
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) [2016] [Ke Xu]
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# aria2-progress
2+
3+
Parse an aria2 control file and show each block's download status.
4+
5+
## Usage
6+
7+
Using Leiningen:
8+
9+
```shell
10+
lein run [path/to/file/filename.aria2]
11+
```
12+
13+
To build a standalone jar:
14+
15+
```shell
16+
lein uberjar
17+
```
18+
19+
## Screenshot
20+
21+
<img src="https://github.com/markx/aria2-progress/blob/master/screenshot.png" width="400">
22+
23+
## License
24+
25+
Copyright © 2016 Ke Xu
26+
27+
The code is under the [MIT License](http://opensource.org/licenses/MIT).

project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
(defproject aria2-progress "0.1.0-SNAPSHOT"
22
:description "FIXME: write description"
33
:url "http://example.com/FIXME"
4-
:license {:name "Eclipse Public License"
5-
:url "http://www.eclipse.org/legal/epl-v10.html"}
4+
:license {:name "MIT"
5+
:url "http://opensource.org/licenses/MIT"}
66
:dependencies [[org.clojure/clojure "1.8.0"]
77
[org.clojure/math.numeric-tower "0.0.4"]
88
[seesaw "1.4.5"]]

screenshot.png

121 KB
Loading

0 commit comments

Comments
 (0)