Skip to content

Commit 4c2312a

Browse files
committed
Deprecation info
1 parent 0be43f1 commit 4c2312a

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

index.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,9 @@ <h3>Android SVG to VectorDrawable</h3>
4141
<div class="panel-body">
4242
<b>Drop file here</b> (or multiple files) to load content or click on this box to open file dialog.<br/>
4343
<div class="nouploadinfo small">No file will be uploaded - uses only JavaScript HTML5 FileReader.<br /><br /></div>
44-
45-
<div class="nouploadinfo small alert alert-warning" style="display: inline-block">
46-
Keep in mind that Android does support svg files only partially.<br/>
47-
Please report wrongly converted SVGs by filling an issue on github.
44+
45+
<div class="nouploadinfo small alert alert-info" style="display: inline-block">
46+
This tool has been deprecated. Use official <a href="https://developer.android.com/studio/write/vector-asset-studio#svg" id="deprecation-text"><b>Vector Asset Studio</b></a> instead.<br/>
4847
</div>
4948
</div>
5049
</div>
@@ -121,7 +120,7 @@ <h4 class="modal-title">Multiple SVG files (<span id="files-count"></span> files
121120

122121
<div class="container">
123122
<footer>
124-
&copy; 2018, Juraj Novák, <a href="http://inloop.eu/" target="_blank">inloop.eu</a><br>
123+
&copy; 2018, Juraj Novák, <a href="https://www.inloopx.com" target="_blank">inloopx.com</a><br>
125124
<small>| <a href="http://inloop.github.io/">other projects</a> |</small>
126125
</footer>
127126
</div>
@@ -141,7 +140,7 @@ <h4 class="modal-title">Multiple SVG files (<span id="files-count"></span> files
141140
<script src="js/svg_shape_converter.js"></script>
142141
<script src="js/flatten.js?v=1"></script>
143142
<script src="js/jszip.min.js"></script>
144-
<script src="js/main.js?v=33"></script>
143+
<script src="js/main.js?v=34"></script>
145144

146145
<script>
147146
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){

js/main.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ $("body").bind("paste", function(e) {
133133
}
134134
});
135135

136+
$("#deprecation-text").on("click", function (ev) {
137+
ev.stopPropagation();
138+
});
139+
136140
showLastUpdate("svg2android");
137141

138142
/* ------ */

0 commit comments

Comments
 (0)