Skip to content

Commit

Permalink
Upgrade to v1.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
earrietadev committed Oct 15, 2024
1 parent 23013b9 commit 31790fe
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.31.0] - 2024-10-14
### Add
- Add a field to the HorizonApis (Moving naming to "NetworkApis" step by step) so it accepts an RPC url
- Allow sending payments to contracts

### Change
- Remove the "advance mode" switch from the settings page and instead assume all users are looking for an advance wallet
- Refactor the logic behind the "operations" page and now use "effects" to focus only on debits/credits
- Update crypto-js package and stop using PBKDF2

## [1.30.0] - 2024-09-16
### Add
- Add a switch to the path payment component so it's easy to exchange the `fromAsset` with `toAsset`
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "app.xbull.mobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 55
versionName "1.30.0"
versionCode 56
versionName "1.31.0"
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/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.30.0</string>
<string>1.31.0</string>
<key>CFBundleVersion</key>
<string>1.2</string>
<string>1.3</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSCameraUsageDescription</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xbull",
"version": "1.30.0",
"version": "1.31.0",
"scripts": {
"ng": "./node_modules/.bin/ng",
"start": "./node_modules/.bin/ng serve",
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.extension.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ export const environment = {
networkPassphrase: Networks.TESTNET,
canRemove: false,
}],
version: '1.30.0',
version: '1.31.0',
};
2 changes: 1 addition & 1 deletion src/environments/environment.extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const environment = {
networkPassphrase: Networks.TESTNET,
canRemove: false,
}],
version: '1.30.0',
version: '1.31.0',
};

/*
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.mobile.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ export const environment = {
networkPassphrase: Networks.PUBLIC,
canRemove: true,
}],
version: '1.30.0',
version: '1.31.0',
};
2 changes: 1 addition & 1 deletion src/environments/environment.mobile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ export const environment = {
networkPassphrase: Networks.PUBLIC,
canRemove: true,
}],
version: '1.30.0'
version: '1.31.0'
};
2 changes: 1 addition & 1 deletion src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ export const environment = {
networkPassphrase: Networks.PUBLIC,
canRemove: true,
}],
version: '1.30.0'
version: '1.31.0'
};
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const environment = {
networkPassphrase: Networks.PUBLIC,
canRemove: true,
}],
version: '1.30.0'
version: '1.31.0'
};

/*
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.v2.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "xBull Wallet",
"version": "1.30.0",
"version": "1.31.0",
"description": "A powerful but easy to use Stellar network wallet.",
"homepage_url": "https://xbull.app",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.v3.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "xBull Wallet",
"version": "1.30.0",
"version": "1.31.0",
"description": "A powerful but easy to use Stellar network wallet.",
"homepage_url": "https://xbull.app",
"icons": {
Expand Down

0 comments on commit 31790fe

Please sign in to comment.