File tree 10 files changed +28
-7
lines changed
10 files changed +28
-7
lines changed Original file line number Diff line number Diff line change @@ -266,5 +266,5 @@ jobs:
266
266
uses : ncipollo/release-action@v1
267
267
with :
268
268
allowUpdates : true
269
- tag : v3.0.4
269
+ tag : v3.1.0
270
270
artifacts : " Output/*"
Original file line number Diff line number Diff line change 2
2
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
3
4
4
#define MyAppName " FUNC"
5
- #define MyAppVersion " 3.0.4 "
5
+ #define MyAppVersion " 3.1.0 "
6
6
#define MyAppPublisher " Galaxy Pay, LLC"
7
7
#define MyAppPublisherURL " https://galaxy-pay.com"
8
8
#define MyPublishPath " publish"
Original file line number Diff line number Diff line change 1
1
rm -r Output
2
2
3
- PKG=Output/func_3.0.4_linux -$1
3
+ PKG=Output/func_3.1.0_linux -$1
4
4
5
5
mkdir -p $PKG /lib/systemd/system
6
6
mkdir -p $PKG /opt/func
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ pkgbuild --root publish \
5
5
--install-location /opt/func \
6
6
--scripts pkg/scripts \
7
7
--identifier func.app \
8
- Output/func_3.0.4_darwin -$1 .pkg
8
+ Output/func_3.1.0_darwin -$1 .pkg
Original file line number Diff line number Diff line change 1
1
Package: func
2
- Version: 3.0.4
2
+ Version: 3.1.0
3
3
Section: base
4
4
Priority: optional
5
5
Architecture: amd64
Original file line number Diff line number Diff line change 1
1
Package: func
2
- Version: 3.0.4
2
+ Version: 3.1.0
3
3
Section: base
4
4
Priority: optional
5
5
Architecture: arm64
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " func-webui" ,
3
- "version" : " 3.0.4 " ,
3
+ "version" : " 3.1.0 " ,
4
4
"scripts" : {
5
5
"dev" : " vite" ,
6
6
"build" : " vite build" ,
Original file line number Diff line number Diff line change 11
11
:append-inner-icon =" mdiContentCopy"
12
12
@click:append-inner =" copyVal(token)"
13
13
/>
14
+ <v-select
15
+ label =" BaseLoggerDebugLevel"
16
+ v-model =" baseLoggerDebugLevel"
17
+ variant =" outlined"
18
+ density =" comfortable"
19
+ :items =" [...Array(6).keys()]"
20
+ hint =" Must be 3 or greater for telemetry to work. For best performance, set to 0."
21
+ persistent-hint
22
+ class =" pb-2"
23
+ />
14
24
<v-checkbox-btn v-model =" showDNSBootstrapID" label =" DNS Bootstrap ID" />
15
25
<v-textarea
16
26
:disabled =" !showDNSBootstrapID"
39
49
40
50
<script lang="ts" setup>
41
51
import FUNC from " @/services/api" ;
52
+ import { delay } from " @/utils" ;
42
53
import { mdiContentCopy } from " @mdi/js" ;
43
54
44
55
const props = defineProps ({
@@ -75,6 +86,15 @@ const port = computed({
75
86
},
76
87
});
77
88
89
+ const baseLoggerDebugLevel = computed <number >({
90
+ get() {
91
+ return config .value .BaseLoggerDebugLevel ?? 4 ;
92
+ },
93
+ set(val ) {
94
+ config .value .BaseLoggerDebugLevel = val ;
95
+ },
96
+ });
97
+
78
98
const enableP2P = computed ({
79
99
get() {
80
100
return config .value .EnableP2P ;
@@ -126,6 +146,7 @@ async function saveConfig() {
126
146
});
127
147
if (props .running ) {
128
148
await FUNC .api .put (` ${props .name }/stop ` );
149
+ await delay (500 );
129
150
await FUNC .api .put (` ${props .name }/start ` );
130
151
}
131
152
show .value = false ;
You can’t perform that action at this time.
0 commit comments