Skip to content

Commit

Permalink
Merge pull request #240 from bitshares/develop
Browse files Browse the repository at this point in the history
Merge develop branch into master branch
  • Loading branch information
sschiessl-bcp authored Mar 8, 2024
2 parents 455f55a + 2fc31f4 commit 8d82324
Show file tree
Hide file tree
Showing 59 changed files with 28,996 additions and 19,891 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Thumbs.db
/app/app.js
/app/modal.js
/app/background.js
/app/receipt.js
/app/**/*.map
/app/*.ttf
/app/*.woff
Expand Down
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"
}
}
12 changes: 12 additions & 0 deletions app/receipt.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body class="text-center">
<div class="main" id="receipt">
<Receipt ref="receiptComp"></Receipt>
</div>
<script src="receipt.js"></script>
</body>
</html>
7 changes: 6 additions & 1 deletion app/translations/operations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@
"accept_btn": "Sign & Broadcast",
"sign_and_broadcast_btn": "Sign & Broadcast",
"sign_btn": "Sign",
"reject_btn": "Ignore"
"reject_btn": "Ignore",
"receipt": {
"title": "Do you want a receipt?",
"yes": "Yes, I want a receipt.",
"no": "No, I don't want a receipt."
}
},
"whitelist": {
"prompt": "Whitelist subsequent '{{method}}' requests from this app?"
Expand Down
1 change: 1 addition & 0 deletions build/webpack.app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module.exports = env => {
entry: {
background: "./src/background.js",
modal: "./src/modal.js",
receipt: "./src/receipt.js",
app: "./src/app.js"
},
output: {
Expand Down
Loading

0 comments on commit 8d82324

Please sign in to comment.