[KiRi] Reverted timestamp removal

- Needs more work, should be removed from other places too
This commit is contained in:
Salvador E. Tropea 2023-12-11 08:38:26 -03:00
parent 8101c885a0
commit 4ead489e2f
1 changed files with 3 additions and 3 deletions

View File

@ -735,10 +735,10 @@ function update_sheets_list(commit1, commit2) {
}
// File = ../[COMMIT]/_KIRI_/sch_sheets
// Data format: ID|LAYER
// Data format: Name_without_extension|Relative_file_name|UUID|Instance_name|Sheet_Path_Name
data1 = loadFile("../" + commit1 + "/_KIRI_/sch_sheets").split("\n").filter((a) => a);
data2 = loadFile("../" + commit2 + "/_KIRI_/sch_sheets").split("\n").filter((a) => a);
data1 = loadFile("../" + commit1 + "/_KIRI_/sch_sheets" + url_timestamp(commit1)).split("\n").filter((a) => a);
data2 = loadFile("../" + commit2 + "/_KIRI_/sch_sheets" + url_timestamp(commit2)).split("\n").filter((a) => a);
var sheets = [];