Fix version, release_note and small typo

This commit is contained in:
Reckless_Satoshi 2023-10-27 03:40:42 -07:00 committed by Reckless_Satoshi
parent 293c0b604d
commit 66c16760f6
8 changed files with 13 additions and 13 deletions

View File

@ -1,12 +1,12 @@
{ {
"name": "frontend", "name": "frontend",
"version": "0.5.3", "version": "0.6.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "frontend", "name": "frontend",
"version": "0.5.3", "version": "0.6.0",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-properties": "^7.18.6",

View File

@ -1,6 +1,6 @@
{ {
"name": "frontend", "name": "frontend",
"version": "0.5.3", "version": "0.6.0",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -213,9 +213,9 @@ const FederationTable = ({
const onEnableChange = function (shortAlias: string): void { const onEnableChange = function (shortAlias: string): void {
if (federation.getCoordinator(shortAlias).enabled) { if (federation.getCoordinator(shortAlias).enabled) {
federation.disbaleCoordinator(shortAlias); federation.disableCoordinator(shortAlias);
} else { } else {
federation.enaleCoordinator(shortAlias); federation.enableCoordinator(shortAlias);
} }
}; };

View File

@ -113,11 +113,11 @@ export class Federation {
return this.coordinators[shortAlias]; return this.coordinators[shortAlias];
}; };
disbaleCoordinator = (shortAlias: string) => { disableCoordinator = (shortAlias: string) => {
this.coordinators[shortAlias].disable(); this.coordinators[shortAlias].disable();
}; };
enaleCoordinator = (shortAlias: string) => { enableCoordinator = (shortAlias: string) => {
this.coordinators[shortAlias].enable(); this.coordinators[shortAlias].enable();
}; };
} }

View File

@ -152,7 +152,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1 versionCode 1
versionName "0.5.3-alpha" versionName "0.6.0-alpha"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
if (isNewArchitectureEnabled()) { if (isNewArchitectureEnabled()) {

View File

@ -1,12 +1,12 @@
{ {
"name": "robosats", "name": "robosats",
"version": "0.5.3", "version": "0.6.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "robosats", "name": "robosats",
"version": "0.5.3", "version": "0.6.0",
"dependencies": { "dependencies": {
"@react-native-clipboard/clipboard": "^1.12.1", "@react-native-clipboard/clipboard": "^1.12.1",
"@react-native-community/netinfo": "^11.1.1", "@react-native-community/netinfo": "^11.1.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "robosats", "name": "robosats",
"version": "0.5.3", "version": "0.6.0",
"private": true, "private": true,
"scripts": { "scripts": {
"android": "react-native run-android", "android": "react-native run-android",

View File

@ -1,5 +1,5 @@
{ {
"major": 0, "major": 0,
"minor": 5, "minor": 6,
"patch": 3 "patch": 0
} }