From 32f64d704d3d527f35bf05411da4b989eb1b1dd4 Mon Sep 17 00:00:00 2001
From: Lex Berezhny <lex@damoti.com>
Date: Tue, 31 Dec 2019 19:20:37 -0500
Subject: [PATCH] lbry directory in lbry-sdk repo moved up one level

---
 app/components/ecosystem/module-lbrycrd.js |  3 +--
 app/components/edit-link.js                |  2 +-
 app/views/api.js                           | 13 ++-----------
 documents/contribute.md                    |  6 ++----
 documents/resources/daemon-settings.md     |  2 +-
 5 files changed, 7 insertions(+), 19 deletions(-)

diff --git a/app/components/ecosystem/module-lbrycrd.js b/app/components/ecosystem/module-lbrycrd.js
index 346b258..85c6ee2 100644
--- a/app/components/ecosystem/module-lbrycrd.js
+++ b/app/components/ecosystem/module-lbrycrd.js
@@ -22,8 +22,7 @@ export default () => `
 
       <div>
         <span><a href="https://github.com/lbryio/lbrycrd">lbrycrd</a></span>
-        <span><a href="https://github.com/lbryio/torba">torba</a></span>
-        <span><a href="https://github.com/lbryio/lbryumx">lbryumx</a></span>
+        <span><a href="https://github.com/lbryio/lbry-sdk">SDK</a></span>
       </div>
     </h2>
 
diff --git a/app/components/edit-link.js b/app/components/edit-link.js
index 04f93e5..a281b07 100644
--- a/app/components/edit-link.js
+++ b/app/components/edit-link.js
@@ -31,7 +31,7 @@ export default pagePath => {
       break;
 
     case "/api/sdk":
-      githubUrl = "https://github.com/lbryio/lbry-sdk/blob/master/lbry/docs/api.json";
+      githubUrl = "https://github.com/lbryio/lbry-sdk/blob/master/docs/api.json";
       break;
 
     default:
diff --git a/app/views/api.js b/app/views/api.js
index b0fa70a..3e4531d 100644
--- a/app/views/api.js
+++ b/app/views/api.js
@@ -17,7 +17,7 @@ import redirects from "~data/redirects.json";
 
 const cache = new Map();
 const filePathBlockchain = "/contrib/devtools/generated/api_v1.json";
-const filePathSdk = "/lbry/docs/api.json";
+const filePathSdk = "/docs/api.json";
 const rawGitHubBase = "https://raw.githubusercontent.com/lbryio/";
 
 const octokit = new Octokit({
@@ -254,16 +254,7 @@ async function getTags(repositoryName) {
   switch(true) {
     case repositoryName === "lbry-sdk":
       data.forEach(tag => {
-        if (
-          tag.name >= "v0.38.0" &&
-          tag.name !== "v0.38.0rc7" &&
-          tag.name !== "v0.38.0rc6" &&
-          tag.name !== "v0.38.0rc5" &&
-          tag.name !== "v0.38.0rc4" &&
-          tag.name !== "v0.38.0rc3" &&
-          tag.name !== "v0.38.0rc2" &&
-          tag.name !== "v0.38.0rc1"
-        ) tags.push(tag.name);
+        if (tag.name >= "v0.52.0") tags.push(tag.name);
       });
       break;
 
diff --git a/documents/contribute.md b/documents/contribute.md
index 834dfd4..f9204ae 100644
--- a/documents/contribute.md
+++ b/documents/contribute.md
@@ -22,10 +22,8 @@ If you want to contribute to LBRY, there's definitely something for you! The fir
 | Component | Language (Toolset) | What Is It | Intro Video
 --- | --- | --- | ---
 | [lbrycrd](https://github.com/lbryio/lbrycrd) | C++ | A full node for the LBRY blockchain, including a standalone wallet. Used by miners and some applications. Most consumer applications do not bundle [[lbrycrd]] directly, and instead bundle [[lbry-sdk]]. | [Video](/resources/video-lbrycrd)
-| [lbry-sdk](https://github.com/lbryio/lbry-sdk) | Python (asyncio) | A daemon that can be used directly or to develop other applications. Provides convenience [APIs](/api/sdk), bundles an SPV wallet ([[torba]]), and contains an implementation of the LBRY data network. | [Video](/resources/video-lbrysdk)
-| [torba](https://github.com/lbryio/lbry-sdk) | Python | An [[SPV]] (Simple Payment Verification) wallet. Bundled with [[lbry-sdk]]. 
-| [wallet server](https://github.com/lbryio/lbry-sdk/tree/master/lbry/lbry/wallet/server) | Protobuf, Python |  The wallet server used by [[torba]]. | |
-| [schema](https://github.com/lbryio/lbry-sdk/tree/master/lbry/lbry/schema) | Protobuf, Python | Defines the structure of the metadata stored in the LBRY blockchain. | |
+| [lbry-sdk](https://github.com/lbryio/lbry-sdk) | Python (asyncio) | A daemon that can be used directly or to develop other applications. Provides convenience [APIs](/api/sdk), bundles an SPV wallet client and server, and contains an implementation of the LBRY data network. | [Video](/resources/video-lbrysdk)
+| [schema](https://github.com/lbryio/lbry-sdk/tree/master/lbry/schema) | Protobuf, Python | Defines the structure of the metadata stored in the LBRY blockchain. | |
 
 ### Official Applications
 | Application | Language (Toolset) | What Is It | Intro Video
diff --git a/documents/resources/daemon-settings.md b/documents/resources/daemon-settings.md
index 7cb4cb3..1dfc64c 100644
--- a/documents/resources/daemon-settings.md
+++ b/documents/resources/daemon-settings.md
@@ -3,7 +3,7 @@ title: SDK Settings
 description: The daemon provided by the LBRY SDK has many settings. This resource lists them all and what they mean. Ready, set, settings! 
 ---
 
-This document outlines how to configure SDK daemon settings and what options are available. They can be found on the lbry GitHub repository in [conf.py](https://github.com/lbryio/lbry-sdk/blob/master/lbry/lbry/conf.py).
+This document outlines how to configure SDK daemon settings and what options are available. They can be found on the lbry GitHub repository in [conf.py](https://github.com/lbryio/lbry-sdk/blob/master/lbry/conf.py).
 
 ## Daemon settings configuration