Skip to content

Commit

Permalink
10.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nano2dev committed Feb 2, 2024
1 parent 7fe7509 commit ad26f1f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions appcache
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ dist/vue.min.js
dist/axios.min.js
dist/easy.qrcode.min.js
dist/nanocurrency.min.js
dist/style.css?v=10.1.0
dist/app.js?v=10.1.0
dist/style.css?v=10.1.1
dist/app.js?v=10.1.1
4 changes: 2 additions & 2 deletions dist/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ var nano = new Vue({
do_update_name(res, name) {
res.data.changes = {}
this.updatable.map(a => a.label).map(a => {
var chosen = this.usernames.find(a => a.name.toLowerCase() === name.toLowerCase().replace('@', ''))
var chosen = this.usernames.find(a => a.name.toLowerCase() === name.toLowerCase().replace('@', '').replace(':', ''))
if (a === 'title') res.data.changes[a] = chosen[a]
else res.data.changes[a] = res.data[a] ? res.data[a] : chosen[a]
})
Expand Down Expand Up @@ -869,7 +869,7 @@ var nano = new Vue({
balance: Number(account_info.balance).toFixed(2),
pending: account_info.pending
}
this.notify('Goal Meter Updated')
this.notify('Donated')
this.success = false
this.buttonText = false
}, this.checkout.redirect_delay || 4000)
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<meta property="twitter:image" content="dist/images/cover.png">
<link rel="apple-touch-icon" href="dist/images/new_icon.png">
<link rel="icon" type="image/png" href="dist/favicon.png">
<link rel="stylesheet" href="dist/style.css?v=10.1.0">
<link rel="stylesheet" href="dist/big-picture.css?v=10.1.0">
<link rel="stylesheet" href="dist/style.css?v=10.1.1">
<link rel="stylesheet" href="dist/big-picture.css?v=10.1.1">
<link rel="manifest" href="dist/manifest.json">
<script>
function queryToObject(string) {
Expand Down Expand Up @@ -363,6 +363,6 @@ <h1 v-if="!checkout.amount" :style="`color:${checkout.color && checkout.color.te
<script src="dist/axios.min.js"></script>
<script src="dist/easy.qrcode.min.js"></script>
<script src="dist/nanocurrency.min.js"></script>
<script src="dist/app.js?v=10.1.0"></script>
<script src="dist/app.js?v=10.1.1"></script>
</body>
</html>

0 comments on commit ad26f1f

Please sign in to comment.