mirror of
https://github.com/simon987/sist2.git
synced 2025-12-19 02:09:06 +00:00
Compare commits
5 Commits
embeddings
...
b81ccebdb1
| Author | SHA1 | Date | |
|---|---|---|---|
| b81ccebdb1 | |||
| b2d214a19a | |||
| 69438464bf | |||
|
|
aa60b526f4 | ||
| 2ea8b51b34 |
@@ -48,5 +48,6 @@ COPY --from=build /build/build/sist2 /root/sist2
|
|||||||
# sist2-admin
|
# sist2-admin
|
||||||
WORKDIR /root/sist2-admin
|
WORKDIR /root/sist2-admin
|
||||||
COPY sist2-admin/requirements.txt /root/sist2-admin/
|
COPY sist2-admin/requirements.txt /root/sist2-admin/
|
||||||
RUN python3 -m pip install --no-cache -r /root/sist2-admin/requirements.txt
|
RUN ln /usr/bin/python3 /usr/bin/python
|
||||||
|
RUN python -m pip install --no-cache -r /root/sist2-admin/requirements.txt
|
||||||
COPY --from=build /build/sist2-admin/ /root/sist2-admin/
|
COPY --from=build /build/sist2-admin/ /root/sist2-admin/
|
||||||
|
|||||||
12
sist2-vue/package-lock.json
generated
12
sist2-vue/package-lock.json
generated
@@ -9431,9 +9431,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/protobufjs": {
|
"node_modules/protobufjs": {
|
||||||
"version": "6.11.3",
|
"version": "6.11.4",
|
||||||
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz",
|
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.4.tgz",
|
||||||
"integrity": "sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==",
|
"integrity": "sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@protobufjs/aspromise": "^1.1.2",
|
"@protobufjs/aspromise": "^1.1.2",
|
||||||
@@ -18886,9 +18886,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"protobufjs": {
|
"protobufjs": {
|
||||||
"version": "6.11.3",
|
"version": "6.11.4",
|
||||||
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz",
|
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.4.tgz",
|
||||||
"integrity": "sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==",
|
"integrity": "sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@protobufjs/aspromise": "^1.1.2",
|
"@protobufjs/aspromise": "^1.1.2",
|
||||||
"@protobufjs/base64": "^1.1.2",
|
"@protobufjs/base64": "^1.1.2",
|
||||||
|
|||||||
@@ -591,7 +591,7 @@ cJSON *database_incremental_scan_end(database_t *db) {
|
|||||||
|
|
||||||
CRASH_IF_NOT_SQLITE_OK(sqlite3_exec(
|
CRASH_IF_NOT_SQLITE_OK(sqlite3_exec(
|
||||||
db->db,
|
db->db,
|
||||||
"INSERT INTO delete_list (id) SELECT id FROM document WHERE marked=0;",
|
"INSERT INTO delete_list (id) SELECT id FROM document WHERE marked=0 ON CONFLICT DO NOTHING;",
|
||||||
NULL, NULL, NULL
|
NULL, NULL, NULL
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|||||||
@@ -51,11 +51,11 @@
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include "git_hash.h"
|
#include "git_hash.h"
|
||||||
|
|
||||||
#define VERSION "3.2.0"
|
#define VERSION "3.2.1"
|
||||||
static const char *const Version = VERSION;
|
static const char *const Version = VERSION;
|
||||||
static const int VersionMajor = 3;
|
static const int VersionMajor = 3;
|
||||||
static const int VersionMinor = 2;
|
static const int VersionMinor = 2;
|
||||||
static const int VersionPatch = 0;
|
static const int VersionPatch = 1;
|
||||||
|
|
||||||
#ifndef SIST_PLATFORM
|
#ifndef SIST_PLATFORM
|
||||||
#define SIST_PLATFORM unknown
|
#define SIST_PLATFORM unknown
|
||||||
|
|||||||
Reference in New Issue
Block a user