Skip to content

Commit

Permalink
Exchange- and queue-folder are moved to ~/Library/Caches.
Browse files Browse the repository at this point in the history
  • Loading branch information
sto3014 committed Feb 2, 2024
1 parent 98717f8 commit 02594bb
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,17 @@ rendition is marked as skipped.

### Fixed

* Fixed unicode issue with album names
* Fixed unicode issue with album names.
* Fixed update of albums which are in folders.

## [2.0.0.1] - 2024-01-31

### Fixed

* Fix reset issue for photosId tag
* Fix reset issue for photosId tag.

## [2.0.0.2] - 2024-02.01

### Changed

* Exchange- and queue-folder are moved to ~/Library/Caches.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ LRPhotos is a Lightroom Classic publishing service for Apple's Photos app.

---

1. Download the zip archive from [GitHub](https://github.com/sto3014/LRPhotos/blob/main/target/LRPhotos2.0.0.0_mac.zip).
1. Download the zip archive from [GitHub](https://github.com/sto3014/LRPhotos/blob/main/target/LRPhotos2.0.0.2_mac.zip).
2. Extract the archive in the download folder
3. Copy plug-in, applescript files and automator workflow into ~/Library
Open a terminal window, change to Downloads/LRPhotos and execute install.sh:
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
cd "$(dirname "$0")"
export SCRIPT_DIR="$(pwd)"
export VERSION=2.0.0.1
export VERSION=2.0.0.2

echo copy LRPhotos to ~/Library/...
cp -R "./Application Support" ~/Library
Expand Down
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export SOURCE_DIR=$SCRIPT_DIR/src/main/$PACKAGE_NAME.lrdevplugin
export SOURCE_DIR_SERVICES=/Users/dieterstockhausen/Projekte/Automation/Services/workflow
export SOURCE_DIR_SCRIPT_LIBRARIES="/Users/dieterstockhausen/Projekte/Automation/Script Libraries/src"
export RESOURCE_DIR=$SCRIPT_DIR/res
export VERSION=2.0.0.1
export VERSION=2.0.0.2
#
# mac
#
Expand Down
2 changes: 1 addition & 1 deletion src/main/lrphotos.lrdevplugin/Info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ return {

LrPluginName = 'Photos',
LrToolkitIdentifier = 'at.homebrew.lrphotos',
VERSION = { major = 2, minor = 0, revision = 0, build = 0, },
VERSION = { major = 2, minor = 0, revision = 0, build = 2, },
LrInitPlugin = "InitPlugin.lua",
-- Add the Metadata Definition File
LrMetadataProvider = 'PhotosMetadataDefinition.lua',
Expand Down
2 changes: 1 addition & 1 deletion src/main/lrphotos.lrdevplugin/InitPlugin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local LrPrefs = import 'LrPrefs'
local logger = require("Logger")

_G.PLUGIN_ID = "at.homebrew.lrphotos"
_G.TMP_DIR = LrPathUtils.child(LrPathUtils.parent(os.tmpname()), _G.PLUGIN_ID)
_G.TMP_DIR = LrPathUtils.child(LrPathUtils.getStandardFilePath("home") .. "/Library/Caches", _G.PLUGIN_ID)
_G.QUEUE_DIR = LrPathUtils.child(_G.TMP_DIR, "queue")

function init()
Expand Down
Binary file not shown.

0 comments on commit 02594bb

Please sign in to comment.