Merge branch 'fix/firsttime' into 'main'
fix: Fixed bug with default exif file. See merge request CodeByMrFinchum/OptimaLab35!35
This commit is contained in:
commit
c1e72d8e2b
2 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.12.x
|
## 0.12.x
|
||||||
|
### 0.12.4: Fixed EXIF File Generation Bug
|
||||||
|
- Fixed a bug where the application failed to generate a new default EXIF file if none was available. Now, the file is correctly created when missing.
|
||||||
|
|
||||||
### 0.12.3: UI Adjustments
|
### 0.12.3: UI Adjustments
|
||||||
- Minor changes to maintain a unified layout across all windows.
|
- Minor changes to maintain a unified layout across all windows.
|
||||||
- Added option to sync app theme with OS (if supported).
|
- Added option to sync app theme with OS (if supported).
|
||||||
|
|
|
@ -30,7 +30,7 @@ class Utilities:
|
||||||
def _prepear_exif_config(self):
|
def _prepear_exif_config(self):
|
||||||
"""Prepear folder for config and generate default exif if non aviable"""
|
"""Prepear folder for config and generate default exif if non aviable"""
|
||||||
if not os.path.isfile(self.exif_path):
|
if not os.path.isfile(self.exif_path):
|
||||||
self.default_exif(self.exif_path)
|
self.default_exif()
|
||||||
|
|
||||||
def _ensure_program_folder_exists(self):
|
def _ensure_program_folder_exists(self):
|
||||||
if not os.path.exists(self.folder_path):
|
if not os.path.exists(self.folder_path):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue