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

More functionality, bug fixes, new looks and more! #22

Merged
merged 40 commits into from
Jan 3, 2023
Merged

Conversation

siblount
Copy link
Owner

@siblount siblount commented Jan 3, 2023

Key highlights:

  • The application has gotten a new look with a better logo, different font, and colors used.
  • Product Record Form now allows you to modify a product record (instead of being read-only).
  • You are now able to sort through your records.
  • Settings format has changed to now use JSON format.
  • Tags, Product Name, File Names, etc are now capped at certain characters.
    • For example, tags length can not exceed 70 chars.
  • Right click actions added to product record form and library items.

Fixes:

  • Fixed multiple occurrences where archive file handles were not being properly disposed/released.
  • Fixed an issue where the application would hang due to a database deadlock.
  • Fixed a minor issue where the expected NoImage location would be overwritten with a new image.

Closes #15
Closes #16
Closes #18
Closes #19
Closes #21
Closes #9

siblount and others added 30 commits August 28, 2022 07:13
Cause for app hang was due to a deadlock while creating connections (ex: waiting for Initialization when called by the Init func).

Added new CreateInitialConnection which does not check if the database was initialized and InsertDefaultTables uses the connection instead of null.
Fixed the issue where the zip archive file handle was not released even when done; call ReleaseArchiveHandles() at the end of ProcessArchive.

Updated 7zArchive to kill the 7z process tree if it still exists.
try catch ReadMetaFiles, ReadContentFiles and others.
remove now ask for confirmation
remove product is implemented and more advanced than the one on library item.
… helper funcs and proprogating changes across DPDatabase
TableUpdated and ProductRecordModified() already invokes the event, no need for it twice.
Also removed FileName for DPAbstractArchive since it will be covered by DPAbstractFile.
…d to DAZ directory root folder.

Added new CalculateChildRelativePath() and CalculateChildRelativeTargetPath() funcs for DPFolder.

Added GetTargetPath() and propogated changes from DPFolder onto here for DPProcessor.
Anchored button and combobox to the right.
@siblount siblount self-assigned this Jan 3, 2023
@siblount siblount merged commit 2b6ab19 into main Jan 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment