mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 02:46:28 +00:00
Fix version, release_note and small typo
This commit is contained in:
parent
293c0b604d
commit
66c16760f6
4
frontend/package-lock.json
generated
4
frontend/package-lock.json
generated
@ -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",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "frontend",
|
||||
"version": "0.5.3",
|
||||
"version": "0.6.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -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();
|
||||
};
|
||||
}
|
||||
|
@ -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()) {
|
||||
|
4
mobile/package-lock.json
generated
4
mobile/package-lock.json
generated
@ -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",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "robosats",
|
||||
"version": "0.5.3",
|
||||
"version": "0.6.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"android": "react-native run-android",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"major": 0,
|
||||
"minor": 5,
|
||||
"patch": 3
|
||||
"minor": 6,
|
||||
"patch": 0
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user