Skip to content

Commit 4587c71

Browse files
committed
v2023.12.0-alpha.7
1 parent 5e630b8 commit 4587c71

31 files changed

+31
-19
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@ This is a detailed list of changes in each version.
2323

2424
<!-- fix "tag context" for "next previous" context. I'd always done a search, clicked a thumb, and then clicked esc to go back to the search results. But... if you click a thumb from a search, and then click "next" or "previous", it ignores that you can from a search, and does the chronological next asset, which is very confusing/irritating. -->
2525

26+
## v2023.12.0-alpha.7
27+
28+
**Released 20 December 2023**
29+
30+
- ✨ Sync reports now include reasons why the sync work queues may not consider themselves eligible to start more work. This could be from the system load being to high, or one of the critical health checks failing (like if a library volume has insufficient disk space). Sync reports also now auto-collapse repeating messages, so you don't get thousands of lines of the same error message.
31+
32+
- 🐛 Fixed "failed to apply SQL" error on Windows
33+
34+
- 🐛 If "Scan all directories on all drives" is selected on macOS, we now avoid scanning `/`, with the belief that macOS users will typically store their files either in their home directory, or on external volumes. If you have files on your root partition outside your home directory, you can always add them explicitly, and PhotoStructure will scan those paths even if "Scan all directories on all drives" is selected.
35+
36+
- 🐛 `sync` schedules a cleanup process after every 50 processed files. Unfortunately, this cleanup process would force-rebuild the `Tag.assetCount` column in prior builds. Force-rebuilding this column can take 10 or more minutes on slow machines and large libraries. The "cleanup" no longer force-rebuilds `Tag.assetCount`, as it is kept up to date incrementally as assets are added or removed from tags.
37+
38+
- 📦 The `proc-not-superuser` health check is no longer skipped on Windows, as it only looks at the source shell, which should normally run with non-admin permissions (even if the user is an "Administrator").
39+
2640
## v2023.12.0-alpha.6
2741

2842
**Released 17 December 2023**

VERSION.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"version": "2023.12.0-alpha.6",
2+
"version": "2023.12.0-alpha.7",
33
"versionMajor": 2023,
44
"versionMinor": 12,
55
"versionPatch": 0,
66
"versionPrerelease": [
77
"alpha",
8-
6
8+
7
99
],
10-
"release": "2023.12.0-alpha.6+20231217225159",
11-
"gitSha": "0ed4df2dc131e503da6a162b731b022c60a58207",
12-
"gitDate": "2023-12-18T06:51:59.000Z"
10+
"release": "2023.12.0-alpha.7+20231220192300",
11+
"gitSha": "086e28c1b50d5a229fc0140ff39f4776952fb492",
12+
"gitDate": "2023-12-21T03:23:00.000Z"
1313
}

bin/info.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/list.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/logcat.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/logtail.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/main.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/photostructure.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/sync.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/web.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/worker.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

defaults.env

+1-3
Original file line numberDiff line numberDiff line change
@@ -2593,9 +2593,7 @@
25932593
# PS_SKIP_HEALTH_CHECK_IDS or skipHealthCheckIds
25942594
# ----------------------------------------------
25952595
#
2596-
# List of health check IDs to skip. Note that windows skips the
2597-
# 'proc-not-superuser' check by default, as most people on Windows run as an
2598-
# admin user.
2596+
# List of health check IDs to skip.
25992597
#
26002598
# Valid values: [
26012599
# "library-db",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "photostructure",
33
"productName": "PhotoStructure",
44
"author": "PhotoStructure, Inc. <[email protected]>",
5-
"version": "2023.12.0-alpha.6",
5+
"version": "2023.12.0-alpha.7",
66
"license": "SEE LICENSE IN LICENSE.md",
77
"description": "PhotoStructure for Servers",
88
"homepage": "https://photostructure.com/server/photostructure-for-node/",

photostructure

+1-1
Large diffs are not rendered by default.

public/3rd-party-licenses.txt.gz

0 Bytes
Binary file not shown.

public/app/about.css.gz

0 Bytes
Binary file not shown.

public/app/about.css.map.gz

0 Bytes
Binary file not shown.

public/app/about.js.gz

4 Bytes
Binary file not shown.

public/app/app.css.gz

0 Bytes
Binary file not shown.

public/app/app.css.map.gz

0 Bytes
Binary file not shown.

public/app/app.js.gz

3 Bytes
Binary file not shown.

public/app/health.css.gz

0 Bytes
Binary file not shown.

public/app/health.css.map.gz

0 Bytes
Binary file not shown.

public/app/health.js.gz

4 Bytes
Binary file not shown.

public/app/install.js.gz

10 Bytes
Binary file not shown.

public/app/settings.css.gz

0 Bytes
Binary file not shown.

public/app/settings.css.map.gz

0 Bytes
Binary file not shown.

public/app/settings.js.gz

2 Bytes
Binary file not shown.

public/app/splash.css.gz

0 Bytes
Binary file not shown.

public/app/splash.css.map.gz

0 Bytes
Binary file not shown.

public/app/splash.js.gz

5 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)