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",
"version": "0.5.3",
"version": "0.6.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "frontend",
"version": "0.5.3",
"version": "0.6.0",
"license": "ISC",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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