Skip to content

Commit

Permalink
Merge pull request #1293 from aeternity/release/v0.9.1
Browse files Browse the repository at this point in the history
Release/v0.9.1
  • Loading branch information
etharner authored Sep 16, 2021
2 parents 995eed0 + 41c0232 commit 05d6d8f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.9.1](https://github.com/aeternity/superhero-wallet/compare/v0.9.0...v0.9.1) (2021-09-16)


### Maintenance

* **paste:** disable paste functionality ([ccb78d8](https://github.com/aeternity/superhero-wallet/commit/ccb78d89a6124469b18575810dfb8a454a949b08))

## [0.9.0](https://github.com/aeternity/superhero-wallet/compare/v0.8.2...v0.9.0) (2021-09-14)


Expand Down
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<widget id="com.superhero.cordova" version="0.9.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="com.superhero.cordova" version="0.9.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Superhero</name>
<description>Superhero wallet</description>
<author email="[email protected]" href="http://cordova.io">
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "superhero-wallet",
"version": "0.9.0",
"version": "0.9.1",
"description": "Superhero wallet",
"author": "Superhero",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/background/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ browser.runtime.onMessage.addListener(async (msg, sender) => {
return store.getters.isLoggedIn;
}

if (method === 'paste') {
if (process.env.UNFINISHED_FEATURES && method === 'paste') {
let result = '';
const textarea = document.createElement('textarea');
document.body.appendChild(textarea);
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = (isProd) => ({
'videoCapture',
'activeTab',
'clipboardWrite',
'clipboardRead',
...process.env.UNFINISHED_FEATURES ? ['clipboardRead'] : [],
'contextMenus',
'notifications',
'tabs',
Expand Down
2 changes: 2 additions & 0 deletions src/popup/router/components/NameItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
<Save />
</ButtonPlain>
<ButtonPlain
v-if="UNFINISHED_FEATURES"
v-show="!newPointer.length"
@click="insertValueFromClipboard"
>
Expand Down Expand Up @@ -154,6 +155,7 @@ export default {
showInput: false,
error: false,
nameHash: '',
UNFINISHED_FEATURES: process.env.UNFINISHED_FEATURES,
}),
subscriptions() {
return pick(this.$store.state.observables, ['topBlockHeight']);
Expand Down
1 change: 1 addition & 0 deletions src/popup/utils/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ export const categorizeContractCallTxObject = (transaction) => {
};

export const readValueFromClipboard = async () => {
if (!process.env.UNFINISHED_FEATURES) return undefined;
let value = '';
switch (process.env.PLATFORM) {
case 'cordova':
Expand Down

0 comments on commit 05d6d8f

Please sign in to comment.