Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[plugin.video.ad6] 0.1.0 #1878

Merged
merged 1 commit into from
Jun 6, 2018
Merged

[plugin.video.ad6] 0.1.0 #1878

merged 1 commit into from
Jun 6, 2018

Conversation

macmenco
Copy link

@macmenco macmenco commented Jun 5, 2018

Description

This plugin provides streams to the charity event calles "Alpe d'HuZes". The goal is to collect as much money as possible for the Dutch Cancer Society. The event takes places in the week of 6 and 7 june 2018. For the people who can't be there these streams are made available.

Checklist:

  • My code follows the add-on rules and piracy stance of this project.
  • I have read the CONTRIBUTING document
  • Each add-on submission should be a single commit with using the following style: [plugin.video.foo] v1.0.0

Additional information :

  • Submitting your add-on to this specific branch makes it available to any Kodi version equal or higher than the branch name with the applicable Kodi dependencies limits.
  • add-on development wiki page.
  • Kodi pydocs provide information about the Python API
  • PEP8 codingstyle which is considered best practice but not mandatory.
  • This add-on repository has automated code guideline check which could help you improve your coding. You can find the results of these check at Codacy. You can create your own account as well to continuously monitor your python coding before submitting to repo.
  • Development questions can be asked in the add-on development section on the Kodi forum.

@macmenco macmenco changed the title Plugin.ad6 [plugin.ad6] v0.1.0 Jun 5, 2018
@macmenco macmenco changed the title [plugin.ad6] v0.1.0 [plugin.ad6] 0.1.0 Jun 5, 2018
@enen92
Copy link
Member

enen92 commented Jun 5, 2018

@macmenco you have to rebase on krypton. Plugins must define a type so please change the id for it to be reviewed: plugin.video.ad6 instead of plugin.ad6

@enen92
Copy link
Member

enen92 commented Jun 5, 2018

Still incorrect @macmenco

@macmenco macmenco changed the title [plugin.ad6] 0.1.0 [plugin.video.ad6] 0.1.0 Jun 5, 2018
@TravisBuddy
Copy link

Travis Buddy

Hey Menco Bolt,
please review the following log in order to understand the failure reason. There might also be some helpful tips along the way.
It'll be awesome if you fix what's wrong and commit the changes.

1st Build

Expand here
INFO: Checking add-on plugin.video.ad6
INFO: Created by Menco Bolt
INFO: Addon id matches folder name
INFO: Image icon exists
INFO: icon dimensions are fine 512x463
INFO: Image fanart exists
ERROR: Fanart should have either 1280x720 or 1920x1080 or 3840x2160 but it has 1501x501
ERROR: We found 1 problems and 0 warnings, please check the logfile.

1 similar comment
@TravisBuddy
Copy link

Travis Buddy

Hey Menco Bolt,
please review the following log in order to understand the failure reason. There might also be some helpful tips along the way.
It'll be awesome if you fix what's wrong and commit the changes.

1st Build

Expand here
INFO: Checking add-on plugin.video.ad6
INFO: Created by Menco Bolt
INFO: Addon id matches folder name
INFO: Image icon exists
INFO: icon dimensions are fine 512x463
INFO: Image fanart exists
ERROR: Fanart should have either 1280x720 or 1920x1080 or 3840x2160 but it has 1501x501
ERROR: We found 1 problems and 0 warnings, please check the logfile.

@TravisBuddy
Copy link

Travis Buddy

Hey Menco Bolt,
we found no major flaws with your code. Still you might want to look at this logfile, as we usually suggest some optional improvements.

@macmenco
Copy link
Author

macmenco commented Jun 5, 2018

@enen92 I hope all is correct now. A question though. My plugin is for video and audio and I'm planning on adding image functionality as well. What name should I use for the plugin ?

@enen92
Copy link
Member

enen92 commented Jun 5, 2018

Unfortunately it is not. You're still carrying a lot of commits already in the branch

@macmenco
Copy link
Author

macmenco commented Jun 5, 2018

@enen92 How about now ?

@Rechi
Copy link
Member

Rechi commented Jun 5, 2018

no still wrong, fix it with the following commands (upstream is xbmc repo, origin is yours)

git reset --hard upstream/krypton
git checkout 4124b63 -- plugin.video.ad6
git commit -m '[plugin.video.ad6] v.0.1.0'
git push -f origin plugin.ad6

@macmenco
Copy link
Author

macmenco commented Jun 6, 2018

Sorry for the trial and error. It's my first pull request. I executed the commands. Is it ok now ?

@TravisBuddy
Copy link

Travis Buddy

Hey Menco Bolt,
we found no major flaws with your code. Still you might want to look at this logfile, as we usually suggest some optional improvements.

@razzeee
Copy link
Member

razzeee commented Jun 6, 2018

@macmenco yes, much better. only one commit which is yours and you only edited the code of one plugin. so far so good :)

@macmenco
Copy link
Author

macmenco commented Jun 6, 2018

Would it be possible to accept the plugin before tonight? There is a livestream around 19:30 UTC+2. I know, I should have started earlier...

Copy link
Member

@enen92 enen92 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please see comments. Markdown stuff are minors, the other comments are blocking. Please adjust as soon as you can and feel free to ping for a quick merge.
Thanks for the submission

@@ -0,0 +1,20 @@
language: python

This comment was marked as spam.

This comment was marked as spam.

@@ -0,0 +1,13 @@
# Welcome to your addon

This comment was marked as spam.

This comment was marked as spam.

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.ad6" name="Alpe d&#39;HuZes" version="0.1.0" provider-name="Menco Bolt">

This comment was marked as spam.

This comment was marked as spam.

<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.routing" version="0.2.1"/>

This comment was marked as spam.

This comment was marked as spam.

<extension point="xbmc.python.pluginsource" library="main.py">
<provides>audio video</provides>
</extension>
<extension point="xbmc.addon.metadata">

This comment was marked as spam.

This comment was marked as spam.

</extension>
<extension point="xbmc.addon.metadata">
<summary lang="nl">Dichter bij de Alpe kom je niet</summary>
<description lang="nl">Volg de Alpe d&#39;HuZes op de voet</description>

This comment was marked as spam.

This comment was marked as spam.

@@ -0,0 +1 @@
This folder will be the home of your translations

This comment was marked as spam.

This comment was marked as spam.

@@ -0,0 +1,7 @@
# Readme

This comment was marked as spam.

This comment was marked as spam.

url = prefix % stream['url_id']
folder = True
li = ListItem(label=stream['title'])
li.setIconImage(get_logo(stream['logo']))

This comment was marked as spam.

This comment was marked as spam.

@@ -0,0 +1,2 @@
# Tests

This comment was marked as spam.

This comment was marked as spam.

@TravisBuddy
Copy link

Travis Buddy

Hey Menco Bolt,
we found no major flaws with your code. Still you might want to look at this logfile, as we usually suggest some optional improvements.

@enen92 enen92 merged commit 4fc41e7 into xbmc:krypton Jun 6, 2018
@macmenco macmenco deleted the plugin.ad6 branch June 7, 2018 11:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants