From 02ecda067fd4e895e99f1ac95b22c471c927698e Mon Sep 17 00:00:00 2001 From: Jason Tudisco Date: Thu, 3 Feb 2022 03:27:03 -0600 Subject: [PATCH] Change page security. Added special script to handle parcel and node require. Added new tagging control. Adding new HTML Sanitizer. Packages so I could be sqlite with the right electron version. Some style changes. Interface changes. Changes to the sqlite/client. Interfaces cuased errors. Fixed bugs in electron ipc handling. Fixes to the sqlite libs. Create a new input control that can handle pasting. pasting HTML works with cycle through HTML,Text, Sanatized HTML. New UI controls. Time stamp control has more functionality. --- r.js | 1 + src/img/clock1-white.svg | 40 ++++++++++++++++++++++++ src/main/ipc.js | 2 ++ src/ui/app-divider.riot | 48 +++++++++++++++++++++++++++++ src/ui/timechain-input-buttons.riot | 43 ++++++++++++++++++++++++++ src/ui/timechain-list.riot | 12 ++++++++ src/ui/timechain-tag.riot | 33 ++++++++++++++++++++ 7 files changed, 179 insertions(+) create mode 100644 r.js create mode 100644 src/img/clock1-white.svg create mode 100644 src/main/ipc.js create mode 100644 src/ui/app-divider.riot create mode 100644 src/ui/timechain-input-buttons.riot create mode 100644 src/ui/timechain-list.riot create mode 100644 src/ui/timechain-tag.riot diff --git a/r.js b/r.js new file mode 100644 index 0000000..e00733e --- /dev/null +++ b/r.js @@ -0,0 +1 @@ +window.require = require; \ No newline at end of file diff --git a/src/img/clock1-white.svg b/src/img/clock1-white.svg new file mode 100644 index 0000000..c92e193 --- /dev/null +++ b/src/img/clock1-white.svg @@ -0,0 +1,40 @@ + + + + + + + diff --git a/src/main/ipc.js b/src/main/ipc.js new file mode 100644 index 0000000..f0d509b --- /dev/null +++ b/src/main/ipc.js @@ -0,0 +1,2 @@ +//IPC STUFF + diff --git a/src/ui/app-divider.riot b/src/ui/app-divider.riot new file mode 100644 index 0000000..a954430 --- /dev/null +++ b/src/ui/app-divider.riot @@ -0,0 +1,48 @@ + + +
{props.label}
+ + + + + +
\ No newline at end of file diff --git a/src/ui/timechain-input-buttons.riot b/src/ui/timechain-input-buttons.riot new file mode 100644 index 0000000..0bcfd50 --- /dev/null +++ b/src/ui/timechain-input-buttons.riot @@ -0,0 +1,43 @@ + + +
+ + +
+ + + + + +
\ No newline at end of file diff --git a/src/ui/timechain-list.riot b/src/ui/timechain-list.riot new file mode 100644 index 0000000..5306eb8 --- /dev/null +++ b/src/ui/timechain-list.riot @@ -0,0 +1,12 @@ + + +
+ List of shit +
+
+ +
+ bla bla +
+ +
\ No newline at end of file diff --git a/src/ui/timechain-tag.riot b/src/ui/timechain-tag.riot new file mode 100644 index 0000000..5141563 --- /dev/null +++ b/src/ui/timechain-tag.riot @@ -0,0 +1,33 @@ + +
+ +
+ + + + + +
\ No newline at end of file