File tree Expand file tree Collapse file tree 5 files changed +409
-192
lines changed
Expand file tree Collapse file tree 5 files changed +409
-192
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,13 @@ New Features:
8787* Enabled HiDPI support on Windows 10, allowing experiments to run at the true
8888 desktop resolution (e.g. 1920x1080) instead of the scaled desktop resolution
8989 (e.g. 1600x900).
90+ * Added export logging to prevent re-exporting identical data files when
91+ repeatedly calling ``klibs export `` for a project. With this change,
92+ duplicate data files (e.g. ``p1.2022-11-19_1.txt `` and
93+ ``p1.2022-11-19_2.txt ``) will only occur if the database is rebuilt,
94+ and new data is collected and exported that results in an identical file name
95+ to an existing data file from before the rebuild. These changes do not affect
96+ single-file (``klibs export -c ``) exporting.
9097
9198
9299API Changes:
Original file line number Diff line number Diff line change 108108SQL_BIN = 'blob'
109109SQL_NULL = 'null'
110110SQL_COL_DELIM_STR = "`, `"
111- ID = "id"
112- DB_SUPPLY_PATH = "s"
113- DB_CREATE = "c"
114111QUERY_INS = "insert"
115112QUERY_UPD = "update"
116113QUERY_DEL = "delete"
117114QUERY_SEL = "select"
115+ DB_INTERNAL_TABLES = [
116+ 'sqlite_sequence' ,
117+ 'session_info' ,
118+ 'export_history' ,
119+ ]
118120
119121# AudioResponse Constants
120122AR_CHUNK_SIZE = 1024
You can’t perform that action at this time.
0 commit comments