Skip to content

Commit

Permalink
Bug fixes and new operations (#275)
Browse files Browse the repository at this point in the history
* Update add-account.vue

Fix BTC key import

* Update BitShares.js

* Update beautify.js

add operations
fix nft beautify function

* Update en.json

add operations

* Updated operation translations

* Further changes

Add extension localization
Comment out console logs
Remove duplicate bitshares asset key strings

* Update beautify.js

* Update package.json

* Further suez support

Correctly render fee amount for all operations
Correctly beautify operation 77
Add new fields keys to the asset/account batch fetcher
Added missing locale strings

* Update beautify.js

fixes to limit order update operation
  • Loading branch information
grctest authored Dec 13, 2023
1 parent 1fef92b commit a1de23c
Show file tree
Hide file tree
Showing 18 changed files with 11,364 additions and 7,846 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"eslint.provideLintTask": true,
"eslint.run": "onSave",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
}
}
4,156 changes: 2,154 additions & 2,002 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "beet",
"productName": "Beet Blockchain Companion",
"version": "0.17.0-rc1",
"version": "0.17.0-rc2",
"apiversion": 3,
"description": "Beet is a stand-alone key-manager and signing app for blockchains like BitShares, Bitcoin and others.",
"author": "clockworkgr <[email protected]>",
Expand Down Expand Up @@ -102,4 +102,4 @@
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9"
}
}
}
4 changes: 2 additions & 2 deletions src/components/add-account.vue
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@
</span>
</option>
</select>
<div v-if="selectedImportOptions.length > 1">
<div v-if="selectedImportOptions.length > 0">
<p class="my-3 font-weight-bold">
{{ t('common.bts_importtype_cta') }}
</p>
Expand Down Expand Up @@ -338,7 +338,7 @@
</ui-button>
</router-link>

<span v-if="selectedImportOptions.length > 1">
<span v-if="selectedImportOptions.length > 0">
<span v-if="selectedImport != 0">
<ui-button
raised
Expand Down
Loading

0 comments on commit a1de23c

Please sign in to comment.