joonaspaakko / Photoshop-file-versions-script

Photoshop script that saves file versions to an adjacent folder.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

New option: replace the whole file name with description

joonaspaakko opened this issue · comments

Since the file versions are in a folder, might as well.

I guess the variable could be originalFilename = true. This would also enable you to save files with just the numbers as the filename if shortDescription and originalFilename are set to false.

Minimal filename:

v1.psd
v2.psd
v3.psd

Options: useDocName = false + shortDescription = false or if you just choose to not write the description

With just the description:

v1 - Added a smudge.psd
v2 - Changed colors.psd
v3 - Contemplated existence.psd

Options: useDocName = false + shortDescription = true

With the description and document name:

v1 - My Document 2019 (Added a smudge).psd
v2 - My Document 2019 (Changed colors).psd
v3 - My Document 2019 (Contemplated existence).psd

Options: useDocName = true + shortDescription = true

With the document name only:

v1 - My Document 2019.psd
v2 - My Document 2019.psd
v3 - My Document 2019.psd

Options: useDocName = true + shortDescription = false (or if it's true an you just choose to not write the description.)