Skip to content

Commit 98988ff

Browse files
Prepare for v1.3.0
1 parent 148c11e commit 98988ff

4 files changed

Lines changed: 16 additions & 5 deletions

File tree

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ KODI_STUB_RPC_RESPONSES=tests/rpc
77

88
#HTTP_PROXY=
99
#HTTPS_PROXY=
10+
11+
CHANGELOG_GITHUB_TOKEN=

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [v1.3.0](https://github.com/add-ons/plugin.video.vtm.go/tree/v1.3.0) (2021-12-19)
4+
5+
[Full Changelog](https://github.com/add-ons/plugin.video.vtm.go/compare/v1.2.12...v1.3.0)
6+
7+
**Fixed bugs:**
8+
9+
- Rework to use new authentication, remove broken features. [\#311](https://github.com/add-ons/plugin.video.vtm.go/pull/311) ([michaelarnauts](https://github.com/michaelarnauts))
10+
311
## [v1.2.12](https://github.com/add-ons/plugin.video.vtm.go/tree/v1.2.12) (2021-09-08)
412

513
[Full Changelog](https://github.com/add-ons/plugin.video.vtm.go/compare/v1.2.11...v1.2.12)
@@ -71,9 +79,9 @@
7179

7280
**Implemented enhancements:**
7381

74-
- Don't depend on credentials to populate IPTV Manager data [\#266](https://github.com/add-ons/plugin.video.vtm.go/pull/266) ([michaelarnauts](https://github.com/michaelarnauts))
7582
- Improve artwork [\#269](https://github.com/add-ons/plugin.video.vtm.go/pull/269) ([michaelarnauts](https://github.com/michaelarnauts))
7683
- Add more metadata to movies and programs [\#267](https://github.com/add-ons/plugin.video.vtm.go/pull/267) ([michaelarnauts](https://github.com/michaelarnauts))
84+
- Don't depend on credentials to populate IPTV Manager data [\#266](https://github.com/add-ons/plugin.video.vtm.go/pull/266) ([michaelarnauts](https://github.com/michaelarnauts))
7785

7886
**Fixed bugs:**
7987

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ build: clean
6666
# You first need to run sudo gem install github_changelog_generator for this
6767
release:
6868
ifneq ($(release),)
69-
@github_changelog_generator -u add-ons -p $(name) --no-issues --future-release v$(release);
69+
docker run -it --rm -e CHANGELOG_GITHUB_TOKEN -v "$(shell pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u add-ons -p $(name) --no-issues --future-release v$(release)
70+
#@github_changelog_generator -u add-ons -p $(name) --no-issues --future-release v$(release);
7071

7172
@printf "cd /addon/@version\nset $$release\nsave\nbye\n" | xmllint --shell addon.xml; \
7273
date=$(shell date '+%Y-%m-%d'); \

addon.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<import addon="script.module.routing" version="0.2.0"/>
99
<import addon="script.module.pyjwt" version="1.6.4"/>
1010
<import addon="script.module.inputstreamhelper" version="0.3.4"/>
11-
<import addon="inputstream.adaptive" version="2.4.3"/>
1211
</requires>
1312
<extension point="xbmc.python.pluginsource" library="addon_entry.py">
1413
<provides>video</provides>
@@ -23,8 +22,9 @@
2322
<disclaimer lang="nl_NL">Deze add-on wordt niet ondersteund door DPG Media en wordt aangeboden 'as is', zonder enige garantie. De VTM GO naam, VTM GO logo en de kanaallogo's zijn eigendom van DPG Media en worden gebruikt in overeenstemming met de fair use policy.</disclaimer>
2423
<platform>all</platform>
2524
<license>GPL-3.0-only</license>
26-
<news>v1.3 (XXXX-XX-XX)
27-
- Rewrite authentication, update API and remove broken features.</news>
25+
<news>v1.3.0 (2021-12-19)
26+
- Rework authentication with simplified login flow.
27+
- Remove broken features (library, A-Z).</news>
2828
<source>https://github.com/add-ons/plugin.video.vtm.go</source>
2929
<assets>
3030
<icon>resources/icon.png</icon>

0 commit comments

Comments
 (0)