Fixed bug with permissions not being applied due to octal formating
This commit is contained in:
parent
b3676aeb25
commit
a14eb92c3d
57
docsource/source/releasenotes/0.0.4-changelog.rst
Normal file
57
docsource/source/releasenotes/0.0.4-changelog.rst
Normal file
@ -0,0 +1,57 @@
|
||||
================================
|
||||
MediaCurator 0.0.1 Release Notes
|
||||
================================
|
||||
|
||||
|
||||
|
||||
Highlights
|
||||
==========
|
||||
|
||||
Bugs fixes:
|
||||
* Fixed bug with permissions not being applied correctly after conversion
|
||||
|
||||
Dropped Support
|
||||
===============
|
||||
|
||||
|
||||
Future Changes
|
||||
==============
|
||||
|
||||
* More filters
|
||||
* Test AV1 Support
|
||||
* Prepare API for GUI
|
||||
|
||||
Compatibility notes
|
||||
===================
|
||||
|
||||
Python Support
|
||||
--------------
|
||||
|
||||
Mediacurator has been tested on Python 3.7 - 3.9
|
||||
|
||||
FFMPEG Support
|
||||
--------------
|
||||
|
||||
Mediacurator has been tested to work with FFMPEG versions ranging from 4.1.6 to 4.3.1
|
||||
|
||||
OS Support
|
||||
----------
|
||||
|
||||
Mediacurator has been tested to work on various GNU/Linux distribution as well as Windows
|
||||
|
||||
New Features
|
||||
============
|
||||
|
||||
|
||||
|
||||
Improvements
|
||||
============
|
||||
|
||||
|
||||
Changes
|
||||
=======
|
||||
|
||||
|
||||
|
||||
Deprecations
|
||||
============
|
||||
@ -185,7 +185,7 @@ class Video():
|
||||
self.filename_tmp = ""
|
||||
exit()
|
||||
else:
|
||||
os.chmod(f"{self.path}{self.filename_tmp}", 777)
|
||||
os.chmod(f"{self.path}{self.filename_tmp}", 0o777)
|
||||
self.filename_new = self.filename_tmp
|
||||
self.filename_tmp = ""
|
||||
return True
|
||||
|
||||
Loading…
Reference in New Issue
Block a user