Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
api fix, and banner fix (#239)
Browse files Browse the repository at this point in the history
* api fix, and banner fix

* all 3 api's included

* version bump
  • Loading branch information
ozgunozerk committed Jun 2, 2022
1 parent 1e02127 commit f23f1f5
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "subspace-desktop",
"version": "0.6.0",
"version": "0.6.1",
"private": true,
"description": "Subspace desktop",
"author": "Subspace Labs <https://subspace.network>",
Expand Down
2 changes: 1 addition & 1 deletion quasar.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module.exports = configure(function (ctx) {
// Full list of options: https://v2.quasar.dev/quasar-cli/quasar-conf-js#Property%3A-build
build: {
env: {
PUBLIC_API_WS: "wss://aries-farm-rpc-b.subspace.network",
PUBLIC_API_WS: ["wss://eu.gemini-1b.subsapce.network/ws", "wss://na.gemini-1b.subsapce.network/ws", "wss://apac.gemini-1b.subsapce.network/ws"],
LOCAL_API_WS: "ws://localhost:9947",
APP_VERSION: version,
APP_NAME: "subspace-desktop"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subspace-desktop"
version = "0.6.0"
version = "0.6.1"
description = "Subspace desktop"
authors = ["Subspace Labs <https://subspace.network>"]
license = "Apache-2.0"
Expand Down
18 changes: 9 additions & 9 deletions src/layouts/MainLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,26 @@ q-layout(view="hHh lpr fFf")
p {{ appVersion }}
.col-auto.q-mr-md.relative-position
q-badge(color="grey" text-color="white")
.q-pa-xs(style="font-size: 14px") {{ lang.nonIncentivizedLabel }}
.q-pa-xs(style="font-size: 14px") {{ lang.IncentivizedLabel }}
q-tooltip
.col
p.no-margin(style="font-size: 12px") {{ lang.nonIncentivizedTooltip }}
p.no-margin(style="font-size: 12px") {{ lang.IncentivizedTooltip }}
.col-auto.q-mr-md.relative-position(v-if="global.nodeName || oldNodeName")
// TODO: add .cursor-pointer and @click="onNameClick" after node restarting is implemented on the backend
q-badge(
v-if="!isEdittingName"
color="blue-8"
v-if="!isEdittingName"
color="blue-8"
text-color="white"
)
.q-ma-xs(style="font-size: 14px") {{ "Node Name:" }}
.q-mr-xs(
class="text-italic"
class="text-italic"
style="font-size: 14px"
) {{ trimmedName }}
q-input.name-input(
ref="nameInput"
v-else
v-model="global.nodeName"
v-else
v-model="global.nodeName"
@blur="saveName"
@keyup.enter="saveName"
dense="dense"
Expand Down Expand Up @@ -74,8 +74,8 @@ export default defineComponent({
computed: {
trimmedName() {
const { nodeName } = global.data;
return nodeName.length > 20
? `${nodeName.slice(0, 20)}...`
return nodeName.length > 20
? `${nodeName.slice(0, 20)}...`
: nodeName;
}
},
Expand Down
4 changes: 2 additions & 2 deletions src/loc/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@
"continue": "continue"
},
"mainMenu": {
"nonIncentivizedLabel": "Non-Incentivized Testnet",
"nonIncentivizedTooltip": "Rewards (testSSC) you earn from farming do not and will not hold a real value throughout the testnet phase.",
"IncentivizedLabel": "Incentivized Testnet",
"IncentivizedTooltip": "Rewards (testSSC) you earn during incentivized testnet, will contribute to your mainnet rewards!",
"reset": "Reset",
"autoStart": "Start on Boot",
"willAutoLaunch": "Subspace will launch automatically during boot",
Expand Down

0 comments on commit f23f1f5

Please sign in to comment.