Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Realign v2.5.1 #3489

Merged
merged 3 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@

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.

### [2.5.1](https://github.com/Superhero-com/superhero-wallet/compare/v2.5.0...v2.5.1) (2025-02-06)


### Features

* be able to set ethplorer api key ([f409883](https://github.com/Superhero-com/superhero-wallet/commit/f409883892408dba7e35df7c46ec1992ce6c8ab4))
* show full createCommunity contract call info ([34ed221](https://github.com/Superhero-com/superhero-wallet/commit/34ed2218aaf5d2e45b850d10523af62ec89795f5))
* show internal spendTx correctly ([35bd814](https://github.com/Superhero-com/superhero-wallet/commit/35bd8143e397bff1da20b3a32e713a740957d419))


### Bug Fixes

* **aeternity:** correct usage of onAccount property ([b2227b0](https://github.com/Superhero-com/superhero-wallet/commit/b2227b0909d39a088c4b5c037fdd957864d1cbeb))
* be able to show set password help modal ([453c777](https://github.com/Superhero-com/superhero-wallet/commit/453c7775d5cebf01a8cce67ca061b65f75a520b7))
* do not overlap token name with amount in TransactionAssetRow ([08b6df1](https://github.com/Superhero-com/superhero-wallet/commit/08b6df14ba9767464fdcc8d5655e8c42d321d4c9))
* do not rewrite encrypted state with default value on initialization ([1328fcf](https://github.com/Superhero-com/superhero-wallet/commit/1328fcf396bee6181735ad452f541570a48d38fe))
* **ethereum:** show correct token transaction details ([2f3fa84](https://github.com/Superhero-com/superhero-wallet/commit/2f3fa841229055c44f6229a790b1bb190c652909))
* show correct information for loaded transactions ([621f082](https://github.com/Superhero-com/superhero-wallet/commit/621f082e67187b72462b683ca5fac737ee0ca8c3))


### Maintenance

* adjust transaction details page ([238e022](https://github.com/Superhero-com/superhero-wallet/commit/238e022056428adc16e34536361509f54329ff42))
* change several icons style ([24a75a0](https://github.com/Superhero-com/superhero-wallet/commit/24a75a02b26e1fd3e7dd78cc0f5719249e83635b))
* update github actions ([9883c3a](https://github.com/Superhero-com/superhero-wallet/commit/9883c3aced519d98dc47aaba79a7425c367326c5))


### Performance

* reduce the number of name check requests ([f294b29](https://github.com/Superhero-com/superhero-wallet/commit/f294b292b708886b23f04f66f57da9619ac1f46b))

## [2.5.0](https://github.com/Superhero-com/superhero-wallet/compare/v2.4.0...v2.5.0) (2025-01-30)


Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.superhero.cordova"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 20500
versionName "2.5.0"
versionCode 20501
versionName "2.5.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.5.0;
MARKETING_VERSION = 2.5.1;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = com.superhero.cordova;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -390,7 +390,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.5.0;
MARKETING_VERSION = 2.5.1;
PRODUCT_BUNDLE_IDENTIFIER = com.superhero.cordova;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
Expand Down
4 changes: 2 additions & 2 deletions 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": "2.5.0",
"version": "2.5.1",
"description": "Superhero wallet",
"author": "Superhero",
"license": "MIT",
Expand Down
5 changes: 1 addition & 4 deletions src/protocols/aeternity/libs/AeSdkSuperhero.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ export class AeSdkSuperhero extends AeSdkWallet {
this.nodeNetworkId = nodeNetworkId;
}

_resolveAccount(options: any) {
if (options) {
return super._resolveAccount(options);
}
_resolveAccount() {
// TODO cache the account instead of instantiating it whenever the library is asked for it
return new AeAccountHdWallet(this.nodeNetworkId);
}
Expand Down
Loading