-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
99 additions
and
25 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
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,12 +1,12 @@ | ||
{ | ||
"version": "2024.3.0-prealpha", | ||
"version": "2024.3.1-prealpha", | ||
"versionMajor": 2024, | ||
"versionMinor": 3, | ||
"versionPatch": 0, | ||
"versionPatch": 1, | ||
"versionPrerelease": [ | ||
"prealpha" | ||
], | ||
"release": "2024.3.0-prealpha+20240308102353", | ||
"gitSha": "92cba1b21937cb9ca770f6a339e44b0fbee04bf9", | ||
"gitDate": "2024-03-08T18:23:53.000Z" | ||
"release": "2024.3.1-prealpha+20240308150212", | ||
"gitSha": "d92384e8659ff46fbae8e6f81fa5867114a4a843", | ||
"gitDate": "2024-03-08T23:02:12.000Z" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,57 @@ | ||
CREATE TABLE Progress_new ( | ||
-- records sync process state | ||
id INTEGER NOT NULL PRIMARY KEY, | ||
uri TEXT NOT NULL, | ||
hostname TEXT NOT NULL, | ||
pid INTEGER NOT NULL, | ||
volume TEXT NOT NULL, | ||
state TEXT, | ||
hed TEXT, | ||
dekJSON TEXT, | ||
completePct REAL, | ||
incompletePct REAL, | ||
scanningPct REAL, | ||
createdAt INTEGER NOT NULL, | ||
updatedAt INTEGER NOT NULL, | ||
completedAt INTEGER | ||
) STRICT; | ||
|
||
INSERT INTO | ||
Progress_new ( | ||
id, | ||
uri, | ||
hostname, | ||
pid, | ||
volume, | ||
state, | ||
hed, | ||
dekJSON, | ||
completePct, | ||
incompletePct, | ||
scanningPct, | ||
createdAt, | ||
updatedAt, | ||
completedAt | ||
) | ||
SELECT | ||
id, | ||
uri, | ||
hostname, | ||
pid, | ||
volume, | ||
state, | ||
hed, | ||
dekJSON, | ||
completePct, | ||
incompletePct, | ||
scanningPct, | ||
createdAt, | ||
updatedAt, | ||
completedAt | ||
FROM | ||
Progress; | ||
|
||
DROP TABLE Progress; | ||
|
||
ALTER TABLE Progress_new | ||
RENAME TO Progress; |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "photostructure", | ||
"productName": "PhotoStructure", | ||
"author": "PhotoStructure, Inc. <[email protected]>", | ||
"version": "2024.3.0-prealpha", | ||
"version": "2024.3.1-prealpha", | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
"description": "PhotoStructure for Servers", | ||
"homepage": "https://photostructure.com/server/photostructure-for-node/", | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.