Skip to content

Commit

Permalink
v1.0.0: first working version
Browse files Browse the repository at this point in the history
  • Loading branch information
PrincessMortix committed Jan 25, 2024
1 parent c61da72 commit 3d8278f
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*.dll
*.so
*.dylib
*.syso
*.linux
*.mac

# Test binary, built with `go test -c`
*.test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Make sure you have the lastest go compiler. [Download it here](https://go.dev/dl
Easy as:
1. Clone this repository.
2. On the root of this repository, run `go mod tidy`. This will download this project dependencies.
3. To run the application, use `go run .`. To compile, run `go build .`.
3. To run the application, use `go run .`. To compile, run `go build`.
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,5 @@ require (
github.com/akamensky/argparse v1.4.0
github.com/emvi/iso-639-1 v1.1.0
github.com/mergestat/timediff v0.0.3
github.com/princessmortix/gobalt v1.0.2
github.com/princessmortix/gobalt v1.0.4
)


2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ github.com/princessmortix/gobalt v1.0.1 h1:I5RfOb0cqzwscvFYnNUW1PbdKyjsDhSSLb/Lw
github.com/princessmortix/gobalt v1.0.1/go.mod h1:YMW28QoWjxXTY7N67+3H5hIqUDpzsLx4DIJG+I3H9OA=
github.com/princessmortix/gobalt v1.0.2 h1:dYxDG2KEUbljYT6lCMJ5ZsARoq79vscpMWXU/9t1Qdk=
github.com/princessmortix/gobalt v1.0.2/go.mod h1:YMW28QoWjxXTY7N67+3H5hIqUDpzsLx4DIJG+I3H9OA=
github.com/princessmortix/gobalt v1.0.4 h1:U6AXr1987W6iOfkKAF4kX4G/XcgoNDJlDiWdI9y+YGs=
github.com/princessmortix/gobalt v1.0.4/go.mod h1:YMW28QoWjxXTY7N67+3H5hIqUDpzsLx4DIJG+I3H9OA=
2 changes: 0 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,6 @@ func main() {
}
newSettings.VideoQuality = quality

fmt.Println(newSettings)

cobaltRequest, err := gobalt.Run(newSettings)
if err != nil {
if *outputJson {
Expand Down
Binary file added winres/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions winres/winres.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"RT_GROUP_ICON": {
"APP": {
"0000": [
"icon.png"
]
}
},
"RT_MANIFEST": {
"#1": {
"0409": {
"identity": {
"name": "cobalt",
"version": "1.0.0"
},
"description": "cobalt cli version for https://cobalt.tools",
"minimum-os": "vista",
"execution-level": "",
"ui-access": false,
"auto-elevate": false,
"dpi-awareness": "per monitor v2",
"disable-theming": false,
"disable-window-filtering": false,
"high-resolution-scrolling-aware": false,
"ultra-high-resolution-scrolling-aware": false,
"long-path-aware": true,
"printer-driver-isolation": false,
"gdi-scaling": false,
"segment-heap": true,
"use-common-controls-v6": true
}
}
},
"RT_VERSION": {
"#1": {
"0000": {
"fixed": {
"file_version": "1.0.0.0",
"product_version": "1.0.0.0",
"flags": "Release"
},
"info": {
"0409": {
"Comments": "cobalt cli downloader",
"CompanyName": "Princess Mortix",
"FileDescription": "",
"FileVersion": "1.0.0",
"InternalName": "",
"LegalCopyright": "",
"LegalTrademarks": "",
"OriginalFilename": "",
"PrivateBuild": "",
"ProductName": "cobalt cli downloader",
"ProductVersion": "1.0",
"SpecialBuild": ""
}
}
}
}
}
}

0 comments on commit 3d8278f

Please sign in to comment.