Skip to content

Commit 3d8278f

Browse files
author
PrincessMortix
committed
v1.0.0: first working version
1 parent c61da72 commit 3d8278f

File tree

7 files changed

+68
-6
lines changed

7 files changed

+68
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
*.dll
88
*.so
99
*.dylib
10+
*.syso
11+
*.linux
12+
*.mac
1013

1114
# Test binary, built with `go test -c`
1215
*.test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Make sure you have the lastest go compiler. [Download it here](https://go.dev/dl
1313
Easy as:
1414
1. Clone this repository.
1515
2. On the root of this repository, run `go mod tidy`. This will download this project dependencies.
16-
3. To run the application, use `go run .`. To compile, run `go build .`.
16+
3. To run the application, use `go run .`. To compile, run `go build`.

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,5 @@ require (
66
github.com/akamensky/argparse v1.4.0
77
github.com/emvi/iso-639-1 v1.1.0
88
github.com/mergestat/timediff v0.0.3
9-
github.com/princessmortix/gobalt v1.0.2
9+
github.com/princessmortix/gobalt v1.0.4
1010
)
11-
12-

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ github.com/princessmortix/gobalt v1.0.1 h1:I5RfOb0cqzwscvFYnNUW1PbdKyjsDhSSLb/Lw
88
github.com/princessmortix/gobalt v1.0.1/go.mod h1:YMW28QoWjxXTY7N67+3H5hIqUDpzsLx4DIJG+I3H9OA=
99
github.com/princessmortix/gobalt v1.0.2 h1:dYxDG2KEUbljYT6lCMJ5ZsARoq79vscpMWXU/9t1Qdk=
1010
github.com/princessmortix/gobalt v1.0.2/go.mod h1:YMW28QoWjxXTY7N67+3H5hIqUDpzsLx4DIJG+I3H9OA=
11+
github.com/princessmortix/gobalt v1.0.4 h1:U6AXr1987W6iOfkKAF4kX4G/XcgoNDJlDiWdI9y+YGs=
12+
github.com/princessmortix/gobalt v1.0.4/go.mod h1:YMW28QoWjxXTY7N67+3H5hIqUDpzsLx4DIJG+I3H9OA=

main.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,6 @@ func main() {
182182
}
183183
newSettings.VideoQuality = quality
184184

185-
fmt.Println(newSettings)
186-
187185
cobaltRequest, err := gobalt.Run(newSettings)
188186
if err != nil {
189187
if *outputJson {

winres/icon.png

6.7 KB
Loading

winres/winres.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"RT_GROUP_ICON": {
3+
"APP": {
4+
"0000": [
5+
"icon.png"
6+
]
7+
}
8+
},
9+
"RT_MANIFEST": {
10+
"#1": {
11+
"0409": {
12+
"identity": {
13+
"name": "cobalt",
14+
"version": "1.0.0"
15+
},
16+
"description": "cobalt cli version for https://cobalt.tools",
17+
"minimum-os": "vista",
18+
"execution-level": "",
19+
"ui-access": false,
20+
"auto-elevate": false,
21+
"dpi-awareness": "per monitor v2",
22+
"disable-theming": false,
23+
"disable-window-filtering": false,
24+
"high-resolution-scrolling-aware": false,
25+
"ultra-high-resolution-scrolling-aware": false,
26+
"long-path-aware": true,
27+
"printer-driver-isolation": false,
28+
"gdi-scaling": false,
29+
"segment-heap": true,
30+
"use-common-controls-v6": true
31+
}
32+
}
33+
},
34+
"RT_VERSION": {
35+
"#1": {
36+
"0000": {
37+
"fixed": {
38+
"file_version": "1.0.0.0",
39+
"product_version": "1.0.0.0",
40+
"flags": "Release"
41+
},
42+
"info": {
43+
"0409": {
44+
"Comments": "cobalt cli downloader",
45+
"CompanyName": "Princess Mortix",
46+
"FileDescription": "",
47+
"FileVersion": "1.0.0",
48+
"InternalName": "",
49+
"LegalCopyright": "",
50+
"LegalTrademarks": "",
51+
"OriginalFilename": "",
52+
"PrivateBuild": "",
53+
"ProductName": "cobalt cli downloader",
54+
"ProductVersion": "1.0",
55+
"SpecialBuild": ""
56+
}
57+
}
58+
}
59+
}
60+
}
61+
}

0 commit comments

Comments
 (0)