Skip to content

Commit

Permalink
feat: description texts
Browse files Browse the repository at this point in the history
  • Loading branch information
WizardOfCodez committed Jan 23, 2022
1 parent 63ea89b commit 23ad333
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
11 changes: 9 additions & 2 deletions frontend/src/components/Modals/SettingsModal/SettingsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
</ControlWrapper>
<ControlWrapper title="Workers per client">
<template slot="descr">
<div>Workers per client descr</div>
<div>
Number of parallel workers taking care of Surge tasks. Decreasing
can result in more stable connections. <b>(Default: 8)</b>
</div>
</template>
<div class="settings__slider">
<VueSlider
Expand All @@ -41,7 +44,11 @@

<ControlWrapper title="Number of NKN multiclients">
<template slot="descr">
<div>Number of NKN multiclients descr</div>
<div>
Number of NKN clients used per thread. A higher number increases
reliability and reduces latency at the cost of more bandwidth
usage. <b>(Default: 4)</b>
</div>
</template>
<div class="settings__slider">
<VueSlider
Expand Down
10 changes: 4 additions & 6 deletions frontend/wailsjs/runtime/runtime.d.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
interface Position {
export interface Position {
x: number;
y: number;
}

interface Size {
export interface Size {
w: number;
h: number;
}

interface RGBA {
export interface RGBA {
r: number;
g: number;
b: number;
a: number;
}


interface runtime {
export interface runtime {
EventsEmit(eventName: string, data?: any): void;

EventsOn(eventName: string, callback: (data?: any) => void): void;
Expand Down Expand Up @@ -83,5 +83,3 @@ declare global {
runtime: runtime;
}
}

export { };
Loading

0 comments on commit 23ad333

Please sign in to comment.