├── .github └── workflows │ ├── python-package.yml │ └── python-test.yml ├── .gitignore ├── DistributionTool ├── DistributionTool.exe ├── Pipfile ├── chhtv icon.png ├── chhtvlogo.png ├── config.cfg ├── credits.md ├── creds └── challonge-api-key ├── default-tournament.json ├── errors.py ├── how-to-contribute.md ├── loaders.py ├── patchnotes.md ├── processors.py ├── readme.md ├── roadmap.md ├── static ├── blank-team-icon.png ├── chhtv.ico ├── chhtvlogo.png ├── empty-graphic.png ├── favicon.ico ├── form.ui ├── league_overlay.png └── tbd-team-icon.png ├── streamdeck ├── README.md └── com.chhtv.udts.sdPlugin │ ├── action │ └── images │ │ ├── blue-win.png │ │ ├── blue-win@2x.png │ │ ├── chhtv.png │ │ ├── chhtv@2x.png │ │ ├── forcerefreshstream.png │ │ ├── forcerefreshstream@2x.png │ │ ├── orangered.png │ │ ├── orangered@2x.png │ │ ├── red-win.png │ │ ├── red-win@2x.png │ │ ├── sideswap.png │ │ ├── sideswap@2x.png │ │ ├── undo.png │ │ └── undo@2x.png │ ├── app.js │ ├── common.js │ ├── en.json │ ├── index.html │ └── manifest.json ├── templates.py ├── templates └── web_controller.html ├── tests.py ├── tests ├── challonge_load.json ├── default-tournament.json ├── loaded_from_challonge.json └── test_labels │ ├── current-match-blue-hero.png │ ├── current-match-blue-icon.png │ ├── current-match-blue-name.txt │ ├── current-match-blue-score.txt │ ├── current-match-blue-tricode.txt │ ├── current-match-red-hero.png │ ├── current-match-red-icon.png │ ├── current-match-red-name.txt │ ├── current-match-red-score.txt │ ├── current-match-red-tricode.txt │ ├── current-match-scores-horizontal.txt │ ├── current-match-scores.txt │ ├── current-match-team1-hero.png │ ├── current-match-team1-icon.png │ ├── current-match-team2-hero.png │ ├── current-match-team2-icon.png │ ├── current-match-teams-vertical.txt │ ├── current-match-teams.txt │ ├── current-match-tricodes.txt │ ├── last-match-blue-hero.png │ ├── last-match-blue-icon.png │ ├── last-match-blue-name.txt │ ├── last-match-blue-score.txt │ ├── last-match-blue-tricode.txt │ ├── last-match-red-hero.png │ ├── last-match-red-icon.png │ ├── last-match-red-name.txt │ ├── last-match-red-score.txt │ ├── last-match-red-tricode.txt │ ├── last-match-scores-horizontal.txt │ ├── last-match-scores.txt │ ├── last-match-teams-vertical.txt │ ├── last-match-teams.txt │ ├── last-match-tricodes.txt │ ├── match-1-scores-horizontal.txt │ ├── match-1-scores.txt │ ├── match-1-team1-hero.png │ ├── match-1-team1-icon.png │ ├── match-1-team2-hero.png │ ├── match-1-team2-icon.png │ ├── match-1-teams-horizontal.txt │ ├── match-1-teams.txt │ ├── match-1-tricodes-horizontal.txt │ ├── match-1-tricodes.txt │ ├── match-2-scores-horizontal.txt │ ├── match-2-scores.txt │ ├── match-2-team1-hero.png │ ├── match-2-team1-icon.png │ ├── match-2-team2-hero.png │ ├── match-2-team2-icon.png │ ├── match-2-teams-horizontal.txt │ ├── match-2-teams.txt │ ├── match-2-tricodes-horizontal.txt │ ├── match-2-tricodes.txt │ ├── match-3-scores-horizontal.txt │ ├── match-3-scores.txt │ ├── match-3-team1-hero.png │ ├── match-3-team1-icon.png │ ├── match-3-team2-hero.png │ ├── match-3-team2-icon.png │ ├── match-3-teams-horizontal.txt │ ├── match-3-teams.txt │ ├── match-3-tricodes-horizontal.txt │ ├── match-3-tricodes.txt │ ├── schedule-full-name.txt │ ├── schedule-full-tricode.txt │ ├── schedule-scores-combined.txt │ ├── schedule-scores.txt │ ├── schedule-teams-combined.txt │ ├── schedule-teams.txt │ ├── schedule-tricodes-combined.txt │ ├── schedule-tricodes.txt │ ├── standings-complete.txt │ ├── standings-teams-leader.txt │ ├── standings-teams-names.txt │ ├── standings-teams-points.txt │ └── standings-teams-tricodes.txt ├── tournament.py ├── tournament_objects.py ├── udts-demo-stream ├── League Overlay.png ├── PentanetGG_logo.png ├── TSMlogo_profile.png ├── clg_hero.jpg ├── clg_logo.png ├── lol_screenshot.png ├── pentanetgg_hero.jpg └── tsm_hero.jpg ├── udts.py ├── udts.spec ├── udtsconfig.py └── version.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/.gitignore -------------------------------------------------------------------------------- /DistributionTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/DistributionTool -------------------------------------------------------------------------------- /DistributionTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/DistributionTool.exe -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/Pipfile -------------------------------------------------------------------------------- /chhtv icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/chhtv icon.png -------------------------------------------------------------------------------- /chhtvlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/chhtvlogo.png -------------------------------------------------------------------------------- /config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/config.cfg -------------------------------------------------------------------------------- /credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/credits.md -------------------------------------------------------------------------------- /creds/challonge-api-key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default-tournament.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/default-tournament.json -------------------------------------------------------------------------------- /errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/errors.py -------------------------------------------------------------------------------- /how-to-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/how-to-contribute.md -------------------------------------------------------------------------------- /loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/loaders.py -------------------------------------------------------------------------------- /patchnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/patchnotes.md -------------------------------------------------------------------------------- /processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/processors.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/readme.md -------------------------------------------------------------------------------- /roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/roadmap.md -------------------------------------------------------------------------------- /static/blank-team-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/static/blank-team-icon.png -------------------------------------------------------------------------------- /static/chhtv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/static/chhtv.ico -------------------------------------------------------------------------------- /static/chhtvlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/static/chhtvlogo.png -------------------------------------------------------------------------------- /static/empty-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/static/empty-graphic.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/static/form.ui -------------------------------------------------------------------------------- /static/league_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/static/league_overlay.png -------------------------------------------------------------------------------- /static/tbd-team-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/static/tbd-team-icon.png -------------------------------------------------------------------------------- /streamdeck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/README.md -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/blue-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/blue-win.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/blue-win@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/blue-win@2x.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/chhtv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/chhtv.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/chhtv@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/chhtv@2x.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/forcerefreshstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/forcerefreshstream.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/forcerefreshstream@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/forcerefreshstream@2x.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/orangered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/orangered.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/orangered@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/orangered@2x.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/red-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/red-win.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/red-win@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/red-win@2x.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/sideswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/sideswap.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/sideswap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/sideswap@2x.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/undo.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/action/images/undo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/action/images/undo@2x.png -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/app.js -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/common.js -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/en.json -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/index.html -------------------------------------------------------------------------------- /streamdeck/com.chhtv.udts.sdPlugin/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/streamdeck/com.chhtv.udts.sdPlugin/manifest.json -------------------------------------------------------------------------------- /templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/templates.py -------------------------------------------------------------------------------- /templates/web_controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/templates/web_controller.html -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests.py -------------------------------------------------------------------------------- /tests/challonge_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/challonge_load.json -------------------------------------------------------------------------------- /tests/default-tournament.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/default-tournament.json -------------------------------------------------------------------------------- /tests/loaded_from_challonge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/loaded_from_challonge.json -------------------------------------------------------------------------------- /tests/test_labels/current-match-blue-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/current-match-blue-hero.png -------------------------------------------------------------------------------- /tests/test_labels/current-match-blue-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/current-match-blue-icon.png -------------------------------------------------------------------------------- /tests/test_labels/current-match-blue-name.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid 2 | -------------------------------------------------------------------------------- /tests/test_labels/current-match-blue-score.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test_labels/current-match-blue-tricode.txt: -------------------------------------------------------------------------------- 1 | TSM 2 | -------------------------------------------------------------------------------- /tests/test_labels/current-match-red-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/current-match-red-hero.png -------------------------------------------------------------------------------- /tests/test_labels/current-match-red-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/current-match-red-icon.png -------------------------------------------------------------------------------- /tests/test_labels/current-match-red-name.txt: -------------------------------------------------------------------------------- 1 | Counter-Logic Gaming 2 | -------------------------------------------------------------------------------- /tests/test_labels/current-match-red-score.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test_labels/current-match-red-tricode.txt: -------------------------------------------------------------------------------- 1 | CLG 2 | -------------------------------------------------------------------------------- /tests/test_labels/current-match-scores-horizontal.txt: -------------------------------------------------------------------------------- 1 | 0 - -------------------------------------------------------------------------------- /tests/test_labels/current-match-scores.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /tests/test_labels/current-match-team1-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/current-match-team1-hero.png -------------------------------------------------------------------------------- /tests/test_labels/current-match-team1-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/current-match-team1-icon.png -------------------------------------------------------------------------------- /tests/test_labels/current-match-team2-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/current-match-team2-hero.png -------------------------------------------------------------------------------- /tests/test_labels/current-match-team2-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/current-match-team2-icon.png -------------------------------------------------------------------------------- /tests/test_labels/current-match-teams-vertical.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid 2 | Counter-Logic Gaming 3 | -------------------------------------------------------------------------------- /tests/test_labels/current-match-teams.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid vs Counter-Logic Gaming 2 | -------------------------------------------------------------------------------- /tests/test_labels/current-match-tricodes.txt: -------------------------------------------------------------------------------- 1 | TSM vs CLG 2 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-blue-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/last-match-blue-hero.png -------------------------------------------------------------------------------- /tests/test_labels/last-match-blue-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/last-match-blue-icon.png -------------------------------------------------------------------------------- /tests/test_labels/last-match-blue-name.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid 2 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-blue-score.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-blue-tricode.txt: -------------------------------------------------------------------------------- 1 | TSM 2 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-red-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/last-match-red-hero.png -------------------------------------------------------------------------------- /tests/test_labels/last-match-red-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/last-match-red-icon.png -------------------------------------------------------------------------------- /tests/test_labels/last-match-red-name.txt: -------------------------------------------------------------------------------- 1 | Counter-Logic Gaming 2 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-red-score.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-red-tricode.txt: -------------------------------------------------------------------------------- 1 | CLG 2 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-scores-horizontal.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /tests/test_labels/last-match-scores.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-teams-vertical.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid 2 | Counter-Logic Gaming 3 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-teams.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid vs Counter-Logic Gaming 2 | -------------------------------------------------------------------------------- /tests/test_labels/last-match-tricodes.txt: -------------------------------------------------------------------------------- 1 | TSM vs CLG 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-1-scores-horizontal.txt: -------------------------------------------------------------------------------- 1 | 0 - 0 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-1-scores.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /tests/test_labels/match-1-team1-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-1-team1-hero.png -------------------------------------------------------------------------------- /tests/test_labels/match-1-team1-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-1-team1-icon.png -------------------------------------------------------------------------------- /tests/test_labels/match-1-team2-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-1-team2-hero.png -------------------------------------------------------------------------------- /tests/test_labels/match-1-team2-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-1-team2-icon.png -------------------------------------------------------------------------------- /tests/test_labels/match-1-teams-horizontal.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid vs Counter-Logic Gaming 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-1-teams.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid 2 | Counter-Logic Gaming 3 | -------------------------------------------------------------------------------- /tests/test_labels/match-1-tricodes-horizontal.txt: -------------------------------------------------------------------------------- 1 | TSM vs CLG 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-1-tricodes.txt: -------------------------------------------------------------------------------- 1 | TSM 2 | CLG 3 | -------------------------------------------------------------------------------- /tests/test_labels/match-2-scores-horizontal.txt: -------------------------------------------------------------------------------- 1 | 0 - 0 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-2-scores.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /tests/test_labels/match-2-team1-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-2-team1-hero.png -------------------------------------------------------------------------------- /tests/test_labels/match-2-team1-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-2-team1-icon.png -------------------------------------------------------------------------------- /tests/test_labels/match-2-team2-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-2-team2-hero.png -------------------------------------------------------------------------------- /tests/test_labels/match-2-team2-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-2-team2-icon.png -------------------------------------------------------------------------------- /tests/test_labels/match-2-teams-horizontal.txt: -------------------------------------------------------------------------------- 1 | Pentanet.GG vs Team Solo Mid 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-2-teams.txt: -------------------------------------------------------------------------------- 1 | Pentanet.GG 2 | Team Solo Mid 3 | -------------------------------------------------------------------------------- /tests/test_labels/match-2-tricodes-horizontal.txt: -------------------------------------------------------------------------------- 1 | PGG vs TSM 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-2-tricodes.txt: -------------------------------------------------------------------------------- 1 | PGG 2 | TSM 3 | -------------------------------------------------------------------------------- /tests/test_labels/match-3-scores-horizontal.txt: -------------------------------------------------------------------------------- 1 | 0 - 0 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-3-scores.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /tests/test_labels/match-3-team1-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-3-team1-hero.png -------------------------------------------------------------------------------- /tests/test_labels/match-3-team1-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-3-team1-icon.png -------------------------------------------------------------------------------- /tests/test_labels/match-3-team2-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-3-team2-hero.png -------------------------------------------------------------------------------- /tests/test_labels/match-3-team2-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/match-3-team2-icon.png -------------------------------------------------------------------------------- /tests/test_labels/match-3-teams-horizontal.txt: -------------------------------------------------------------------------------- 1 | Counter-Logic Gaming vs Pentanet.GG 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-3-teams.txt: -------------------------------------------------------------------------------- 1 | Counter-Logic Gaming 2 | Pentanet.GG 3 | -------------------------------------------------------------------------------- /tests/test_labels/match-3-tricodes-horizontal.txt: -------------------------------------------------------------------------------- 1 | CLG vs PGG 2 | -------------------------------------------------------------------------------- /tests/test_labels/match-3-tricodes.txt: -------------------------------------------------------------------------------- 1 | CLG 2 | PGG 3 | -------------------------------------------------------------------------------- /tests/test_labels/schedule-full-name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/schedule-full-name.txt -------------------------------------------------------------------------------- /tests/test_labels/schedule-full-tricode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/schedule-full-tricode.txt -------------------------------------------------------------------------------- /tests/test_labels/schedule-scores-combined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/schedule-scores-combined.txt -------------------------------------------------------------------------------- /tests/test_labels/schedule-scores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/schedule-scores.txt -------------------------------------------------------------------------------- /tests/test_labels/schedule-teams-combined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/schedule-teams-combined.txt -------------------------------------------------------------------------------- /tests/test_labels/schedule-teams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/schedule-teams.txt -------------------------------------------------------------------------------- /tests/test_labels/schedule-tricodes-combined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/schedule-tricodes-combined.txt -------------------------------------------------------------------------------- /tests/test_labels/schedule-tricodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/schedule-tricodes.txt -------------------------------------------------------------------------------- /tests/test_labels/standings-complete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tests/test_labels/standings-complete.txt -------------------------------------------------------------------------------- /tests/test_labels/standings-teams-leader.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid -------------------------------------------------------------------------------- /tests/test_labels/standings-teams-names.txt: -------------------------------------------------------------------------------- 1 | Team Solo Mid 2 | Counter-Logic Gaming 3 | Pentanet.GG 4 | -------------------------------------------------------------------------------- /tests/test_labels/standings-teams-points.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | 0 4 | -------------------------------------------------------------------------------- /tests/test_labels/standings-teams-tricodes.txt: -------------------------------------------------------------------------------- 1 | TSM 2 | CLG 3 | PGG 4 | -------------------------------------------------------------------------------- /tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tournament.py -------------------------------------------------------------------------------- /tournament_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/tournament_objects.py -------------------------------------------------------------------------------- /udts-demo-stream/League Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts-demo-stream/League Overlay.png -------------------------------------------------------------------------------- /udts-demo-stream/PentanetGG_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts-demo-stream/PentanetGG_logo.png -------------------------------------------------------------------------------- /udts-demo-stream/TSMlogo_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts-demo-stream/TSMlogo_profile.png -------------------------------------------------------------------------------- /udts-demo-stream/clg_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts-demo-stream/clg_hero.jpg -------------------------------------------------------------------------------- /udts-demo-stream/clg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts-demo-stream/clg_logo.png -------------------------------------------------------------------------------- /udts-demo-stream/lol_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts-demo-stream/lol_screenshot.png -------------------------------------------------------------------------------- /udts-demo-stream/pentanetgg_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts-demo-stream/pentanetgg_hero.jpg -------------------------------------------------------------------------------- /udts-demo-stream/tsm_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts-demo-stream/tsm_hero.jpg -------------------------------------------------------------------------------- /udts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts.py -------------------------------------------------------------------------------- /udts.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udts.spec -------------------------------------------------------------------------------- /udtsconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chhopsky/updatethestream/HEAD/udtsconfig.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- 1 | version = "0.4" --------------------------------------------------------------------------------