Skip to content

Commit 8f20fce

Browse files
committed
Releasing new version
1 parent 152e026 commit 8f20fce

File tree

6 files changed

+34
-27
lines changed

6 files changed

+34
-27
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-circle-progress",
3-
"version": "1.2.0-beta",
3+
"version": "1.2.0",
44
"authors": [
55
"Rostyslav Bryzgunov <[email protected]>"
66
],

dist/circle-progress.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* {@link http://kottenator.github.io/jquery-circle-progress/}
44
*
55
* @author Rostyslav Bryzgunov <[email protected]>
6-
* @version 1.2.0-beta
6+
* @version 1.2.0
77
* @licence MIT
88
* @preserve
99
*/

dist/circle-progress.min.js

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

docs/index.html

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,27 @@
1010
</head>
1111

1212
<body>
13-
1413
<h1 class="page-title">
1514
jquery-circle-progress
1615
</h1>
1716

1817
<div class="circles">
1918
<div class="first circle">
20-
<span>no <br/> animation</span>
19+
<span>no <br> animation</span>
2120
</div>
2221

2322
<div class="second circle">
2423
<strong></strong>
25-
<span>animation <br/> progress</span>
24+
<span>animation <br> progress</span>
2625
</div>
2726

2827
<div class="third circle">
2928
<strong></strong>
30-
<span>value <br/> progress</span>
29+
<span>value <br> progress</span>
3130
</div>
3231

3332
<div class="forth circle">
34-
<span>custom angle, <br/> value update</span>
33+
<span>custom angle, <br> value update</span>
3534
</div>
3635

3736
<div
@@ -46,7 +45,7 @@ <h1 class="page-title">
4645
}"
4746
data-reverse="true"
4847
>
49-
<span>image fill, <br/> custom sizes</span>
48+
<span>image fill, <br> custom sizes</span>
5049
</div>
5150
</div>
5251

@@ -55,24 +54,27 @@ <h1 class="page-title">
5554
read the documentation on <a href="https://github.com/kottenator/jquery-circle-progress">GitHub</a>
5655
</p>
5756

58-
<p class="install">
59-
<a href="https://github.com/kottenator/jquery-circle-progress/archive/1.1.3.tar.gz">Download v.1.1.3</a>
60-
or <code>bower install jquery-circle-progress</code>
57+
<p>
58+
<div class="install">
59+
<a href="https://github.com/kottenator/jquery-circle-progress/archive/1.2.0.tar.gz">Download version 1.2.0</a>
60+
<code>bower install jquery-circle-progress</code>
61+
<code>npm install jquery-circle-progress</code>
62+
</div>
6163
</p>
6264

6365
<p class="credits">
6466
© 2014-2016 - made by Rostyslav Bryzgunov
6567

6668
<a href="https://github.com/kottenator">
6769
<img
68-
src="http://www.gravatar.com/avatar/8951250b5946e3c7923710e125fb3760?s=30"
70+
src="http://www.gravatar.com/avatar/8951250b5946e3c7923710e125fb3760?s=60"
6971
width="30" height="30" alt="avatar"
7072
/>
7173
</a>
7274
</p>
7375

7476
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
75-
<script src="https://cdn.rawgit.com/kottenator/jquery-circle-progress/1.1.3/dist/circle-progress.js"></script>
77+
<script src="https://cdn.rawgit.com/kottenator/jquery-circle-progress/1.2.0/dist/circle-progress.js"></script>
7678
<script src="examples.js"></script>
7779
</body>
7880
</html>

docs/styles.css

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ a {
2121
text-align: center;
2222
}
2323

24+
.circles {
25+
margin-bottom: -10px;
26+
}
27+
2428
.circle {
2529
width: 100px;
2630
margin: 6px 6px 20px;
@@ -61,32 +65,33 @@ p {
6165
}
6266

6367
.install {
64-
margin: 50px 0;
65-
}
66-
67-
.install code {
68-
padding: 6px 12px;
6968
display: inline-block;
70-
font: 13px/20px Courier New, Liberation Mono, monospase;
71-
background-color: #333333;
72-
border-radius: 4px;
73-
margin: 5px 0;
74-
white-space: nowrap;
7569
}
7670

7771
.install a {
78-
display: inline-block;
72+
display: block;
73+
width: auto;
7974
vertical-align: middle;
8075
padding: 6px 12px;
8176
line-height: 20px;
8277
background-color: #111;
8378
color: #fff;
8479
border-radius: 3px;
8580
text-decoration: none;
86-
margin: 5px 0;
81+
margin: 5px auto;
8782
transition: all .3s;
8883
}
8984

85+
.install code {
86+
padding: 6px 12px;
87+
display: block;
88+
font: 13px/20px Courier New, Liberation Mono, monospase;
89+
background-color: #333333;
90+
border-radius: 4px;
91+
margin: 5px 0;
92+
white-space: nowrap;
93+
}
94+
9095
.install a:hover {
9196
background-color: #222;
9297
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-circle-progress",
3-
"version": "1.2.0-beta",
3+
"version": "1.2.0",
44
"author": "Rostyslav Bryzgunov <[email protected]>",
55
"description": "Plugin to draw animated circular progress bars",
66
"license": "MIT",

0 commit comments

Comments
 (0)