From b2f12e645f710f6a64777f67ab8154999a8e3f52 Mon Sep 17 00:00:00 2001
From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com>
Date: Fri, 25 Feb 2022 17:21:13 +0100
Subject: [PATCH 1/4] Update APT
---
scripts/uninstall-debian-conf.sh | 1 -
1 file changed, 1 deletion(-)
diff --git a/scripts/uninstall-debian-conf.sh b/scripts/uninstall-debian-conf.sh
index cc02cedf..aeba788d 100644
--- a/scripts/uninstall-debian-conf.sh
+++ b/scripts/uninstall-debian-conf.sh
@@ -4,7 +4,6 @@
# Remove apt repository source list when user uninstalls app
if grep ^ /etc/apt/sources.list /etc/apt/sources.list.d/* | grep qortal.list; then
- sudo apt-key del 5025E50F;
sudo rm /etc/apt/sources.list.d/qortal.list;
fi
From 15121ea1ea36ccf0038f16b6b97fa1ebbe8fc3bd Mon Sep 17 00:00:00 2001
From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com>
Date: Fri, 25 Feb 2022 17:21:46 +0100
Subject: [PATCH 2/4] Update APT
---
scripts/add-debian-apt-repo.sh | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/scripts/add-debian-apt-repo.sh b/scripts/add-debian-apt-repo.sh
index 21eddfac..5589351d 100644
--- a/scripts/add-debian-apt-repo.sh
+++ b/scripts/add-debian-apt-repo.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# Make necessary config and add LOTW Softwares apt repo
+# Make necessary config and add Qortal Softwares apt repo
# SCript to run UI without sandbox
echo \'/opt/${productFilename}/qortal-ui\' --no-sandbox > '/opt/${productFilename}/run-ui'
@@ -21,7 +21,6 @@ if ! which curl; then sudo apt-get --yes install curl; fi
# Install apt repository source list if it does not exist
if ! grep ^ /etc/apt/sources.list /etc/apt/sources.list.d/* | grep qortal.list; then
- curl -sS https://lotw.qortal.org/lotw_pub.gpg | sudo apt-key add -
- echo "deb [arch=amd64] https://lotw.qortal.org/debian stable main" \
- | sudo tee /etc/apt/sources.list.d/qortal.list
+ curl -sS https://update.qortal.online/repo/qortal.gpg | sudo apt-key add -
+ echo 'deb https://update.qortal.online/repo/ ./ ' > /etc/apt/sources.list.d/qortal.list
fi
From a935944bebe7f0dcdf49d3264330572616c3f581 Mon Sep 17 00:00:00 2001
From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com>
Date: Sat, 26 Feb 2022 14:47:03 +0100
Subject: [PATCH 3/4] Seperate grid for followed websites
---
.../plugins/core/qdn/websites.src.js | 224 +++++++++++++++++-
1 file changed, 223 insertions(+), 1 deletion(-)
diff --git a/qortal-ui-plugins/plugins/core/qdn/websites.src.js b/qortal-ui-plugins/plugins/core/qdn/websites.src.js
index 644bdf67..0c44ef99 100644
--- a/qortal-ui-plugins/plugins/core/qdn/websites.src.js
+++ b/qortal-ui-plugins/plugins/core/qdn/websites.src.js
@@ -28,7 +28,10 @@ class Websites extends LitElement {
searchName: { type: String },
searchResources: { type: Array },
searchFollowedNames: { type: Array },
- searchBlockedNames: { type: Array }
+ searchBlockedNames: { type: Array },
+ webResources: { type: Array },
+ webFollowedNames: { type: Array },
+ webBlockedNames: { type: Array }
}
}
@@ -177,6 +180,9 @@ class Websites extends LitElement {
this.searchResources = []
this.searchFollowedNames = []
this.searchBlockedNames = []
+ this.webResources = []
+ this.webFollowedNames = []
+ this.webBlockedNames = []
}
render() {
@@ -224,6 +230,38 @@ class Websites extends LitElement {
+