-
-
Notifications
You must be signed in to change notification settings - Fork 479
Portenta X8: Video Output [PC-891] #246
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
Conversation
Gatsby Cloud Build Report
docs-content
🎉 Your build was successful! See the Deploy preview here.
Build Details
🕐 Build time: 5m
05d5dfa
to
38fadf6
Compare
Linter has a weird issue
image
With my offline built it was showing every picture fine.
Hi @marqdevx. I believe this remaining one:
❌ ERROR: Asset 'portentaX8-home-screen.PNG' is not used. Location: ../../content/hardware/04.pro/boards/portenta-x8/tutorials/display-output-webgl/content.md:1:1
❌ ERROR: Image doesn't exist: assets/portentaX8-home-screen.png Location: ../../content/hardware/04.pro/boards/portenta-x8/tutorials/display-output-webgl/content.md:137:19
Is caused by the file extension .PNG
. On a case insensitive file system such as Windows, the path in the link:

and the actual path of the file (assets/portentaX8-home-screen.PNG
) are equivalent. But the linter runs on the case sensitive file system of Linux, where these are not the same.
My recommendation is to rename the image file to use the more standard .png
extension.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Hi @marqdevx. I believe this remaining one:
❌ ERROR: Asset 'portentaX8-home-screen.PNG' is not used. Location: ../../content/hardware/04.pro/boards/portenta-x8/tutorials/display-output-webgl/content.md:1:1 ❌ ERROR: Image doesn't exist: assets/portentaX8-home-screen.png Location: ../../content/hardware/04.pro/boards/portenta-x8/tutorials/display-output-webgl/content.md:137:19
Is caused by the file extension
.PNG
. On a case insensitive file system such as Windows, the path in the link:
and the actual path of the file (
assets/portentaX8-home-screen.PNG
) are equivalent. But the linter runs on the case sensitive file system of Linux, where these are not the same.My recommendation is to rename the image file to use the more standard
.png
extension.
I did that but git didnt recognize the change (Should have used git mv
) but yes Benjamin spotted and fixed by deleting and adding it again with the lower caps variant.
Thanks 😄
...ates marqdevx updates images
What This PR Changes