File tree 5 files changed +33
-12
lines changed
5 files changed +33
-12
lines changed Original file line number Diff line number Diff line change 17
17
- ' **.ogg'
18
18
- ' **.zip'
19
19
pull_request :
20
- branches : [ master , dev ]
20
+ branches : [ main , dev ]
21
21
22
22
env :
23
23
module_id : ClockMod
Original file line number Diff line number Diff line change @@ -36,12 +36,8 @@ if ($qmodName -eq "")
36
36
exit
37
37
}
38
38
39
- if ($package -eq $true ) {
40
- $qmodName = " $ ( $env: module_id ) _$ ( $env: version ) "
41
- echo " Actions: Packaging QMod $qmodName "
42
- }
43
- if (($args.Count -eq 0 ) -And $package -eq $false ) {
44
- echo " Creating QMod $qmodName "
39
+ if (($args.Count -eq 0 -or $dev -eq $true ) -And $package -eq $false ) {
40
+ echo " Packaging QMod $qmodName "
45
41
& $PSScriptRoot / build.ps1 - clean:$clean
46
42
47
43
if ($LASTEXITCODE -ne 0 ) {
@@ -67,6 +63,16 @@ if ((-not ($cover -eq "./")) -and (Test-Path $cover))
67
63
echo " No cover Image found"
68
64
}
69
65
66
+ if ($package -eq $true -And $env: version.Contains (' -Dev' )) {
67
+ $qmodName = " $ ( $env: module_id ) _$ ( $env: version ) "
68
+ echo " Actions: Packaging QMod $qmodName "
69
+ } elseif ($package -eq $true ) {
70
+ $qmodName = " $ ( $env: module_id ) "
71
+ echo " Actions: Packaging QMod $qmodName "
72
+ } else {
73
+ $qmodName += " _$ ( $modJson.version ) "
74
+ }
75
+
70
76
foreach ($mod in $modJson.modFiles )
71
77
{
72
78
$path = " ./build/" + $mod
Original file line number Diff line number Diff line change 3
3
"name" : " Clock Mod" ,
4
4
"id" : " ClockMod" ,
5
5
"author" : " BoopetyDoopety, EnderdracheLP" ,
6
- "version" : " 1.5.2" ,
6
+ "version" : " 1.5.2-Dev " ,
7
7
"packageId" : " com.beatgames.beatsaber" ,
8
8
"packageVersion" : " 1.19.1" ,
9
9
"description" : " Displays the time in game. Alternatively also the Battery Percentage" ,
10
+ "coverImage" : " Cover.jpg" ,
10
11
"dependencies" : [
11
12
{
12
13
"version" : " ^0.15.7" ,
13
14
"id" : " custom-types" ,
14
15
"downloadIfMissing" : " https://github.com/sc2ad/Il2CppQuestTypePatching/releases/download/v0.15.8/CustomTypes.qmod"
15
16
},
16
17
{
17
- "version" : " ^0.21 .0" ,
18
+ "version" : " ^0.20 .0" ,
18
19
"id" : " codegen" ,
19
- "downloadIfMissing" : " https://github.com/sc2ad/BeatSaber-Quest-Codegen/releases/download/v0.21 .0/Codegen.qmod"
20
+ "downloadIfMissing" : " https://github.com/sc2ad/BeatSaber-Quest-Codegen/releases/download/v0.20 .0/Codegen.qmod"
20
21
},
21
22
{
22
23
"version" : " ^0.13.2" ,
23
24
"id" : " questui" ,
24
- "downloadIfMissing" : " https://github.com/darknight1050/questui/releases/download/v0.13.3 /QuestUI.qmod"
25
+ "downloadIfMissing" : " https://github.com/darknight1050/questui/releases/download/v0.13.2 /QuestUI.qmod"
25
26
}
26
27
],
27
28
"modFiles" : [
Original file line number Diff line number Diff line change 4
4
"info" : {
5
5
"name" : " Clock Mod" ,
6
6
"id" : " ClockMod" ,
7
- "version" : " 1.5.2" ,
7
+ "version" : " 1.5.2-Dev " ,
8
8
"url" : null ,
9
9
"additionalData" : {
10
10
"overrideSoName" : " libClockMod.so"
Original file line number Diff line number Diff line change
1
+ ** Features:**
2
+ - Option to switch between 12/24 Hour format.
3
+ - Option to display seconds.
4
+ - Option to hide clock in song, "No Text And HUD" will do the same.
5
+ - Option to change font size (default: 3.5).
6
+ - Option to show Headset Battery charge Indicator, will change color according to charge, off by default.
7
+ - Option to Rainbowify the Clock.
8
+ - Option to change Clock Color, (unless rainbowify is on).
9
+ - Option to choose between the Clock being at the Top or the Bottom.
10
+
11
+ __ ** Changelog:** __
12
+ - Update to 1.19.1
13
+
14
+ __ ** Download:** __
You can’t perform that action at this time.
0 commit comments