Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
nano2dev committed Mar 15, 2024
1 parent 4baa08b commit 2ef2224
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion docs/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
},
"pow-multiplier": "PoW Multiplier",
"pow-options": {
"external-nano-to": "Nano.to Pro RPC",
"external-nano-to": "Nano.to Business RPC",
"best-option-available": "Bananno dPoW",
"client-side-cpu-slowest": "Local CPU (Slowest)",
"client-side-gpu-webgl": "Local GPU/WebGL",
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
},
"pow-multiplier": "PoW Multiplier",
"pow-options": {
"external-nano-to": "Nano.to Pro RPC",
"external-nano-to": "Nano.to Business RPC",
"best-option-available": "Bananno dPoW",
"client-side-cpu-slowest": "Local CPU (Slowest)",
"client-side-gpu-webgl": "Local GPU/WebGL",
Expand Down
22 changes: 11 additions & 11 deletions docs/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -9627,7 +9627,7 @@ function ConfigureAppComponent_div_0_div_144_span_11_Template(rf, ctx) {
function ConfigureAppComponent_div_0_div_144_span_12_Template(rf, ctx) {
if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵelementStart"](0, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵtext"](1, " Unlimited access to Nano RPC. ");
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵtext"](1, " Unlimited Access to Nano Nodes. ");
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵelementStart"](2, "a", 64);
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵtext"](3, "Get Nano.to Business API Key");
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵelementEnd"]();
Expand Down Expand Up @@ -9679,7 +9679,7 @@ function ConfigureAppComponent_div_0_div_144_Template(rf, ctx) {
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵadvance"](2);
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵproperty"]("ngIf", ctx_r15.serverAPI && !ctx_r15.serverAPI.includes("nano.to"));
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵadvance"](1);
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵproperty"]("ngIf", ctx_r15.serverAPI && ctx_r15.serverAPI.includes("nano.to"));
_angular_core__WEBPACK_IMPORTED_MODULE_15__["ɵɵproperty"]("ngIf", ctx_r15.serverAPI && ctx_r15.serverAPI.includes("nano.to") || ctx_r15.serverAPI && ctx_r15.serverAPI.toLowerCase().includes("random"));
}
}

Expand Down Expand Up @@ -30751,14 +30751,14 @@ class AppSettingsService {
auth: '',
shouldRandom: true,
},
{
name: 'Random',
value: 'random',
api: null,
ws: null,
auth: null,
shouldRandom: false,
},
// {
// name: 'Random',
// value: 'random',
// api: null,
// ws: null,
// auth: null,
// shouldRandom: false,
// },
{
name: 'Custom Server',
value: 'custom',
Expand All @@ -30768,7 +30768,7 @@ class AppSettingsService {
shouldRandom: false,
},
{
name: 'Offline',
name: 'Offline Mode',
value: 'offline',
api: null,
ws: null,
Expand Down
2 changes: 1 addition & 1 deletion docs/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/translation1.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/translation2.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/app/components/configure-app/configure-app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@ <h3 class="uk-card-title">{{ 'configure-app.server-settings' | transloco }}</h3>
<input [(ngModel)]="serverAuth" class="uk-input uk-margin-small-bottom" type="text" placeholder="Optional">
<span class="uk-text-meta">
<span *ngIf="serverAPI && !serverAPI.includes('nano.to')">{{ 'configure-app.this-has-to-be-a-valid-authorization-header' | transloco }}</span>
<span *ngIf="serverAPI && serverAPI.includes('nano.to')">
Unlimited access to Nano RPC.
<span *ngIf="serverAPI && serverAPI.includes('nano.to') || serverAPI && serverAPI.toLowerCase().includes('random')">
Unlimited Access to Nano Nodes.
<a href="https://rpc.nano.to/?key" target="_blank">Get Nano.to Business API Key</a>
</span>
</span>
Expand Down
18 changes: 9 additions & 9 deletions src/app/services/app-settings.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ export class AppSettingsService {
shouldRandom: true,
},

{
name: 'Random',
value: 'random',
api: null,
ws: null,
auth: null,
shouldRandom: false,
},
// {
// name: 'Random',
// value: 'random',
// api: null,
// ws: null,
// auth: null,
// shouldRandom: false,
// },

{
name: 'Custom Server',
Expand All @@ -124,7 +124,7 @@ export class AppSettingsService {
},

{
name: 'Offline',
name: 'Offline Mode',
value: 'offline',
api: null,
ws: null,
Expand Down
2 changes: 1 addition & 1 deletion src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
},
"pow-multiplier": "PoW Multiplier",
"pow-options": {
"external-nano-to": "Nano.to Pro RPC",
"external-nano-to": "Nano.to Business RPC",
"best-option-available": "Bananno dPoW",
"client-side-cpu-slowest": "Local CPU (Slowest)",
"client-side-gpu-webgl": "Local GPU/WebGL",
Expand Down
2 changes: 1 addition & 1 deletion src/assets/i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
},
"pow-multiplier": "PoW Multiplier",
"pow-options": {
"external-nano-to": "Nano.to Pro RPC",
"external-nano-to": "Nano.to Business RPC",
"best-option-available": "Bananno dPoW",
"client-side-cpu-slowest": "Local CPU (Slowest)",
"client-side-gpu-webgl": "Local GPU/WebGL",
Expand Down

0 comments on commit 2ef2224

Please sign in to comment.