Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Bump CLI program to v1.1.0 #14

Merged
merged 48 commits into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
12d467f
minor edits and added delays to pixiv api calls
KJHJason Oct 6, 2022
6090302
touch up on ffmpeg args and edit flag description
KJHJason Oct 6, 2022
2b1e64a
added .apng and .webp to ugoira conversion
KJHJason Oct 7, 2022
b3c4cfd
mostly done
KJHJason Oct 7, 2022
f355160
added thumbnail, images, attachments flags and readme
KJHJason Oct 7, 2022
a9034c5
fixed a bug
KJHJason Oct 7, 2022
deb4149
minor changes
KJHJason Oct 7, 2022
e840c49
a small bug fix
KJHJason Oct 7, 2022
1a8a119
minor edits, considering to add pixiv mobile API
KJHJason Oct 7, 2022
7529ced
removed a line
KJHJason Oct 7, 2022
1438e1b
pixiv mobile wip
KJHJason Oct 8, 2022
76a8ed7
pixiv mobile done
KJHJason Oct 9, 2022
6e761db
edit readme
KJHJason Oct 9, 2022
99ec7f4
added winres files for building for windows
KJHJason Oct 9, 2022
8785e6c
moved files and remove winres.json
KJHJason Oct 9, 2022
ad7bd25
Delete winres.json
KJHJason Oct 9, 2022
a63c8b3
fixed a bug where folder with no content are being created
KJHJason Oct 9, 2022
b549e2c
edit readme
KJHJason Oct 9, 2022
f358f98
removed flags for cobra and some code refactor
KJHJason Mar 4, 2023
7eecffc
bug fixes
KJHJason Mar 4, 2023
4ebd1e2
code refactor wip
KJHJason Mar 5, 2023
2c35558
code refactor mostly done, requires testing
KJHJason Mar 5, 2023
5cc185b
bug fixes, minor optimsations, and code refactor
KJHJason Mar 5, 2023
9fd2d2f
Added cookie file path support
KJHJason Mar 5, 2023
50bf645
oops
KJHJason Mar 5, 2023
5aa7394
code cleanup and added netscape cookie validations
KJHJason Mar 6, 2023
f69346d
code refactor and optimisations
KJHJason Mar 6, 2023
891d124
added spinner to be integrated with the main program
KJHJason Mar 6, 2023
3ce802f
integrated custom made spinner
KJHJason Mar 7, 2023
2315fe8
bug fixes and optimisations
KJHJason Mar 7, 2023
5ce43e1
minor edit
KJHJason Mar 7, 2023
ff9e8df
Code Refactor and Addition of Feature
KJHJason Mar 8, 2023
f5b0e6c
cleanup codes and added bug report template
KJHJason Mar 8, 2023
02e013f
update pull req template
KJHJason Mar 8, 2023
055e16a
edit pull req template again
KJHJason Mar 8, 2023
732f06a
removed whitespaces in pull req template
KJHJason Mar 8, 2023
fd276e2
Code cleanup
KJHJason Mar 8, 2023
fead60d
fixed bugs with pixiv fanbox downloads
KJHJason Mar 8, 2023
a569737
fixed bugs
KJHJason Mar 8, 2023
5646522
bug fixes and edit readme
KJHJason Mar 8, 2023
4dcec61
edit readme
KJHJason Mar 8, 2023
d78f11a
edit readme and overwrite flag desc
KJHJason Mar 8, 2023
e78f048
edit readme
KJHJason Mar 8, 2023
d4bd907
Merge branch 'main' into dev
KJHJason Mar 8, 2023
9855312
fix merge conflicts and improve maintainability
KJHJason Mar 8, 2023
9320e1a
Merge branch 'main' into dev
KJHJason Mar 8, 2023
31e44ab
improve maintainability
KJHJason Mar 8, 2023
361ee42
Merge branch 'dev' of https://github.com/KJHJason/Cultured-Downloader…
KJHJason Mar 8, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 91 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: Bug Report
description: File a bug report here
title: "[Bug]: (Enter a short summary of the bug here)"
labels: ["bug"]
assignees:
- KJHJason

body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!

- type: dropdown
id: os
attributes:
label: Which Operating System are you running the program on?
multiple: true
options:
- Windows
- Linux
- MacOS
validations:
required: true

- type: input
id: program_version
attributes:
label: Program Version
description: What version of the program are you using? (Can be found when running the program or from the exe file name)
validations:
required: true

- type: textarea
id: steps_to_reproduce
attributes:
label: Steps to reproduce the bug
description: This will assist me in finding where it went wrong.
placeholder: Please enter the steps to reproduce the bug that you have encountered...
value: |
1.
2.
3.
4.
validations:
required: true

- type: textarea
id: expected_behaviour
attributes:
label: Expected behaviour
description: A clear and concise description of what you expected to happen.
placeholder: Explain what should have happened instead...
validations:
required: true

- type: dropdown
id: error_code
attributes:
label: What error code did you receive? (If any)
multiple: false
options:
- None
- "1000 (Developer Error)"
- "1001 (Unexpected Error)"
- "1002 (OS Error)"
- "1003 (Input Error)"
- "1004 (CMD Error)"
- "1005 (Connection Error)"
- "1006 (Response Error)"
- "1007 (Download Error)"
- "1008 (JSON Error)"
- "1009 (HTML Error)"
validations:
required: true

- type: textarea
id: error_log_text
attributes:
label: Relevant log output (If any)
description: Please copy and paste the text in the error log that was generated.
validations:
required: false

- type: textarea
id: screenshots
attributes:
label: Screenshots (Optional)
description: Screenshots can be uploaded by simply dragging an image file into this box
validations:
required: false
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Type of additions (Tick those that apply):

<!-- Use ✗/✓ for the following type of additions -->

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)

Expand All @@ -15,6 +17,8 @@ Please add your summary here...

## Checklist (Tick those that apply):

<!-- Use ✗/✓ for the following checklist -->

- [ ] I have read the [contribution guidelines](https://github.com/KJHJason/Cultured-Downloader-CLI/blob/main/CONTRIBUTING.md) and have adhered to it
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
*.json
*.log
*.syso
*.exe
*.exe
src/bin
Loading