Closed Hazado closed 1 year ago
These changes will error on non-Windows platforms due to the hard-coded use of Windows style paths (ie using blackslashes \
).
These changes will error on non-Windows platforms due to the hard-coded use of Windows style paths (ie using blackslashes
\
)
I used the wrong slash!!
os.path.join
is a great way to let Python handle it. :)
Please use pathlib
instead of os.path
.
Ah, yes. Even better!
After discussion, pathlib
cannot be used in Plasma because it imports urllib
, which imports socket
, which is disallowed.
Okay, pushed a change I think will fix non-windows platforms breaking
After discussion,
pathlib
cannot be used in Plasma because it importsurllib
, which importssocket
, which is disallowed.
Does it? AFAICT, pathlib
only imports urllib.parse
and not e. g. urllib.request
, so socket
should never be imported.
@Deledrius do the latest revisions resolve your concerns?
PRP and other required files - https://github.com/H-uru/moul-assets/pull/206
Adds code for two new buttons in Trailer GUI First video in AVI directory is now first video played Ignores any videos smaller than 1000 bytes Videos will loop if you keep clicking buttons GUI will exit when video is over (retains previous behaviour)