Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PetterKraabol/Twitch-Chat-Downloader
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.0.7
Choose a base ref
...
head repository: PetterKraabol/Twitch-Chat-Downloader
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 339 additions and 164 deletions.
  1. +2 −0 .github/FUNDING.yml
  2. +15 −0 .sonarcloud.properties
  3. +1 −1 LICENSE
  4. +7 −7 Pipfile
  5. +139 −79 Pipfile.lock
  6. +1 −1 publish.sh
  7. +2 −2 readme.md
  8. +7 −8 setup.py
  9. +16 −3 tcd/__init__.py
  10. +16 −0 tcd/arguments.py
  11. +28 −7 tcd/downloader.py
  12. +6 −5 tcd/formats/custom.py
  13. +3 −3 tcd/formats/format.py
  14. +6 −5 tcd/formats/srt.py
  15. +7 −6 tcd/formats/ssa.py
  16. +5 −4 tcd/formatter.py
  17. +20 −15 tcd/logger.py
  18. +44 −15 tcd/pipe.py
  19. +11 −2 tcd/settings.py
  20. +3 −1 tcd/settings.reference.json
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github: []
custom: ['https://www.paypal.me/petterkraabol']
15 changes: 15 additions & 0 deletions .sonarcloud.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Path to sources
sonar.sources=tcd/
#sonar.exclusions=
#sonar.inclusions=

# Path to tests
#sonar.tests=
#sonar.test.exclusions=
#sonar.test.inclusions=

# Source encoding
sonar.sourceEncoding=UTF-8

# Exclusions for copy-paste detection
#sonar.cpd.exclusions=
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Petter Kraabøl
Copyright (c) 2022 Petter Kraabøl

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
14 changes: 7 additions & 7 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -4,14 +4,14 @@ verify_ssl = true
name = "pypi"

[packages]
requests = "*"
python-dateutil = "*"
pytz = ">=2018.9"
twitch-python = ">=0.0.11"
requests = "2.27.1"
python-dateutil = "2.8.2"
pytz = "2022.1"
twitch-python = "0.0.20"

[dev-packages]
wheel = "*"
twine = "*"
wheel = "0.37.1"
twine = "4.0.0"

[requires]
python_version = "3.7"
python_version = "3.10"
218 changes: 139 additions & 79 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash

python setup.py sdist bdist_wheel
./setup.py sdist bdist_wheel
twine upload dist/*
Loading