File tree 8 files changed +14
-9
lines changed
8 files changed +14
-9
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.4.0
269
+ tag : v3.4.1
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.4.0 "
5
+ #define MyAppVersion " 3.4.1 "
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.4.0_linux -$1
3
+ PKG=Output/func_3.4.1_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.4.0_darwin -$1 .pkg
8
+ Output/func_3.4.1_darwin -$1 .pkg
Original file line number Diff line number Diff line change 1
1
Package: func
2
- Version: 3.4.0
2
+ Version: 3.4.1
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.4.0
2
+ Version: 3.4.1
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.4.0 " ,
3
+ "version" : " 3.4.1 " ,
4
4
"scripts" : {
5
5
"dev" : " vite" ,
6
6
"build" : " vite build" ,
Original file line number Diff line number Diff line change @@ -399,8 +399,13 @@ function loadDefaults() {
399
399
}
400
400
401
401
function viewRewards(item : Participation ) {
402
- const url = ` https://algonoderewards.com/${item .address } ` ;
403
- window .open (url , " _blank" );
402
+ const url =
403
+ props .name === " Algorand"
404
+ ? ` https://algonoderewards.com/${item .address } `
405
+ : props .name === " Voi"
406
+ ? ` https://voirewards.com/wallet/${item .address }#epochs `
407
+ : undefined ;
408
+ if (url ) window .open (url , " _blank" );
404
409
}
405
410
406
411
function isConnected(item : Participation ) {
You can’t perform that action at this time.
0 commit comments