mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-24 10:53:24 +00:00
Fix version, release_note and small typo
This commit is contained in:

committed by
Reckless_Satoshi

parent
293c0b604d
commit
66c16760f6
4
frontend/package-lock.json
generated
4
frontend/package-lock.json
generated
@ -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",
|
||||||
|
@ -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": {
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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();
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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()) {
|
||||||
|
4
mobile/package-lock.json
generated
4
mobile/package-lock.json
generated
@ -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",
|
||||||
|
@ -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",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"major": 0,
|
"major": 0,
|
||||||
"minor": 5,
|
"minor": 6,
|
||||||
"patch": 3
|
"patch": 0
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user