From 68f0ecd002a1d776ec21ad38cbcd7affa798166f Mon Sep 17 00:00:00 2001 From: Bruno Skvorc Date: Fri, 12 Oct 2018 13:22:49 +0200 Subject: [PATCH 1/5] Added rocksdb-libdev --- source/docs/building.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/building.md b/source/docs/building.md index 932081f..b7bd0ab 100644 --- a/source/docs/building.md +++ b/source/docs/building.md @@ -21,7 +21,7 @@ This document will explain how to install, test, and run Nimbus on your local ma ``` - on Linux ```bash - sudo apt-get install rocksdb # or your own Linux distribution's equivalent + sudo apt-get install librocksdb-dev rocksdb # or your own Linux distribution's equivalent curl https://nim-lang.org/choosenim/init.sh -sSf | sh ``` From c921283cd9cb78bdd9fe1cbb2ae73d9142030ed6 Mon Sep 17 00:00:00 2001 From: Bruno Skvorc Date: Fri, 12 Oct 2018 13:24:41 +0200 Subject: [PATCH 2/5] Removed advanced options stub --- source/_data/sidebar.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/source/_data/sidebar.yml b/source/_data/sidebar.yml index b86d5e2..edd5280 100644 --- a/source/_data/sidebar.yml +++ b/source/_data/sidebar.yml @@ -2,7 +2,6 @@ docs: Nimbus: introduction: index.html building: building.html - options: options.html libs: libs.html milestones: milestones.html design: design.html From 703443427c3ec6e1eb2d0c68be18fcc550b744d1 Mon Sep 17 00:00:00 2001 From: Bruno Skvorc Date: Fri, 12 Oct 2018 13:25:04 +0200 Subject: [PATCH 3/5] Removed libs stub --- source/_data/sidebar.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/source/_data/sidebar.yml b/source/_data/sidebar.yml index edd5280..237886b 100644 --- a/source/_data/sidebar.yml +++ b/source/_data/sidebar.yml @@ -2,7 +2,6 @@ docs: Nimbus: introduction: index.html building: building.html - libs: libs.html milestones: milestones.html design: design.html team: team.html From 5a6afc31b04a1582d41b1e3f84b8e9f901a9e01a Mon Sep 17 00:00:00 2001 From: Bruno Skvorc Date: Fri, 12 Oct 2018 13:32:24 +0200 Subject: [PATCH 4/5] Added nimbus tag to blog fetching --- themes/navy/source/js/fetch_blog_posts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/navy/source/js/fetch_blog_posts.js b/themes/navy/source/js/fetch_blog_posts.js index 4195494..64e2a53 100644 --- a/themes/navy/source/js/fetch_blog_posts.js +++ b/themes/navy/source/js/fetch_blog_posts.js @@ -1,5 +1,5 @@ $(document).ready(function () { - let url = 'https://our.status.im/ghost/api/v0.1/posts/?limit=3&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba'; + let url = 'https://our.status.im/ghost/api/v0.1/posts/?filter=tag:nimbus&limit=3&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba'; var urlBase = [location.protocol, '//', location.host, location.pathname].join(''); $.ajax({ From fcab0d097c837f731e708bbb33a385a9b873129b Mon Sep 17 00:00:00 2001 From: Bruno Skvorc Date: Fri, 12 Oct 2018 13:34:52 +0200 Subject: [PATCH 5/5] Added nimbus tag to blog fetching --- themes/navy/source/js/fetch_blog_posts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/navy/source/js/fetch_blog_posts.js b/themes/navy/source/js/fetch_blog_posts.js index 64e2a53..7a99536 100644 --- a/themes/navy/source/js/fetch_blog_posts.js +++ b/themes/navy/source/js/fetch_blog_posts.js @@ -1,5 +1,5 @@ $(document).ready(function () { - let url = 'https://our.status.im/ghost/api/v0.1/posts/?filter=tag:nimbus&limit=3&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba'; + let url = 'https://our.status.im/ghost/api/v0.1/posts/?filter=tag:nimbus&order=published_at%20asc&limit=3&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba'; var urlBase = [location.protocol, '//', location.host, location.pathname].join(''); $.ajax({