-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1381 from qdraw/feature/202402-open-native
Feature/202402 open native
- Loading branch information
Showing
305 changed files
with
13,399 additions
and
4,811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+70.4 KB
documentation/docs/assets/getting-started-configuration-desktop-open.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,36 @@ | ||
# Bulk editing | ||
|
||
Bulk editing is a feature that allows you to edit multiple files at once. | ||
Bulk editing is a feature that allows you to edit multiple files at once. | ||
Is it possible to edit the metadata for multiple images at once. | ||
You can use it in search and archive. In detail view you can edit the metadata for a single image. | ||
|
||
## 1. Select the images | ||
|
||
Via the search or archive you can select multiple images. | ||
Press select and Labels and select the images you want to update. | ||
|
||
## Update | ||
|
||
When you selected an image you can update the metadata. | ||
You can update the following metadata: | ||
|
||
- Tags | ||
- Info | ||
- Title | ||
- ColorClass (the color label of the image) | ||
|
||
via the API you could also update other metadata like: | ||
|
||
- Location | ||
- Software | ||
- etc. | ||
|
||
# Replace the metadata in the fields: tags, info or title | ||
|
||
You can search and replace the metadata in the fields: tags, info or title. | ||
Is easy to undo typos or update the metadata. | ||
Is easy to undo typos or update the metadata. | ||
|
||
# Open files | ||
|
||
When using the application as desktop mode you can batch open files with your favorite editor. | ||
See [Desktop Open](../getting-started/configuration/desktop-open.md) for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
documentation/docs/getting-started/configuration/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Configuration", | ||
"position": 5, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "See configuration options for the application." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
documentation/docs/getting-started/configuration/desktop-open.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
--- | ||
sidebar_position: 5 | ||
--- | ||
|
||
# Configure Open With | ||
|
||
There are two options to use the desktop application | ||
|
||
- Remote (So the back-end is not running on your local machine) | ||
- Local / As Desktop | ||
|
||
If you don't know you are using the local one, you can check the settings in the desktop | ||
application. | ||
|
||
When using remote, the application will open the image in the default application. | ||
Then there are no settings to configure overwrites. | ||
|
||
Left: The settings are not available in a remote environment | ||
Right: To check if using remote or local (using the desktop application) | ||
|
||
![Desktop Open](../../assets/getting-started-configuration-desktop-open.jpg) | ||
|
||
## Local / As Desktop | ||
|
||
The following settings are for Local / As Desktop. | ||
The UI writes the settings to the `appsettings.patch.json` file. | ||
|
||
You can use the `appsettings.patch.json` file to configure the desktop application | ||
or use the Settings in the web application. | ||
|
||
### DefaultDesktopEditor | ||
|
||
This setting is done by ImageFormat, | ||
an imageFormat is defined by the first bytes of the file. | ||
|
||
In the UI there is an option to set the default application for a few photo formats. | ||
|
||
> Note: If you enter an invalid ApplicationPath location: The application will open the file with | ||
> the system default application | ||
```json | ||
{ | ||
"DefaultDesktopEditor": [ | ||
{ | ||
"ApplicationPath": "/Applications/Adobe Photoshop 2020/Adobe Photoshop 2020.app", | ||
"ImageFormats": ["jpg", "bmp", "png", "gif", "tiff"] | ||
} | ||
] | ||
} | ||
``` | ||
|
||
### Collections / Stacks | ||
|
||
When opening an image from a collection/stack, the desktop application will one of both files | ||
A collection is for example two files in one folder: `2021-01-01-IMG_1234.jpg` | ||
and `2021-01-01-IMG_1234.dng` | ||
The default display is to show the jpeg first. | ||
|
||
> Note: The default setting is to open the jpeg file first | ||
### Raw First | ||
|
||
So the raw file will be open if available | ||
|
||
```json | ||
{ | ||
"DesktopCollectionsOpen": "2" | ||
} | ||
``` | ||
|
||
### Jpeg first | ||
|
||
If the raw file is available, the jpeg file will be open first | ||
|
||
```json | ||
{ | ||
"DesktopCollectionsOpen": "1" | ||
} | ||
``` |
Oops, something went wrong.
f253cbb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 Published on https://starskyapp.netlify.app as production
🚀 Deployed on https://65df9f38d763676c5c6eac15--starskyapp.netlify.app