1
0
mirror of https://github.com/mbirth/tcl_update_db.git synced 2024-09-19 16:53:25 +01:00

Merge branch 'master' of github.com:mbirth/tcl_update_db

This commit is contained in:
Markus Birth 2018-11-23 20:09:10 +01:00
commit d526eb19a0
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A
3 changed files with 29 additions and 12 deletions

View File

@ -32,10 +32,10 @@ document.addEventListener 'DOMContentLoaded', (event) ->
tt_text = document.querySelector '#tooltip-text'
ref = event.target.parentNode.dataset.ref
ver = event.target.innerText
ver = event.target.innerText.trim()
meta = window.metadata[ref]
#console.log("Meta: %o", meta)
#console.log("Meta: %o (Ver: %o)", meta, ver)
vermeta = meta['versions'][ver]
updateText = ''

View File

@ -195,7 +195,9 @@ INSERT OR IGNORE INTO "devices" VALUES ("PRD-63736-009", 5, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63736-010", 5, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63736-011", 5, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63736-012", 5, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63736-014", 5, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63736-015", 5, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63736-016", 5, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63736-017", 5, NULL);
-- MOTION
@ -208,6 +210,7 @@ INSERT OR IGNORE INTO "devices" VALUES ("PRD-63737-015", 8, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63739-009", 9, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63739-010", 9, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63739-017", 9, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63753-001", 10, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63753-002", 10, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63753-003", 10, NULL);
INSERT OR IGNORE INTO "devices" VALUES ("PRD-63753-008", 10, NULL);

View File

@ -27,14 +27,14 @@ CREATE VIEW "full_device_names" AS
-- we only care about the first file for now
CREATE TABLE "files" (
"sha1" TEXT UNIQUE PRIMARY KEY, -- checksum of file
"file_name" TEXT, -- filename of file
"file_size" INTEGER, -- size
"type" TEXT, -- FULL(4) or OTA(2) update
"fv" TEXT, -- from version (only for OTA)
"tv" TEXT, -- target version, e.g. AAQ302
"note" TEXT, -- description of file (optional)
"published_first" INTEGER, -- stamp of earliest pubdate
"published_last" INTEGER -- stamp of latest pubdate
"file_name" TEXT, -- filename of file
"file_size" INTEGER, -- size
"type" TEXT, -- FULL(4) or OTA(2) update
"fv" TEXT, -- from version (only for OTA)
"tv" TEXT, -- target version, e.g. AAQ302
"note" TEXT, -- description of file (optional)
"published_first" TEXT, -- ISO 8601 stamp of earliest pubdate
"published_last" TEXT -- ISO 8601 stamp of latest pubdate
);
CREATE TABLE "updates" (
@ -42,9 +42,9 @@ CREATE TABLE "updates" (
"curef" TEXT, -- PRD number
"update_desc" TEXT,
"svn" TEXT, -- version info from <SVN> field
"seenDate" INTEGER, -- date added to db
"seenDate" TEXT, -- ISO 8601 date added to db
"revoked" INTEGER, -- (bool) 1 = firmware revoked
"pubDate" INTEGER, -- published date
"pubDate" TEXT, -- ISO 8601 published date
"publisher" TEXT, -- publisher
"num_files" INTEGER, -- number of files total
"fwId" TEXT, -- <FW_ID> (CHANGES FOR THE SAME FILE_ID!!!) MAYBE MOVE TO update_map
@ -57,6 +57,20 @@ CREATE UNIQUE INDEX "index_updates" ON "updates" (
"file_id"
);
CREATE TABLE "changelog" (
"fv" TEXT, -- from version or NULL
"tv" TEXT NOT NULL, -- target version
"note_en" TEXT, -- update note
"note_ja" TEXT,
"note_zh" TEXT,
"note_ko" TEXT
);
CREATE TABLE "versionmap" (
"curef" TEXT REFERENCES "devices" ("curef"), -- PRD number
"tv" TEXT REFERENCES "changelog" ("tv") -- version
);
CREATE VIEW "updates_files" AS
SELECT * FROM "updates" u
LEFT JOIN "files" f ON u.file_sha1=f.sha1;