Skip to content

Commit

Permalink
修复重复提示更新
Browse files Browse the repository at this point in the history
  • Loading branch information
miniers committed Jun 23, 2017
1 parent b9086e5 commit 360db58
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions safari2aria.safariextension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>1.0</string>
<key>CFBundleShortVersionString</key>
<string>2.1</string>
<string>2.3.1</string>
<key>CFBundleVersion</key>
<string>2.1</string>
<string>2.3.1</string>
<key>Chrome</key>
<dict>
<key>Database Quota</key>
Expand Down Expand Up @@ -87,7 +87,7 @@
<key>Update From Gallery</key>
<true/>
<key>Update Manifest URL</key>
<string>https://miniers.github.io/safari2aria/update.plist?t=2.1</string>
<string>https://miniers.github.io/safari2aria/update.plist?t=2.3.1</string>
<key>Website</key>
<string>https://github.com/miniers/safari2aria</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion safari2aria.safariextension/popover.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
<body>
<div id="app-box"></div>
<!-- built files will be auto injected -->
<script type="text/javascript" src="static/js/manifest.js"></script><script type="text/javascript" src="static/js/vendor.57da258d81da51489b78.js"></script><script type="text/javascript" src="static/js/popover.fa8d4f88a039f53e7020.js"></script></body>
<script type="text/javascript" src="static/js/manifest.js"></script><script type="text/javascript" src="static/js/vendor.57da258d81da51489b78.js"></script><script type="text/javascript" src="static/js/popover.725955d220b7057281aa.js"></script></body>
</html>
2 changes: 1 addition & 1 deletion safari2aria.safariextension/static/js/manifest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Binary file modified safari2aria.safariextz
Binary file not shown.
3 changes: 3 additions & 0 deletions src/pages/popover/components/taskLine.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@
name: function () {
return util.getEntryFileName(this.download)
},
path:function () {
return ['file://',this.download.dir].join('');
},
progress: function () {
let progress = this.download.totalLength === '0' ? 0 : this.download.completedLength / this.download.totalLength;
return [parseInt(progress * 100), '%'].join('')
Expand Down

0 comments on commit 360db58

Please sign in to comment.