From 47c76bf228518925d12ded442779e1b76ecbcf25 Mon Sep 17 00:00:00 2001
From: Pigges
Date: Tue, 16 Apr 2024 16:35:40 +0200
Subject: [PATCH 1/8] remove ko-fi link
---
docs/.vuepress/theme/components/Home.vue | 28 ------------------------
1 file changed, 28 deletions(-)
diff --git a/docs/.vuepress/theme/components/Home.vue b/docs/.vuepress/theme/components/Home.vue
index d8ef2a3..41de2a4 100644
--- a/docs/.vuepress/theme/components/Home.vue
+++ b/docs/.vuepress/theme/components/Home.vue
@@ -21,10 +21,6 @@
{{ abtn.text }}
-
-
- Support us on Ko-Fi
-
@@ -129,25 +125,6 @@ export default {
margin-bottom 0
hr
margin 0
- .ko-fi
- color var(--counterAccent)
- display inline-flex
- width fit-content
- margin 0px auto 0 auto
- padding 15px 20px
- align-items center
- font-size 20px
- font-weight 500
- background-color var(--tertiaryBG)
- border-radius 8px
- gap 10px
- line-height 1
- img
- height 20px
- span
- margin 0
- .ko-fi:hover
- background-color var(--secondaryBG)
// @media (max-width: $MQNarrow)
@media (max-width: $MQMobile)
.home
@@ -173,9 +150,4 @@ export default {
width calc(100% - 40px)
& + .footer
margin-top 0
- .ko-fi
- padding 10px 15px
- font-size 18px
- img
- height 18px
From 0a4cc399f3d02e3e10b6c325dae13d53235e3bbe Mon Sep 17 00:00:00 2001
From: AQ00111111
Date: Mon, 5 Aug 2024 00:55:26 +0100
Subject: [PATCH 2/8] Update governance README.md
Brief update.
---
docs/governance/README.md | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/docs/governance/README.md b/docs/governance/README.md
index 2e3eb53..90e45cf 100644
--- a/docs/governance/README.md
+++ b/docs/governance/README.md
@@ -3,7 +3,7 @@ footer: true
---
# Foundation Board
-The LBRY Foundation is a US-based non-profit corporation governed by a board of directors. Followed by its councils formed by members of the community. The Foundation currently has five board members and board members serve a three year term but can be re-elected.
+The LBRY Foundation is a US-based non-profit corporation governed by a board of directors formed by members of the community.
## Board of Directors
@@ -11,37 +11,37 @@ The LBRY Foundation is a US-based non-profit corporation governed by a board of
+ name="Joe 'AQ'"
+ subtitle="Board President"/>
+ name="Ralph 'Coolguy3289'"
+ subtitle="Board Treasurer"/>
+ name="Ben 'Ben'"
+ subtitle="Board Chief Technical Officer"/>
+ name="'Shroom'"
+ subtitle="Board Secretary"/>
+ name="Philip 'Pigges'"
+ subtitle="Board Technical Officer"/>
-## Board Elections
+
+ TODO more info? -->
-## Future Structure
+
+ TODO more info? -->
From 73222926c55dd6f6db0c2b79fc3b5c7eee364f23 Mon Sep 17 00:00:00 2001
From: AQ00111111
Date: Mon, 5 Aug 2024 03:03:57 +0100
Subject: [PATCH 3/8] Update .vuepress config.js
Disabled ko-fi link and 'verified'
---
docs/.vuepress/config.js | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js
index 87e2e3f..8b2b023 100644
--- a/docs/.vuepress/config.js
+++ b/docs/.vuepress/config.js
@@ -89,7 +89,7 @@ const config = {
nav: [
// TODO update?
{ text: 'Projects', link: '/projects/' },
- { text: 'Verified', link: '/verified/' },
+// { text: 'Verified', link: '/verified/' },
{ text: 'Governance', link: '/governance/' },
{ text: 'LBRY Communities', link: '/hives/' }
],
@@ -115,10 +115,10 @@ const config = {
text: 'Branding',
link: '/branding/'
},
- {
- text: 'Ko-fi Donations',
- link: 'https://ko-fi.com/lbryfoundation'
- },
+// {
+// text: 'Ko-fi Donations',
+// link: 'https://ko-fi.com/lbryfoundation'
+// },
{
text: 'GitHub Repo',
link: 'https://github.com/LBRYFoundation/lbry.org'
From 05f5c78c2b1a24ddc660146ee62f84565eeec4b3 Mon Sep 17 00:00:00 2001
From: AQ00111111
Date: Mon, 5 Aug 2024 03:15:10 +0100
Subject: [PATCH 4/8] Update sidebar.js
temp. removed 'creator's council/curators/marketing'
---
docs/.vuepress/sidebar.js | 3 ---
1 file changed, 3 deletions(-)
diff --git a/docs/.vuepress/sidebar.js b/docs/.vuepress/sidebar.js
index f80842d..f918862 100644
--- a/docs/.vuepress/sidebar.js
+++ b/docs/.vuepress/sidebar.js
@@ -15,9 +15,6 @@ module.exports = {
title: 'Governance',
children: [
'/governance/',
- '/governance/creators-council/',
- '/governance/curators/',
- '/governance/marketing/',
]
}
]
From 94abdfb33c6e93487646bc2af24e386a58f2ff9d Mon Sep 17 00:00:00 2001
From: Pigges
Date: Mon, 5 Aug 2024 17:09:21 +0200
Subject: [PATCH 5/8] hide non functioning projects
---
docs/.vuepress/sidebar.js | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/docs/.vuepress/sidebar.js b/docs/.vuepress/sidebar.js
index f918862..57ffd92 100644
--- a/docs/.vuepress/sidebar.js
+++ b/docs/.vuepress/sidebar.js
@@ -3,10 +3,7 @@ module.exports = {
{
title: 'Projects',
children: [
- '/projects/',
- '/projects/swarm/',
- '/projects/podcast/',
- '/projects/radio/'
+ '/projects/'
]
}
],
From a710f7d521a71dfe822e5fe766edc382cc663848 Mon Sep 17 00:00:00 2001
From: AQ00111111
Date: Mon, 5 Aug 2024 18:54:32 +0100
Subject: [PATCH 6/8] Update Privacy README.md
Updated name and address.
---
docs/privacy/README.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/privacy/README.md b/docs/privacy/README.md
index 2ed1e8e..8bb8408 100644
--- a/docs/privacy/README.md
+++ b/docs/privacy/README.md
@@ -162,8 +162,8 @@ and we will promptly remove you from ALL correspondence.
If there are any questions regarding this privacy policy, you may contact us using the information below.
-> LBRY Foundation Inc.
-> 1072 CASITAS PASS RD #122
-> CARPINTERIA CA 93013
-> United States
+> The LBRY Foundation
+> 30 N Gould St #43809
+> Sheridan, WY 82801
+> USA
> [board@lbry.com](mailto:board@lbry.com)
From b4bd120c266edcbc835b6297df413c99268567e1 Mon Sep 17 00:00:00 2001
From: AQ00111111
Date: Mon, 5 Aug 2024 19:05:36 +0100
Subject: [PATCH 7/8] Update LICENSE
Fresh .
---
LICENSE | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/LICENSE b/LICENSE
index 8a82de1..96d60ed 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2015-2022 LBRY Inc.
+Copyright (c) 2024 The LBRY Foundation
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish,
@@ -12,4 +12,4 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS-IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OF OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
+SOFTWARE OR THE USE OF OTHER DEALINGS IN THE SOFTWARE.
From 1d07f343c3ed39a42862d29953c82b3b7c878008 Mon Sep 17 00:00:00 2001
From: AQ00111111
Date: Mon, 5 Aug 2024 19:10:20 +0100
Subject: [PATCH 8/8] Update README.md
Updated Ben
---
docs/governance/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/governance/README.md b/docs/governance/README.md
index 90e45cf..c465dab 100644
--- a/docs/governance/README.md
+++ b/docs/governance/README.md
@@ -21,7 +21,7 @@ The LBRY Foundation is a US-based non-profit corporation governed by a board of