diff --git a/Makefile b/Makefile
index 645cb76e2..62e450237 100644
--- a/Makefile
+++ b/Makefile
@@ -69,7 +69,9 @@ jekyll:
cd blog && bundle exec jekyll serve
jekyll_drafts:
cd blog && bundle exec jekyll serve --drafts
-
+jekyll_build:
+ cd blog && bundle exec jekyll build
+
# runs tests
test:
RUNWITHMAKEBUILD=True CURRENT_UID=${CURRENT_UID} CURRENT_GID=${CURRENT_GID} TEST=True docker compose -f docker-compose.yml up -d newsblur_web
diff --git a/ansible/inventories/hetzner.yml b/ansible/inventories/hetzner.yml
index 48445f838..fc088b80f 100644
--- a/ansible/inventories/hetzner.yml
+++ b/ansible/inventories/hetzner.yml
@@ -18,7 +18,7 @@ groups:
hcount: inventory_hostname.startswith('happ-count')
push: inventory_hostname.startswith('happ-push')
hpush: inventory_hostname.startswith('happ-push')
- blogs: inventory_hostname.startswith('blog')
+ blogs: inventory_hostname.startswith('hblog')
forum: inventory_hostname.startswith('hforum')
node: inventory_hostname.startswith('hnode')
diff --git a/ansible/roles/ufw/tasks/main.yml b/ansible/roles/ufw/tasks/main.yml
index e9fef9b1f..db15a4650 100644
--- a/ansible/roles/ufw/tasks/main.yml
+++ b/ansible/roles/ufw/tasks/main.yml
@@ -124,6 +124,9 @@
:DOCKER-USER - [0:0]
-A DOCKER-USER -j ufw-user-forward
+ # Allow traffic on port 80 to Docker containers
+ -A DOCKER-USER -p tcp --dport 80 -j ACCEPT
+
-A DOCKER-USER -j RETURN -s 10.0.0.0/8
-A DOCKER-USER -j RETURN -s 172.16.0.0/12
-A DOCKER-USER -j RETURN -s 192.168.0.0/16
diff --git a/apps/profile/tasks.py b/apps/profile/tasks.py
index 70cdb043a..b50cb29f6 100644
--- a/apps/profile/tasks.py
+++ b/apps/profile/tasks.py
@@ -29,9 +29,9 @@ def FetchArchiveFeedsForUser(user_id):
@app.task()
-def FetchArchiveFeedsChunk(user_id, feed_ids):
+def FetchArchiveFeedsChunk(feed_ids, user_id=None):
# logging.debug(" ---> Fetching archive stories: %s for %s" % (feed_ids, user_id))
- UserSubscription.fetch_archive_feeds_chunk(user_id, feed_ids)
+ UserSubscription.fetch_archive_feeds_chunk(feed_ids, user_id)
@app.task()
diff --git a/apps/reader/models.py b/apps/reader/models.py
index 6c89e888e..0b11d97c1 100644
--- a/apps/reader/models.py
+++ b/apps/reader/models.py
@@ -507,6 +507,9 @@ class UserSubscription(models.Model):
feed.setup_feed_for_premium_subscribers(allow_skip_resync=allow_skip_resync)
feed.count_subscribers()
+ if feed.archive_count:
+ feed.schedule_fetch_archive_feed()
+
r = redis.Redis(connection_pool=settings.REDIS_PUBSUB_POOL)
r.publish(user.username, "reload:feeds")
@@ -654,13 +657,15 @@ class UserSubscription(models.Model):
celery.chord(search_chunks)(callback)
@classmethod
- def fetch_archive_feeds_chunk(cls, user_id, feed_ids):
+ def fetch_archive_feeds_chunk(cls, feed_ids, user_id=None):
from apps.rss_feeds.models import Feed
r = redis.Redis(connection_pool=settings.REDIS_PUBSUB_POOL)
- user = User.objects.get(pk=user_id)
-
- logging.user(user, "~FCFetching archive stories from %s feeds..." % len(feed_ids))
+ if user_id:
+ user = User.objects.get(pk=user_id)
+ logging.user(user, "~FCFetching archive stories from %s feeds..." % len(feed_ids))
+ else:
+ logging.debug("~FCFetching archive stories from %s feeds..." % len(feed_ids))
for feed_id in feed_ids:
feed = Feed.get_by_id(feed_id)
@@ -669,7 +674,8 @@ class UserSubscription(models.Model):
feed.fill_out_archive_stories()
- r.publish(user.username, "fetch_archive:feeds:%s" % ",".join([str(f) for f in feed_ids]))
+ if user_id:
+ r.publish(user.username, "fetch_archive:feeds:%s" % ",".join([str(f) for f in feed_ids]))
@classmethod
def finish_fetch_archive_feeds(cls, user_id, start_time, starting_story_count):
diff --git a/apps/reader/views.py b/apps/reader/views.py
index 84920ad7b..040aa3ebd 100644
--- a/apps/reader/views.py
+++ b/apps/reader/views.py
@@ -523,6 +523,7 @@ def load_feeds_flat(request):
categories = MCategory.serialize()
saved_searches = MSavedSearch.user_searches(user.pk)
+ dashboard_rivers = MDashboardRiver.get_user_rivers(user.pk)
logging.user(
request,
@@ -555,6 +556,7 @@ def load_feeds_flat(request):
"starred_count": starred_count,
"starred_counts": starred_counts,
"saved_searches": saved_searches,
+ "dashboard_rivers": dashboard_rivers,
"share_ext_token": user.profile.secret_token,
}
return data
diff --git a/apps/rss_feeds/models.py b/apps/rss_feeds/models.py
index a4eca1342..ac2eba2a1 100755
--- a/apps/rss_feeds/models.py
+++ b/apps/rss_feeds/models.py
@@ -715,6 +715,16 @@ class Feed(models.Model):
self.set_next_scheduled_update(verbose=settings.DEBUG)
self.sync_redis(allow_skip_resync=allow_skip_resync)
+ def schedule_fetch_archive_feed(self):
+ from apps.profile.tasks import FetchArchiveFeedsChunk
+
+ logging.debug(f"~FC~SBScheduling fetch of archive feed ~SB{self.log_title}")
+ FetchArchiveFeedsChunk.apply_async(
+ kwargs=dict(feed_ids=[self.pk]),
+ queue="search_indexer",
+ time_limit=settings.MAX_SECONDS_ARCHIVE_FETCH_SINGLE_FEED,
+ )
+
def check_feed_link_for_feed_address(self):
@timelimit(10)
def _1():
@@ -2850,8 +2860,8 @@ class MFeedPage(mongo.Document):
data = zlib.decompress(page_data_z)
except zlib.error as e:
logging.debug(" ***> Zlib decompress error: %s" % e)
- self.page_data = None
- self.save()
+ feed_page.page_data = None
+ feed_page.save()
return
if not data:
diff --git a/apps/search/models.py b/apps/search/models.py
index 949c67542..653d8b6de 100644
--- a/apps/search/models.py
+++ b/apps/search/models.py
@@ -482,7 +482,7 @@ class SearchStory:
try:
result_ids = [r["_id"] for r in results["hits"]["hits"]]
except Exception as e:
- logging.info(' ---> ~FRInvalid search query "%s": %s' % (query, e))
+ logging.info(' ---> ~FRInvalid more like this query "%s": %s' % (story_hash, e))
return []
return result_ids
diff --git a/blog/_config.yml b/blog/_config.yml
index 17f7ca5f7..6a7b71946 100644
--- a/blog/_config.yml
+++ b/blog/_config.yml
@@ -8,7 +8,7 @@
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
#
-# If you need help with YAML syntax, here are some quick references for you:
+# If you need help with YAML syntax, here are some quick references for you:
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
# https://learnxinyminutes.com/docs/yaml/
#
@@ -23,16 +23,17 @@ email: blog@newsblur.com
tagline: A new sound of an old instrument
description: > # this means to ignore newlines until "baseurl:"
NewsBlur is a personal news reader that brings people together to talk about the world.
-
+
A new sound of an old instrument.
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://blog.newsblur.com" # the base hostname & protocol for your site, e.g. http://example.com
site.url: "https://blog.newsblur.com" # the base hostname & protocol for your site, e.g. http://example.com
permalink: pretty
twitter_username: newsblur
-github_username: samuelclay
+github_username: samuelclay
logo: /assets/newsblur_logo_512.png
future: true
+timezone: America/New_York
# Build settings
theme: minima
@@ -42,7 +43,6 @@ plugins:
- jekyll-paginate
paginate: 10
paginate_path: "/page:num"
-
# Exclude from processing.
# The following items will not be processed, by default.
# Any item listed under the `exclude:` key here will be automatically added to
diff --git a/blog/_posts/2024-10-22-newsblur-macos-app.md b/blog/_posts/2024-10-22-newsblur-macos-app.md
index 17ce9d588..b6f30bce6 100644
--- a/blog/_posts/2024-10-22-newsblur-macos-app.md
+++ b/blog/_posts/2024-10-22-newsblur-macos-app.md
@@ -1,10 +1,12 @@
---
layout: post
-title: NewsBlur's native macOS App
-tags: ['macos']
+title: NewsBlur's native macOS App offers news notifications directly on your desktop
+tags: ["macos"]
---
-If you're like me and like to have NewsBlur sitting open all day, then you'll love the new NewsBlur macOS app. It's a first-class app that supports all of NewsBlur's features, from intelligence training to sharing/blurblogs.
+If you're like me and like to have NewsBlur sitting open all day, then you'll love the new NewsBlur macOS app. It's a first-class app that supports all of NewsBlur's features, from intelligence training to sharing/blurblogs.
+
+Introducing the NewsBlur macOS app, available for free on the Mac App Store.
@@ -12,25 +14,21 @@ The macOS app also supports all of the themes, so it can turn itself into dark m
-
+It's configurable and supports ay=utomatic hiding and showing of the feed list so you can focus on the stories you want to read. Use your mouse to swipe left and right on both stories and to swap which pane is visible.
-
+In the Grid view, you can swipe right with your mouse to temporarily show the feed list, giving you a compact view of your news stories without having to give up screen real estate.
-
+Training is supported natively, so you can hide those stories you don't want to see while highlighting those thast you do.
+It's important to be able to train, because you can set notifications to be sent from either your Unread list or your Focus list, ensuring you only see the notifications from sites you want to see. And clicking on those native macOS notifications takes you directly to the story in the new macOS app.
-
-
-
-
-
-
+
If you have any ideas you'd like to see on macOS, feel free to post an idea on the NewsBlur Forum.
diff --git a/blog/_site/2011/03/15/a-new-logo-for-a-new-blog/index.html b/blog/_site/2011/03/15/a-new-logo-for-a-new-blog/index.html
index b185a106d..3b53ab7cf 100644
--- a/blog/_site/2011/03/15/a-new-logo-for-a-new-blog/index.html
+++ b/blog/_site/2011/03/15/a-new-logo-for-a-new-blog/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
A New Logo for a New Blog | The NewsBlur Blog
-
+
diff --git a/blog/_site/2011/04/01/explaining-intelligence/index.html b/blog/_site/2011/04/01/explaining-intelligence/index.html
index c302f75d6..9d6d039bf 100644
--- a/blog/_site/2011/04/01/explaining-intelligence/index.html
+++ b/blog/_site/2011/04/01/explaining-intelligence/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Explaining Intelligence | The NewsBlur Blog
-
+
diff --git a/blog/_site/2011/04/23/where-we-are-in-april/index.html b/blog/_site/2011/04/23/where-we-are-in-april/index.html
index ea8462bdd..a2ae9e206 100644
--- a/blog/_site/2011/04/23/where-we-are-in-april/index.html
+++ b/blog/_site/2011/04/23/where-we-are-in-april/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Where We Are in April | The NewsBlur Blog
-
+
diff --git a/blog/_site/2011/04/26/make-your-own-feed-reader-with-newsblurs-new-api/index.html b/blog/_site/2011/04/26/make-your-own-feed-reader-with-newsblurs-new-api/index.html
index e367b26cb..da1a5ec5f 100644
--- a/blog/_site/2011/04/26/make-your-own-feed-reader-with-newsblurs-new-api/index.html
+++ b/blog/_site/2011/04/26/make-your-own-feed-reader-with-newsblurs-new-api/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Make your own feed reader with NewsBlur’s new API | The NewsBlur Blog
-
+
diff --git a/blog/_site/2011/08/09/blar-a-new-android-app-for-newsblur/index.html b/blog/_site/2011/08/09/blar-a-new-android-app-for-newsblur/index.html
index 2dbb60f4e..1b84c480b 100644
--- a/blog/_site/2011/08/09/blar-a-new-android-app-for-newsblur/index.html
+++ b/blog/_site/2011/08/09/blar-a-new-android-app-for-newsblur/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Blar: A new Android app for NewsBlur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2011/09/30/customizing-the-reader-step-1-story-titles/index.html b/blog/_site/2011/09/30/customizing-the-reader-step-1-story-titles/index.html
index e4e920613..dc3a8d022 100644
--- a/blog/_site/2011/09/30/customizing-the-reader-step-1-story-titles/index.html
+++ b/blog/_site/2011/09/30/customizing-the-reader-step-1-story-titles/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Customizing the reader, step 1: story titles | The NewsBlur Blog
-
+
diff --git a/blog/_site/2011/10/26/a-social-feed-reader/index.html b/blog/_site/2011/10/26/a-social-feed-reader/index.html
index 6edcb0bbc..55e4619f2 100644
--- a/blog/_site/2011/10/26/a-social-feed-reader/index.html
+++ b/blog/_site/2011/10/26/a-social-feed-reader/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
A Social Feed Reader | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/01/16/2011-year-in-review/index.html b/blog/_site/2012/01/16/2011-year-in-review/index.html
index f412401b0..b8763ef19 100644
--- a/blog/_site/2012/01/16/2011-year-in-review/index.html
+++ b/blog/_site/2012/01/16/2011-year-in-review/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
2011: Year in Review | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/02/29/ssl-stripejs/index.html b/blog/_site/2012/02/29/ssl-stripejs/index.html
index 7a157e821..04949f29d 100644
--- a/blog/_site/2012/02/29/ssl-stripejs/index.html
+++ b/blog/_site/2012/02/29/ssl-stripejs/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
SSL & Stripe.js | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/03/01/going-full-time/index.html b/blog/_site/2012/03/01/going-full-time/index.html
index a73a6458e..5bd2f813a 100644
--- a/blog/_site/2012/03/01/going-full-time/index.html
+++ b/blog/_site/2012/03/01/going-full-time/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
From project to profession: going indie on NewsBlur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/03/14/mobile-app-web-feeds-nokia-meego/index.html b/blog/_site/2012/03/14/mobile-app-web-feeds-nokia-meego/index.html
index b7376dd71..68b57b6ac 100644
--- a/blog/_site/2012/03/14/mobile-app-web-feeds-nokia-meego/index.html
+++ b/blog/_site/2012/03/14/mobile-app-web-feeds-nokia-meego/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
New mobile app for NewsBlur: Web Feeds for Nokia MeeGo | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/03/16/knight-news-challenge/index.html b/blog/_site/2012/03/16/knight-news-challenge/index.html
index 77fdff2b9..200f9ab32 100644
--- a/blog/_site/2012/03/16/knight-news-challenge/index.html
+++ b/blog/_site/2012/03/16/knight-news-challenge/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Knight News Challenge: NewsBlur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/04/02/building-real-time-feed-updates-for-newsblur/index.html b/blog/_site/2012/04/02/building-real-time-feed-updates-for-newsblur/index.html
index 28c245418..571806970 100644
--- a/blog/_site/2012/04/02/building-real-time-feed-updates-for-newsblur/index.html
+++ b/blog/_site/2012/04/02/building-real-time-feed-updates-for-newsblur/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Building real-time feed updates for NewsBlur with Redis and WebSockets | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/07/30/introducing-blurblogs-roy-and-y-combinator/index.html b/blog/_site/2012/07/30/introducing-blurblogs-roy-and-y-combinator/index.html
index 0eeee6e09..503d0d584 100644
--- a/blog/_site/2012/07/30/introducing-blurblogs-roy-and-y-combinator/index.html
+++ b/blog/_site/2012/07/30/introducing-blurblogs-roy-and-y-combinator/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Introducing Blurblogs, Roy, and Y Combinator | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/09/05/newsblur-ipad-app/index.html b/blog/_site/2012/09/05/newsblur-ipad-app/index.html
index 9d2af5865..3b40d3fa5 100644
--- a/blog/_site/2012/09/05/newsblur-ipad-app/index.html
+++ b/blog/_site/2012/09/05/newsblur-ipad-app/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Take it to the couch with the NewsBlur iPad app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/10/01/giving-life-to-popular/index.html b/blog/_site/2012/10/01/giving-life-to-popular/index.html
index c7bf23c5a..16b714344 100644
--- a/blog/_site/2012/10/01/giving-life-to-popular/index.html
+++ b/blog/_site/2012/10/01/giving-life-to-popular/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Giving Life to “The People Have Spoken” | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/10/18/do-the-robot-the-official-newsblur-android-app-is/index.html b/blog/_site/2012/10/18/do-the-robot-the-official-newsblur-android-app-is/index.html
index 3d43fcfc7..ffb726adb 100644
--- a/blog/_site/2012/10/18/do-the-robot-the-official-newsblur-android-app-is/index.html
+++ b/blog/_site/2012/10/18/do-the-robot-the-official-newsblur-android-app-is/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Do the robot: the official NewsBlur Android app is here | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/10/26/ios-update-1-6/index.html b/blog/_site/2012/10/26/ios-update-1-6/index.html
index f9d17ae60..4f0aef950 100644
--- a/blog/_site/2012/10/26/ios-update-1-6/index.html
+++ b/blog/_site/2012/10/26/ios-update-1-6/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Extreme makeover: NewsBlur iOS app edition | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/10/29/free-newsblur-swag-time/index.html b/blog/_site/2012/10/29/free-newsblur-swag-time/index.html
index 36a29f1f3..aea31fc5f 100644
--- a/blog/_site/2012/10/29/free-newsblur-swag-time/index.html
+++ b/blog/_site/2012/10/29/free-newsblur-swag-time/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Time for some free NewsBlur swag! | The NewsBlur Blog
-
+
diff --git a/blog/_site/2012/12/17/sharing-bookmarklet/index.html b/blog/_site/2012/12/17/sharing-bookmarklet/index.html
index 471acd488..4fae68f80 100644
--- a/blog/_site/2012/12/17/sharing-bookmarklet/index.html
+++ b/blog/_site/2012/12/17/sharing-bookmarklet/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
The sharing bookmarklet: bringing your online explorations to NewsBlur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/01/02/privacy-controls/index.html b/blog/_site/2013/01/02/privacy-controls/index.html
deleted file mode 100644
index 144e84e61..000000000
--- a/blog/_site/2013/01/02/privacy-controls/index.html
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-A blurblog of one’s own: new privacy controls | The NewsBlur Blog
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- NewsBlur is a personal news reader that brings people together to talk about the world.
-
-
- A new sound of an old instrument.
-
-
-
-
-
-
-
-
-
-
A blurblog of one's own: new privacy controls
-
-
-
-
-
-
Here at NewsBlur HQ, we love greeting each new day by seeing what everyone posts on their blurblogs, but we understand that not everyone might want to have their reading preferences broadcast to the public (or have the public broadcast its opinions on said preferences). So we’re introducing a special new service for premium account holders that allows you to protect your posts from prying eyes.
-
-
-
-
Just click the little sprocket in the bottom left of your dashboard and select “Profile & Blurblog,” where you’ll be given one of three options:
-
-
-
Public (default): The good old-fashioned oversharing you’ve come to know and love.
-
Protected: Everyone can see your stories, but only approved NewsBlur followers can reply or comment to your shares. Continue to drop knowledge for a grateful public, minus the peanut gallery.
-
Private: Only your approved followers can see your shares and comment. The outside world will never know about your love of bunny photos and animated GIFs. If you choose one of the latter two options, you’ll receive an e-mail every time someone requests to follow you, allowing you to carefully curate your inner circle. Want to remove any of your existing followers? Just visit their profile to boot them from blurblog access.
-
-
-
Go forth and privatize! It’ll be our little secret, at least until we discover that one of you is having an affair with your biographer.
-
-
-
-
-
-
-
-
-
-
diff --git a/blog/_site/2013/01/03/privacy-controls/index.html b/blog/_site/2013/01/03/privacy-controls/index.html
index 849055520..58eb0937f 100644
--- a/blog/_site/2013/01/03/privacy-controls/index.html
+++ b/blog/_site/2013/01/03/privacy-controls/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
A blurblog of one’s own: new privacy controls | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/03/17/three-months-to-scale-newsblur/index.html b/blog/_site/2013/03/17/three-months-to-scale-newsblur/index.html
index 94e0c38c7..2c0578051 100644
--- a/blog/_site/2013/03/17/three-months-to-scale-newsblur/index.html
+++ b/blog/_site/2013/03/17/three-months-to-scale-newsblur/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Three Months to Scale NewsBlur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/05/20/the-newsblur-redesign/index.html b/blog/_site/2013/05/20/the-newsblur-redesign/index.html
index 4031df98a..f285e2194 100644
--- a/blog/_site/2013/05/20/the-newsblur-redesign/index.html
+++ b/blog/_site/2013/05/20/the-newsblur-redesign/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
The NewsBlur Redesign | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/05/23/keyboard-shortcuts-manager/index.html b/blog/_site/2013/05/23/keyboard-shortcuts-manager/index.html
index 1efb25735..c658e05cb 100644
--- a/blog/_site/2013/05/23/keyboard-shortcuts-manager/index.html
+++ b/blog/_site/2013/05/23/keyboard-shortcuts-manager/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Keyboard Shortcuts Manager | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/05/30/read-newsblur-on-your-mac-with-the-new-readkit/index.html b/blog/_site/2013/05/30/read-newsblur-on-your-mac-with-the-new-readkit/index.html
index 65a98f1af..805fc6ce6 100644
--- a/blog/_site/2013/05/30/read-newsblur-on-your-mac-with-the-new-readkit/index.html
+++ b/blog/_site/2013/05/30/read-newsblur-on-your-mac-with-the-new-readkit/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Read NewsBlur on your Mac with the new ReadKit | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/06/04/text-view-comes-to-the-newsblur-ios-app/index.html b/blog/_site/2013/06/04/text-view-comes-to-the-newsblur-ios-app/index.html
index 98f2d20ce..6d4910827 100644
--- a/blog/_site/2013/06/04/text-view-comes-to-the-newsblur-ios-app/index.html
+++ b/blog/_site/2013/06/04/text-view-comes-to-the-newsblur-ios-app/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Text view comes to the NewsBlur iOS app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/07/24/newsblur-puzzle-t-shirt-2013/index.html b/blog/_site/2013/07/24/newsblur-puzzle-t-shirt-2013/index.html
index eee0c73c1..69dd5782a 100644
--- a/blog/_site/2013/07/24/newsblur-puzzle-t-shirt-2013/index.html
+++ b/blog/_site/2013/07/24/newsblur-puzzle-t-shirt-2013/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur Puzzle T-shirt 2013 | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/07/30/simple-search-for-feeds-saved-stories-and-blurblogs/index.html b/blog/_site/2013/07/30/simple-search-for-feeds-saved-stories-and-blurblogs/index.html
index a974bb689..d17ea1dfe 100644
--- a/blog/_site/2013/07/30/simple-search-for-feeds-saved-stories-and-blurblogs/index.html
+++ b/blog/_site/2013/07/30/simple-search-for-feeds-saved-stories-and-blurblogs/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Simple Search for Feeds, Saved Stories, and Blurblogs | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/09/13/mark-as-read-by-number-of-days-and-other/index.html b/blog/_site/2013/09/13/mark-as-read-by-number-of-days-and-other/index.html
index 9b795a6fd..81f081d56 100644
--- a/blog/_site/2013/09/13/mark-as-read-by-number-of-days-and-other/index.html
+++ b/blog/_site/2013/09/13/mark-as-read-by-number-of-days-and-other/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Mark as read by number of days and other improvements | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/09/16/upping-unread-stories-to-30-days-for-premium/index.html b/blog/_site/2013/09/16/upping-unread-stories-to-30-days-for-premium/index.html
index f1b13b65e..1678ed31d 100644
--- a/blog/_site/2013/09/16/upping-unread-stories-to-30-days-for-premium/index.html
+++ b/blog/_site/2013/09/16/upping-unread-stories-to-30-days-for-premium/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Upping unread stories to 30 days for premium accounts | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/09/17/offline-reading-with-the-newsblur-ios-app/index.html b/blog/_site/2013/09/17/offline-reading-with-the-newsblur-ios-app/index.html
index d7e3ae72f..f8563680f 100644
--- a/blog/_site/2013/09/17/offline-reading-with-the-newsblur-ios-app/index.html
+++ b/blog/_site/2013/09/17/offline-reading-with-the-newsblur-ios-app/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Offline reading with the NewsBlur iOS app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/10/28/the-newsblur-iphone-and-ipad-app-meets-ios-7/index.html b/blog/_site/2013/10/28/the-newsblur-iphone-and-ipad-app-meets-ios-7/index.html
index 6cb8aeb90..a30da0b30 100644
--- a/blog/_site/2013/10/28/the-newsblur-iphone-and-ipad-app-meets-ios-7/index.html
+++ b/blog/_site/2013/10/28/the-newsblur-iphone-and-ipad-app-meets-ios-7/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
The NewsBlur iPhone and iPad app meets iOS 7 | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/11/18/version-3-0-of-the-newsblur-android-app/index.html b/blog/_site/2013/11/18/version-3-0-of-the-newsblur-android-app/index.html
index 8cca1fba7..7c3231bf4 100644
--- a/blog/_site/2013/11/18/version-3-0-of-the-newsblur-android-app/index.html
+++ b/blog/_site/2013/11/18/version-3-0-of-the-newsblur-android-app/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Version 3.0 of the NewsBlur Android App | The NewsBlur Blog
-
+
diff --git a/blog/_site/2013/12/19/background-updates-and-dynamic-font-sizing-on-the/index.html b/blog/_site/2013/12/19/background-updates-and-dynamic-font-sizing-on-the/index.html
index 9a3f981b7..e2be63890 100644
--- a/blog/_site/2013/12/19/background-updates-and-dynamic-font-sizing-on-the/index.html
+++ b/blog/_site/2013/12/19/background-updates-and-dynamic-font-sizing-on-the/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Background updates and dynamic font sizing on the NewsBlur iOS app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/01/03/faster-parallel-network-requests-for-version-35/index.html b/blog/_site/2014/01/03/faster-parallel-network-requests-for-version-35/index.html
index 656a2bb32..b0b83f344 100644
--- a/blog/_site/2014/01/03/faster-parallel-network-requests-for-version-35/index.html
+++ b/blog/_site/2014/01/03/faster-parallel-network-requests-for-version-35/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Faster parallel network requests for version 3.5 of the NewsBlur Android app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/01/06/three-new-features-for-the-web-syntax/index.html b/blog/_site/2014/01/06/three-new-features-for-the-web-syntax/index.html
index 27d5c8402..8726e072c 100644
--- a/blog/_site/2014/01/06/three-new-features-for-the-web-syntax/index.html
+++ b/blog/_site/2014/01/06/three-new-features-for-the-web-syntax/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Three new features for the web: syntax highlighting for source code, adjustable video widths, and footnotes | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/01/14/saved-story-tagging/index.html b/blog/_site/2014/01/14/saved-story-tagging/index.html
index 7183c3e36..9634da9f9 100644
--- a/blog/_site/2014/01/14/saved-story-tagging/index.html
+++ b/blog/_site/2014/01/14/saved-story-tagging/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Saved story tagging | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/02/20/connect-newsblur-to-dozens-of-web-services-with/index.html b/blog/_site/2014/02/20/connect-newsblur-to-dozens-of-web-services-with/index.html
index 69e9534f8..c59fc57fc 100644
--- a/blog/_site/2014/02/20/connect-newsblur-to-dozens-of-web-services-with/index.html
+++ b/blog/_site/2014/02/20/connect-newsblur-to-dozens-of-web-services-with/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Connect NewsBlur to dozens of web services with IFTTT | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/03/10/newsblur-ios-40-features-a-new-dashboard/index.html b/blog/_site/2014/03/10/newsblur-ios-40-features-a-new-dashboard/index.html
index 343cb596b..f2c6bd7b7 100644
--- a/blog/_site/2014/03/10/newsblur-ios-40-features-a-new-dashboard/index.html
+++ b/blog/_site/2014/03/10/newsblur-ios-40-features-a-new-dashboard/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur iOS 4.0 features a new dashboard, gestures and sharing controls | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/03/13/google-reader-announced-its-shutdown-exactly-a-year-ago/index.html b/blog/_site/2014/03/13/google-reader-announced-its-shutdown-exactly-a-year-ago/index.html
index 052849e6d..af3e9c1c8 100644
--- a/blog/_site/2014/03/13/google-reader-announced-its-shutdown-exactly-a-year-ago/index.html
+++ b/blog/_site/2014/03/13/google-reader-announced-its-shutdown-exactly-a-year-ago/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Google Reader announced its shutdown exactly a year ago | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/04/10/the-new-font-and-style-manager/index.html b/blog/_site/2014/04/10/the-new-font-and-style-manager/index.html
index 84bfeae71..8a75c1fd0 100644
--- a/blog/_site/2014/04/10/the-new-font-and-style-manager/index.html
+++ b/blog/_site/2014/04/10/the-new-font-and-style-manager/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
The new font and style manager | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/04/24/unread-is-a-new-ios-app-with-newsblur-support/index.html b/blog/_site/2014/04/24/unread-is-a-new-ios-app-with-newsblur-support/index.html
index 4a2394ca9..78f629f05 100644
--- a/blog/_site/2014/04/24/unread-is-a-new-ios-app-with-newsblur-support/index.html
+++ b/blog/_site/2014/04/24/unread-is-a-new-ios-app-with-newsblur-support/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Unread is a new iOS app with NewsBlur support | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/04/29/full-text-search-across-all-of-your-subscriptions-and/index.html b/blog/_site/2014/04/29/full-text-search-across-all-of-your-subscriptions-and/index.html
index acd0b8a8e..6103bb2a8 100644
--- a/blog/_site/2014/04/29/full-text-search-across-all-of-your-subscriptions-and/index.html
+++ b/blog/_site/2014/04/29/full-text-search-across-all-of-your-subscriptions-and/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Full text search across all of your subscriptions and folders | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/06/03/use-the-new-saved-stories-view-to-find-saved/index.html b/blog/_site/2014/06/03/use-the-new-saved-stories-view-to-find-saved/index.html
index e34f7bc6a..eeea9572b 100644
--- a/blog/_site/2014/06/03/use-the-new-saved-stories-view-to-find-saved/index.html
+++ b/blog/_site/2014/06/03/use-the-new-saved-stories-view-to-find-saved/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Use the new Saved Stories view to find saved stories by site | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/06/17/temporarily-mute-sites/index.html b/blog/_site/2014/06/17/temporarily-mute-sites/index.html
index 439692540..acf42b7c4 100644
--- a/blog/_site/2014/06/17/temporarily-mute-sites/index.html
+++ b/blog/_site/2014/06/17/temporarily-mute-sites/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Temporarily mute sites | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/06/27/read-what-youve-read-recently-with-the-new/index.html b/blog/_site/2014/06/27/read-what-youve-read-recently-with-the-new/index.html
index 145352c74..71051279b 100644
--- a/blog/_site/2014/06/27/read-what-youve-read-recently-with-the-new/index.html
+++ b/blog/_site/2014/06/27/read-what-youve-read-recently-with-the-new/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Read what you’ve read recently with the new recently read stories feed | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/07/22/adjust-the-font-size-of-feed-and-story-titles/index.html b/blog/_site/2014/07/22/adjust-the-font-size-of-feed-and-story-titles/index.html
index acd843f60..5aea7eb73 100644
--- a/blog/_site/2014/07/22/adjust-the-font-size-of-feed-and-story-titles/index.html
+++ b/blog/_site/2014/07/22/adjust-the-font-size-of-feed-and-story-titles/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Adjust the font size of feed and story titles | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/07/23/reeder-and-newsblur-sitting-in-a-tree/index.html b/blog/_site/2014/07/23/reeder-and-newsblur-sitting-in-a-tree/index.html
index 0a263d412..051b45c36 100644
--- a/blog/_site/2014/07/23/reeder-and-newsblur-sitting-in-a-tree/index.html
+++ b/blog/_site/2014/07/23/reeder-and-newsblur-sitting-in-a-tree/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Reeder and NewsBlur, sitting in a tree… | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/08/21/a-downtime-irony/index.html b/blog/_site/2014/08/21/a-downtime-irony/index.html
index fdba9071f..564d638ac 100644
--- a/blog/_site/2014/08/21/a-downtime-irony/index.html
+++ b/blog/_site/2014/08/21/a-downtime-irony/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
A Downtime Irony | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/09/22/newsblurs-2014-t-shirt-on-sale-for-this-week-only/index.html b/blog/_site/2014/09/22/newsblurs-2014-t-shirt-on-sale-for-this-week-only/index.html
index c789ae346..32fbc31a5 100644
--- a/blog/_site/2014/09/22/newsblurs-2014-t-shirt-on-sale-for-this-week-only/index.html
+++ b/blog/_site/2014/09/22/newsblurs-2014-t-shirt-on-sale-for-this-week-only/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur’s 2014 t-shirt on sale for this week only | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/10/15/newsblur-ios-v45-iphone-6-and-ios-8-full-bleed/index.html b/blog/_site/2014/10/15/newsblur-ios-v45-iphone-6-and-ios-8-full-bleed/index.html
index cf0db1c2c..fe8c6b12c 100644
--- a/blog/_site/2014/10/15/newsblur-ios-v45-iphone-6-and-ios-8-full-bleed/index.html
+++ b/blog/_site/2014/10/15/newsblur-ios-v45-iphone-6-and-ios-8-full-bleed/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur iOS v4.5: iPhone 6 and iOS 8, full bleed images, alt text, and more | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/10/31/a-new-way-to-use-the-story-view-while-on-https/index.html b/blog/_site/2014/10/31/a-new-way-to-use-the-story-view-while-on-https/index.html
index b63569201..4cab7c7b3 100644
--- a/blog/_site/2014/10/31/a-new-way-to-use-the-story-view-while-on-https/index.html
+++ b/blog/_site/2014/10/31/a-new-way-to-use-the-story-view-while-on-https/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
A new way to use the Story view while on https (SSL) | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/11/18/offline-reading-and-a-dark-theme-on-the-android/index.html b/blog/_site/2014/11/18/offline-reading-and-a-dark-theme-on-the-android/index.html
index b598ff99e..49b8d0157 100644
--- a/blog/_site/2014/11/18/offline-reading-and-a-dark-theme-on-the-android/index.html
+++ b/blog/_site/2014/11/18/offline-reading-and-a-dark-theme-on-the-android/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Offline reading and a dark theme on the Android app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2014/12/15/the-ios-app-gets-search-and-saved-story-tagging/index.html b/blog/_site/2014/12/15/the-ios-app-gets-search-and-saved-story-tagging/index.html
index dad3ec745..29aabf2ea 100644
--- a/blog/_site/2014/12/15/the-ios-app-gets-search-and-saved-story-tagging/index.html
+++ b/blog/_site/2014/12/15/the-ios-app-gets-search-and-saved-story-tagging/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
The iOS app gets search and saved story tagging | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/01/07/organize-your-subscriptions-with-the-new-organizer/index.html b/blog/_site/2015/01/07/organize-your-subscriptions-with-the-new-organizer/index.html
index 3fe0dfe05..b38e12644 100644
--- a/blog/_site/2015/01/07/organize-your-subscriptions-with-the-new-organizer/index.html
+++ b/blog/_site/2015/01/07/organize-your-subscriptions-with-the-new-organizer/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Organize your subscriptions with the new Organizer | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/03/13/bigger-story-previews-with-the-new-grid-view/index.html b/blog/_site/2015/03/13/bigger-story-previews-with-the-new-grid-view/index.html
index e35061649..c8ca10e44 100644
--- a/blog/_site/2015/03/13/bigger-story-previews-with-the-new-grid-view/index.html
+++ b/blog/_site/2015/03/13/bigger-story-previews-with-the-new-grid-view/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Bigger story previews with the new Grid view | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/04/30/a-real-solution-to-the-deprecated-youtube-api/index.html b/blog/_site/2015/04/30/a-real-solution-to-the-deprecated-youtube-api/index.html
index 12d3571fd..f76236c95 100644
--- a/blog/_site/2015/04/30/a-real-solution-to-the-deprecated-youtube-api/index.html
+++ b/blog/_site/2015/04/30/a-real-solution-to-the-deprecated-youtube-api/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
A real solution to the deprecated YouTube API | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/06/02/reply-to-shared-stories-that-have-no-comment/index.html b/blog/_site/2015/06/02/reply-to-shared-stories-that-have-no-comment/index.html
index 555c7a2eb..74ae1dbce 100644
--- a/blog/_site/2015/06/02/reply-to-shared-stories-that-have-no-comment/index.html
+++ b/blog/_site/2015/06/02/reply-to-shared-stories-that-have-no-comment/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Reply to shared stories that have no comment | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/06/23/read-stories-feed-and-a-rewritten-networking-stack/index.html b/blog/_site/2015/06/23/read-stories-feed-and-a-rewritten-networking-stack/index.html
index c68a303c8..031550ab4 100644
--- a/blog/_site/2015/06/23/read-stories-feed-and-a-rewritten-networking-stack/index.html
+++ b/blog/_site/2015/06/23/read-stories-feed-and-a-rewritten-networking-stack/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Read Stories feed and a rewritten networking stack on v4.3.0 of the NewsBlur Android App | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/08/25/even-the-folders-have-rss-feeds/index.html b/blog/_site/2015/08/25/even-the-folders-have-rss-feeds/index.html
index ad65248a6..fd1ff3d5a 100644
--- a/blog/_site/2015/08/25/even-the-folders-have-rss-feeds/index.html
+++ b/blog/_site/2015/08/25/even-the-folders-have-rss-feeds/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Even the folders have RSS feeds | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/10/01/lets-all-upgrade-to-version-450-of-the-newsblur/index.html b/blog/_site/2015/10/01/lets-all-upgrade-to-version-450-of-the-newsblur/index.html
index 477c58795..434f31f7f 100644
--- a/blog/_site/2015/10/01/lets-all-upgrade-to-version-450-of-the-newsblur/index.html
+++ b/blog/_site/2015/10/01/lets-all-upgrade-to-version-450-of-the-newsblur/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Let’s all upgrade to version 4.5.0 of the NewsBlur Android app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/10/07/join-the-newsblur-ios-beta/index.html b/blog/_site/2015/10/07/join-the-newsblur-ios-beta/index.html
index 8c985917f..5a6910181 100644
--- a/blog/_site/2015/10/07/join-the-newsblur-ios-beta/index.html
+++ b/blog/_site/2015/10/07/join-the-newsblur-ios-beta/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Join the NewsBlur iOS beta | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/11/18/premium-fonts-comment-less-shares-in-app-safari/index.html b/blog/_site/2015/11/18/premium-fonts-comment-less-shares-in-app-safari/index.html
index 09ab7077e..9e8afb206 100644
--- a/blog/_site/2015/11/18/premium-fonts-comment-less-shares-in-app-safari/index.html
+++ b/blog/_site/2015/11/18/premium-fonts-comment-less-shares-in-app-safari/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Premium fonts, comment-less shares, in-app Safari, and way, way more in version 5.0 of the NewsBlur iOS app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2015/12/10/better-embeds-for-twitter-instagram-and-imgur/index.html b/blog/_site/2015/12/10/better-embeds-for-twitter-instagram-and-imgur/index.html
index 6d4d4ed79..bf34e1f13 100644
--- a/blog/_site/2015/12/10/better-embeds-for-twitter-instagram-and-imgur/index.html
+++ b/blog/_site/2015/12/10/better-embeds-for-twitter-instagram-and-imgur/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Better embeds for Twitter, Instagram, and Imgur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/01/15/improved-statistics/index.html b/blog/_site/2016/01/15/improved-statistics/index.html
index 3348bdc61..5d3c5840f 100644
--- a/blog/_site/2016/01/15/improved-statistics/index.html
+++ b/blog/_site/2016/01/15/improved-statistics/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Power users need powerful statistics | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/01/28/search-for-pizza-with-your-android-device/index.html b/blog/_site/2016/01/28/search-for-pizza-with-your-android-device/index.html
index 7527a95f1..e7896473c 100644
--- a/blog/_site/2016/01/28/search-for-pizza-with-your-android-device/index.html
+++ b/blog/_site/2016/01/28/search-for-pizza-with-your-android-device/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Search for pizza with your Android device | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/02/03/two-new-third-party-newsblur-apps-for-ios-and/index.html b/blog/_site/2016/02/03/two-new-third-party-newsblur-apps-for-ios-and/index.html
index 794b386ce..5d8170ea7 100644
--- a/blog/_site/2016/02/03/two-new-third-party-newsblur-apps-for-ios-and/index.html
+++ b/blog/_site/2016/02/03/two-new-third-party-newsblur-apps-for-ios-and/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Two new third-party NewsBlur apps for iOS and Windows | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/02/19/story-thumbnails-for-story-titles/index.html b/blog/_site/2016/02/19/story-thumbnails-for-story-titles/index.html
index 21cebecb7..9eb399843 100644
--- a/blog/_site/2016/02/19/story-thumbnails-for-story-titles/index.html
+++ b/blog/_site/2016/02/19/story-thumbnails-for-story-titles/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Story thumbnails for story titles | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/03/03/tracking-story-changes-with-newsblur/index.html b/blog/_site/2016/03/03/tracking-story-changes-with-newsblur/index.html
index 0a80183ef..68d36e55b 100644
--- a/blog/_site/2016/03/03/tracking-story-changes-with-newsblur/index.html
+++ b/blog/_site/2016/03/03/tracking-story-changes-with-newsblur/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Tracking story changes with NewsBlur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/04/09/a-heavier-lifting-android-app/index.html b/blog/_site/2016/04/09/a-heavier-lifting-android-app/index.html
index ec1f666d2..f86684dbe 100644
--- a/blog/_site/2016/04/09/a-heavier-lifting-android-app/index.html
+++ b/blog/_site/2016/04/09/a-heavier-lifting-android-app/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
A heavier lifting Android app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/04/12/newsblur-goes-dark-on-ios/index.html b/blog/_site/2016/04/12/newsblur-goes-dark-on-ios/index.html
index ecf45700c..2ce0e74f6 100644
--- a/blog/_site/2016/04/12/newsblur-goes-dark-on-ios/index.html
+++ b/blog/_site/2016/04/12/newsblur-goes-dark-on-ios/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur goes dark … on iOS | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/06/01/twitters-back-baby/index.html b/blog/_site/2016/06/01/twitters-back-baby/index.html
index 4ec9ab97a..ba016e61e 100644
--- a/blog/_site/2016/06/01/twitters-back-baby/index.html
+++ b/blog/_site/2016/06/01/twitters-back-baby/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Twitter’s back, baby | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/07/01/newsletters-in-your-newsblur/index.html b/blog/_site/2016/07/01/newsletters-in-your-newsblur/index.html
index d617dff9b..7fd863ede 100644
--- a/blog/_site/2016/07/01/newsletters-in-your-newsblur/index.html
+++ b/blog/_site/2016/07/01/newsletters-in-your-newsblur/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Newsletters in your NewsBlur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2016/07/14/newsreel-is-a-newsblur-app-for-tv/index.html b/blog/_site/2016/07/14/newsreel-is-a-newsblur-app-for-tv/index.html
index 4f8b128f1..d4cb6e2fc 100644
--- a/blog/_site/2016/07/14/newsreel-is-a-newsblur-app-for-tv/index.html
+++ b/blog/_site/2016/07/14/newsreel-is-a-newsblur-app-for-tv/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Newsreel is a NewsBlur app for tv | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/01/11/the-dashboard-river-will-keep-you-up-to-date-in/index.html b/blog/_site/2017/01/11/the-dashboard-river-will-keep-you-up-to-date-in/index.html
index ae7cf62fa..462d21ddf 100644
--- a/blog/_site/2017/01/11/the-dashboard-river-will-keep-you-up-to-date-in/index.html
+++ b/blog/_site/2017/01/11/the-dashboard-river-will-keep-you-up-to-date-in/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
The dashboard river will keep you up-to-date in real-time | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/01/25/a-new-newsblur-android-release-for-the-new-year/index.html b/blog/_site/2017/01/25/a-new-newsblur-android-release-for-the-new-year/index.html
index 80a4ef9fb..f5f459f66 100644
--- a/blog/_site/2017/01/25/a-new-newsblur-android-release-for-the-new-year/index.html
+++ b/blog/_site/2017/01/25/a-new-newsblur-android-release-for-the-new-year/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
A new NewsBlur Android release for the new year | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/02/02/preview-newsblurs-upcoming-hardware-device-turn/index.html b/blog/_site/2017/02/02/preview-newsblurs-upcoming-hardware-device-turn/index.html
index 87aeef215..109e14d2b 100644
--- a/blog/_site/2017/02/02/preview-newsblurs-upcoming-hardware-device-turn/index.html
+++ b/blog/_site/2017/02/02/preview-newsblurs-upcoming-hardware-device-turn/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Preview NewsBlur’s upcoming hardware device, Turn Touch | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/02/07/introducing-turn-touch-a-beautiful-wooden-remote/index.html b/blog/_site/2017/02/07/introducing-turn-touch-a-beautiful-wooden-remote/index.html
index c194c6349..11dca253d 100644
--- a/blog/_site/2017/02/07/introducing-turn-touch-a-beautiful-wooden-remote/index.html
+++ b/blog/_site/2017/02/07/introducing-turn-touch-a-beautiful-wooden-remote/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Introducing Turn Touch, a beautiful wooden remote for lights, devices, apps, and NewsBlur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/03/09/last-day-to-back-turn-touch-newsblurs-beautiful/index.html b/blog/_site/2017/03/09/last-day-to-back-turn-touch-newsblurs-beautiful/index.html
index fa5af1cb4..fd247123f 100644
--- a/blog/_site/2017/03/09/last-day-to-back-turn-touch-newsblurs-beautiful/index.html
+++ b/blog/_site/2017/03/09/last-day-to-back-turn-touch-newsblurs-beautiful/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Last day to back Turn Touch: NewsBlur’s beautiful remote | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/03/28/saved-searches-make-it-easy-to-create-custom-feeds/index.html b/blog/_site/2017/03/28/saved-searches-make-it-easy-to-create-custom-feeds/index.html
index 93591f946..dbe719313 100644
--- a/blog/_site/2017/03/28/saved-searches-make-it-easy-to-create-custom-feeds/index.html
+++ b/blog/_site/2017/03/28/saved-searches-make-it-easy-to-create-custom-feeds/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Saved searches make it easy to create custom feeds | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/05/09/newsblurs-twitter-support-just-got-a-whole-lot/index.html b/blog/_site/2017/05/09/newsblurs-twitter-support-just-got-a-whole-lot/index.html
index 675e49a60..db6416454 100644
--- a/blog/_site/2017/05/09/newsblurs-twitter-support-just-got-a-whole-lot/index.html
+++ b/blog/_site/2017/05/09/newsblurs-twitter-support-just-got-a-whole-lot/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur’s Twitter support just got a whole lot better | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/05/22/add-your-own-custom-css-and-custom-javascript-to/index.html b/blog/_site/2017/05/22/add-your-own-custom-css-and-custom-javascript-to/index.html
index a8371e61f..681fd86a4 100644
--- a/blog/_site/2017/05/22/add-your-own-custom-css-and-custom-javascript-to/index.html
+++ b/blog/_site/2017/05/22/add-your-own-custom-css-and-custom-javascript-to/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Add your own Custom CSS and Custom JavaScript to NewsBlur on the web | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/05/23/newsblur-now-supports-the-new-json-feed-spec/index.html b/blog/_site/2017/05/23/newsblur-now-supports-the-new-json-feed-spec/index.html
index 90fd44a4a..753bbab8d 100644
--- a/blog/_site/2017/05/23/newsblur-now-supports-the-new-json-feed-spec/index.html
+++ b/blog/_site/2017/05/23/newsblur-now-supports-the-new-json-feed-spec/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur now supports the new JSON Feed spec | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/06/14/launching-real-time-filterable-push-notifications/index.html b/blog/_site/2017/06/14/launching-real-time-filterable-push-notifications/index.html
index 960ddd1aa..b2b74a4d1 100644
--- a/blog/_site/2017/06/14/launching-real-time-filterable-push-notifications/index.html
+++ b/blog/_site/2017/06/14/launching-real-time-filterable-push-notifications/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Launching real-time filterable push notifications for iOS, Android, web, and email | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/10/24/improved-text-view-story-extraction/index.html b/blog/_site/2017/10/24/improved-text-view-story-extraction/index.html
index 7040206df..9f4221f48 100644
--- a/blog/_site/2017/10/24/improved-text-view-story-extraction/index.html
+++ b/blog/_site/2017/10/24/improved-text-view-story-extraction/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Improved Text view story extraction | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/12/11/infrequent-site-stories-is-the-blog-reader-we-need/index.html b/blog/_site/2017/12/11/infrequent-site-stories-is-the-blog-reader-we-need/index.html
index 06cabc89b..eb537198f 100644
--- a/blog/_site/2017/12/11/infrequent-site-stories-is-the-blog-reader-we-need/index.html
+++ b/blog/_site/2017/12/11/infrequent-site-stories-is-the-blog-reader-we-need/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Infrequent Site Stories is the blog reader we need | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/12/11/intelligence-training-comes-to-newsblurs-android/index.html b/blog/_site/2017/12/11/intelligence-training-comes-to-newsblurs-android/index.html
index 6a0f80690..836618da4 100644
--- a/blog/_site/2017/12/11/intelligence-training-comes-to-newsblurs-android/index.html
+++ b/blog/_site/2017/12/11/intelligence-training-comes-to-newsblurs-android/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Intelligence training comes to NewsBlur’s Android app | The NewsBlur Blog
-
+
diff --git a/blog/_site/2017/12/11/newsblur-for-iphone-x/index.html b/blog/_site/2017/12/11/newsblur-for-iphone-x/index.html
index 943c3b473..ab30fe9b1 100644
--- a/blog/_site/2017/12/11/newsblur-for-iphone-x/index.html
+++ b/blog/_site/2017/12/11/newsblur-for-iphone-x/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur for iPhone X | The NewsBlur Blog
-
+
diff --git a/blog/_site/2018/04/17/moving-to-a-better-support-forum-at/index.html b/blog/_site/2018/04/17/moving-to-a-better-support-forum-at/index.html
index e30bebe26..ae6bc4b75 100644
--- a/blog/_site/2018/04/17/moving-to-a-better-support-forum-at/index.html
+++ b/blog/_site/2018/04/17/moving-to-a-better-support-forum-at/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Moving to a better support forum at forum.newsblur.com | The NewsBlur Blog
-
+
diff --git a/blog/_site/2018/07/20/the-newsblur-android-app-hits-version-80-with-a/index.html b/blog/_site/2018/07/20/the-newsblur-android-app-hits-version-80-with-a/index.html
index 42f8f7eeb..b44496f63 100644
--- a/blog/_site/2018/07/20/the-newsblur-android-app-hits-version-80-with-a/index.html
+++ b/blog/_site/2018/07/20/the-newsblur-android-app-hits-version-80-with-a/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
The NewsBlur Android app hits version 8.0 with a new Grid view | The NewsBlur Blog
-
+
diff --git a/blog/_site/2018/10/31/the-newsblur-ios-app-also-hits-version-80/index.html b/blog/_site/2018/10/31/the-newsblur-ios-app-also-hits-version-80/index.html
index a628bf05e..262d9f543 100644
--- a/blog/_site/2018/10/31/the-newsblur-ios-app-also-hits-version-80/index.html
+++ b/blog/_site/2018/10/31/the-newsblur-ios-app-also-hits-version-80/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
The NewsBlur iOS app also hits version 8.0 | The NewsBlur Blog
-
+
diff --git a/blog/_site/2019/06/01/updates-to-the-android-app-and-a-new-addition-to/index.html b/blog/_site/2019/06/01/updates-to-the-android-app-and-a-new-addition-to/index.html
index 64988f660..ba51b8423 100644
--- a/blog/_site/2019/06/01/updates-to-the-android-app-and-a-new-addition-to/index.html
+++ b/blog/_site/2019/06/01/updates-to-the-android-app-and-a-new-addition-to/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Updates to the Android app and a new addition to the team | The NewsBlur Blog
-
+
diff --git a/blog/_site/2019/07/01/newsblur-ios-v9-full-screen-autoscroll/index.html b/blog/_site/2019/07/01/newsblur-ios-v9-full-screen-autoscroll/index.html
index cbb756b05..c36118883 100644
--- a/blog/_site/2019/07/01/newsblur-ios-v9-full-screen-autoscroll/index.html
+++ b/blog/_site/2019/07/01/newsblur-ios-v9-full-screen-autoscroll/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur iOS v9: full screen, autoscroll, customizable story titles, story change highlighter, and return to last read story | The NewsBlur Blog
-
+
diff --git a/blog/_site/2019/08/15/secure-images-for-everybody/index.html b/blog/_site/2019/08/15/secure-images-for-everybody/index.html
index 9bac7d4ad..adc9f771a 100644
--- a/blog/_site/2019/08/15/secure-images-for-everybody/index.html
+++ b/blog/_site/2019/08/15/secure-images-for-everybody/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Secure images for everybody | The NewsBlur Blog
-
+
diff --git a/blog/_site/2020/02/26/catch-the-news-in-a-glimpse-with-the-new-newsblur/index.html b/blog/_site/2020/02/26/catch-the-news-in-a-glimpse-with-the-new-newsblur/index.html
index cb8da5961..7fa864feb 100644
--- a/blog/_site/2020/02/26/catch-the-news-in-a-glimpse-with-the-new-newsblur/index.html
+++ b/blog/_site/2020/02/26/catch-the-news-in-a-glimpse-with-the-new-newsblur/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Catch the news in a glimpse with the new NewsBlur Today View widget on iOS | The NewsBlur Blog
-
+
diff --git a/blog/_site/2020/06/18/see-the-news-on-your-android-dashboard-with-the/index.html b/blog/_site/2020/06/18/see-the-news-on-your-android-dashboard-with-the/index.html
index 2c67145a7..9a0ff3e2f 100644
--- a/blog/_site/2020/06/18/see-the-news-on-your-android-dashboard-with-the/index.html
+++ b/blog/_site/2020/06/18/see-the-news-on-your-android-dashboard-with-the/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
See the news on your Android dashboard with the new home screen widget | The NewsBlur Blog
-
+
diff --git a/blog/_site/2020/06/24/turn-the-lights-down-dark-mode-has-come-to/index.html b/blog/_site/2020/06/24/turn-the-lights-down-dark-mode-has-come-to/index.html
index 161c1b5f0..9d169a15b 100644
--- a/blog/_site/2020/06/24/turn-the-lights-down-dark-mode-has-come-to/index.html
+++ b/blog/_site/2020/06/24/turn-the-lights-down-dark-mode-has-come-to/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Turn the lights down, dark mode has come to NewsBlur | The NewsBlur Blog
-
+
diff --git a/blog/_site/2020/07/17/highlight-passages-and-add-private-notes-on-saved/index.html b/blog/_site/2020/07/17/highlight-passages-and-add-private-notes-on-saved/index.html
index ce0d35832..ce1a988cc 100644
--- a/blog/_site/2020/07/17/highlight-passages-and-add-private-notes-on-saved/index.html
+++ b/blog/_site/2020/07/17/highlight-passages-and-add-private-notes-on-saved/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Highlight passages and add private notes to saved stories | The NewsBlur Blog
-
+
diff --git a/blog/_site/2020/10/28/customizable-grid-view-story-layout/index.html b/blog/_site/2020/10/28/customizable-grid-view-story-layout/index.html
index 592df887f..e2ce1278e 100644
--- a/blog/_site/2020/10/28/customizable-grid-view-story-layout/index.html
+++ b/blog/_site/2020/10/28/customizable-grid-view-story-layout/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Customizable grid view story layout | The NewsBlur Blog
-
+
diff --git a/blog/_site/2020/11/03/android-app-update-premium-subscriptions-saved/index.html b/blog/_site/2020/11/03/android-app-update-premium-subscriptions-saved/index.html
index 3b63c3e83..1ce991965 100644
--- a/blog/_site/2020/11/03/android-app-update-premium-subscriptions-saved/index.html
+++ b/blog/_site/2020/11/03/android-app-update-premium-subscriptions-saved/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Android app update: premium subscriptions, saved searches, in-app browser, auto-dark mode | The NewsBlur Blog
-
+
diff --git a/blog/_site/2021/06/28/story-of-a-hacking/index.html b/blog/_site/2021/06/28/story-of-a-hacking/index.html
index 871822bba..4c3ee1976 100644
--- a/blog/_site/2021/06/28/story-of-a-hacking/index.html
+++ b/blog/_site/2021/06/28/story-of-a-hacking/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
How a Docker footgun led to a vandal deleting NewsBlur’s MongoDB database | The NewsBlur Blog
-
+
@@ -91,9 +91,9 @@
nbset:PRIMARY>useREAD__ME_TO_RECOVER_YOUR_DATAswitchedtodbREAD__ME_TO_RECOVER_YOUR_DATA
-nbset:PRIMARY>db.README.find()
+nbset:PRIMARY>db.README.find(){
- "_id":ObjectId("60d3e112ac48d82047aab95d"),
+ "_id":ObjectId("60d3e112ac48d82047aab95d"),"content":"All your data is a backed up. You must pay 0.03 BTC to XXXXXXFTHISGUYXXXXXXX 48 hours for recover it. After 48 hours expiration we will leaked and exposed all your data. In case of refusal to pay, we will contact the General Data Protection Regulation, GDPR and notify them that you store user data in an open form and is not safe. Under the rules of the law, you face a heavy fine or arrest and your base dump will be dropped from our server! You can buy bitcoin here, does not take much time to buy https://localbitcoins.com or https://buy.moonpay.io/ After paying write to me in the mail with your DB IP: FTHISGUY@recoverme.one and you will receive a link to download your database dump."}
diff --git a/blog/_site/2021/07/01/refreshing-newsblur-design/index.html b/blog/_site/2021/07/01/refreshing-newsblur-design/index.html
index 5147dd278..00d47b01d 100644
--- a/blog/_site/2021/07/01/refreshing-newsblur-design/index.html
+++ b/blog/_site/2021/07/01/refreshing-newsblur-design/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Redesigning NewsBlur on the web, iOS, and Android | The NewsBlur Blog
-
+
diff --git a/blog/_site/2022/03/10/magazine-view/index.html b/blog/_site/2022/03/10/magazine-view/index.html
index 02e1b301b..c2c3167d8 100644
--- a/blog/_site/2022/03/10/magazine-view/index.html
+++ b/blog/_site/2022/03/10/magazine-view/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Magazine view offers a new perspective | The NewsBlur Blog
-
+
diff --git a/blog/_site/2022/03/28/redesigned-ios-layout/index.html b/blog/_site/2022/03/28/redesigned-ios-layout/index.html
index fbce28407..4e58d0e7b 100644
--- a/blog/_site/2022/03/28/redesigned-ios-layout/index.html
+++ b/blog/_site/2022/03/28/redesigned-ios-layout/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
New gesture-based layout for the NewsBlur iPad App | The NewsBlur Blog
-
+
diff --git a/blog/_site/2022/07/01/dashboard-redesign-2022/index.html b/blog/_site/2022/07/01/dashboard-redesign-2022/index.html
index ef0597766..da53e3b3f 100644
--- a/blog/_site/2022/07/01/dashboard-redesign-2022/index.html
+++ b/blog/_site/2022/07/01/dashboard-redesign-2022/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
2022 redesign: new dashboard layout, refreshed stories and story titles, and entirely redrawn icons | The NewsBlur Blog
-
+
diff --git a/blog/_site/2022/07/01/premium-archive-subscription/index.html b/blog/_site/2022/07/01/premium-archive-subscription/index.html
index f09d7b36b..b1cf5debd 100644
--- a/blog/_site/2022/07/01/premium-archive-subscription/index.html
+++ b/blog/_site/2022/07/01/premium-archive-subscription/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
NewsBlur Premium Archive subscription keeps all of your stories searchable, shareable, and unread forever | The NewsBlur Blog
-
+
diff --git a/blog/_site/2023/12/06/ios-grid-view/index.html b/blog/_site/2023/12/06/ios-grid-view/index.html
index f7ee9dd27..9d784ea96 100644
--- a/blog/_site/2023/12/06/ios-grid-view/index.html
+++ b/blog/_site/2023/12/06/ios-grid-view/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Introducing the Grid view on iOS | The NewsBlur Blog
-
+
diff --git a/blog/_site/2024/10/22/newsblur-macos-app/index.html b/blog/_site/2024/10/22/newsblur-macos-app/index.html
index b6bf7f3eb..136141c96 100644
--- a/blog/_site/2024/10/22/newsblur-macos-app/index.html
+++ b/blog/_site/2024/10/22/newsblur-macos-app/index.html
@@ -9,25 +9,25 @@
-NewsBlur’s native macOS App | The NewsBlur Blog
+NewsBlur’s native macOS App offers news notifications directly on your desktop | The NewsBlur Blog
-
+
-
-
+
+
-
+
-
+
+{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2024-10-22T00:00:00-04:00","datePublished":"2024-10-22T00:00:00-04:00","description":"If you’re like me and like to have NewsBlur sitting open all day, then you’ll love the new NewsBlur macOS app. It’s a first-class app that supports all of NewsBlur’s features, from intelligence training to sharing/blurblogs.","headline":"NewsBlur’s native macOS App offers news notifications directly on your desktop","mainEntityOfPage":{"@type":"WebPage","@id":"https://blog.newsblur.com/2024/10/22/newsblur-macos-app/"},"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://blog.newsblur.com/assets/newsblur_logo_512.png"}},"url":"https://blog.newsblur.com/2024/10/22/newsblur-macos-app/"}
-
+
The macOS app also supports all of the themes, so it can turn itself into dark mode automatically.
+
It’s configurable and supports ay=utomatic hiding and showing of the feed list so you can focus on the stories you want to read. Use your mouse to swipe left and right on both stories and to swap which pane is visible.
+
+
In the Grid view, you can swipe right with your mouse to temporarily show the feed list, giving you a compact view of your news stories without having to give up screen real estate.
+
+
Training is supported natively, so you can hide those stories you don’t want to see while highlighting those thast you do.
+
-
+
It’s important to be able to train, because you can set notifications to be sent from either your Unread list or your Focus list, ensuring you only see the notifications from sites you want to see. And clicking on those native macOS notifications takes you directly to the story in the new macOS app.
-
+
If you have any ideas you’d like to see on macOS, feel free to post an idea on the NewsBlur Forum.
Introducing the NewsBlur macOS app, available for free on the Mac App Store.
+
+
+
+
The macOS app also supports all of the themes, so it can turn itself into dark mode automatically.
+
+
+
+
It’s configurable and supports ay=utomatic hiding and showing of the feed list so you can focus on the stories you want to read. Use your mouse to swipe left and right on both stories and to swap which pane is visible.
+
+
+
+
In the Grid view, you can swipe right with your mouse to temporarily show the feed list, giving you a compact view of your news stories without having to give up screen real estate.
+
+
+
+
Training is supported natively, so you can hide those stories you don’t want to see while highlighting those thast you do.
+
+
+
+
It’s important to be able to train, because you can set notifications to be sent from either your Unread list or your Focus list, ensuring you only see the notifications from sites you want to see. And clicking on those native macOS notifications takes you directly to the story in the new macOS app.
+
+
+
+
If you have any ideas you’d like to see on macOS, feel free to post an idea on the NewsBlur Forum.
+
+
Coming up soon are the discover feeds feature, where you can see related feeds based purely on semantic similarity (and not based on mined usage data), as well as real-time updates to the macOS app similar to the dashboard on the web.
]]>Introducing the Grid view on iOS2023-12-06T00:00:00-05:002023-12-06T00:00:00-05:00https://blog.newsblur.com/2023/12/06/ios-grid-viewThe Grid view is now on iOS. Read stories with large thumbnails in a magazine-like format, where you can see a customizable number of story previews at once. Works beautifully for both iPhone and iPad.
Just like on the web, you can customize how many stories you see and how large each story is, giving you the freedom to read stories with large thumbnails or small image previews.
@@ -13,37 +41,7 @@ A new sound of an old instrument.
If you have any other ideas you’d like to see on iPad and iPhone, feel free to post an idea on the NewsBlur Forum.
-
This is a huge release and has been a year in the making. Coming up soon: a new Mac app and intelligent feed discovery.
]]>2022 redesign: new dashboard layout, refreshed stories and story titles, and entirely redrawn icons2022-07-01T00:00:00-04:002022-07-01T00:00:00-04:00https://blog.newsblur.com/2022/07/01/dashboard-redesign-2022The launch of the new Premium Archive subscription tier also includes the 2022 redesign. You’ll see a third dashboard layout which stretches out your dashboard rivers across the width of the screen.
-
-
-
-
The latest redesign style has more accomodations for spacing and padding around each story title element. The result is a cleaner story title with easier to read headlines. The author has been moved and restyled to be next to the story date. Favicons and unread status indicators have been swapped, and font sizes, colors, and weights have been adjusted.
-
-
-
-
If you find the interface to be too airy, there is a setting in the main Manage menu allowing you to switch between Comfortable and Compact. The compact interface is denser than before, giving power users a highly detailed view.
-
-
Transitions have also been added to help you feel the difference. And there are new animations during many of the transitions that accompany changing settings.
-
-
-
-
-
-
And lastly, this redesign comes with a suite of all new icons. The goal with this icon redesign is to bring a consistent weight to each icon as well as vectorize them with SVG so they look good at all resolutions.
-
-
-
-
A notable icon change is the unread indicator, which now has different size icons for both unread stories and focus stories, giving focus stories more depth.
-
-
-
-
Here’s a screenshot that’s only possible with the new premium archive, complete with backfilled blog post from the year 2000, ready to be marked as unread.
-
-
-
-
I tried to find every icon, so if you spot a dialog or menu that you’d like to see given some more love, reach out on the support forum.
]]>NewsBlur Premium Archive subscription keeps all of your stories searchable, shareable, and unread forever2022-07-01T00:00:00-04:002022-07-01T00:00:00-04:00https://blog.newsblur.com/2022/07/01/premium-archive-subscriptionFor $99/year every story from every site you subscribe to will stay in NewsBlur’s archive. This new premium tier also allows you to mark any story as unread as well as choose when stories are automatically marked as read. You can now have full control of your story archive, letting you search, share, and read stories forever without having to worry about them being deleted.
+
This is a huge release and has been a year in the making. Coming up soon: a new Mac app and intelligent feed discovery.
]]>NewsBlur Premium Archive subscription keeps all of your stories searchable, shareable, and unread forever2022-07-01T00:00:00-04:002022-07-01T00:00:00-04:00https://blog.newsblur.com/2022/07/01/premium-archive-subscriptionFor $99/year every story from every site you subscribe to will stay in NewsBlur’s archive. This new premium tier also allows you to mark any story as unread as well as choose when stories are automatically marked as read. You can now have full control of your story archive, letting you search, share, and read stories forever without having to worry about them being deleted.
The NewsBlur Premium Archive subscription offers you the following:
@@ -76,7 +74,37 @@ A new sound of an old instrument.
-
How’s that for an archive?
]]>New gesture-based layout for the NewsBlur iPad App2022-03-28T00:00:00-04:002022-03-28T00:00:00-04:00https://blog.newsblur.com/2022/03/28/redesigned-ios-layoutWe have a big update for you on iOS, complete with a redesigned layout engine. You’ll see this mostly on iPad, where you can now interactively swipe between panes, customize how many panes you see, and even customize where the story titles are on the screen relative to the story content.
+
How’s that for an archive?
]]>2022 redesign: new dashboard layout, refreshed stories and story titles, and entirely redrawn icons2022-07-01T00:00:00-04:002022-07-01T00:00:00-04:00https://blog.newsblur.com/2022/07/01/dashboard-redesign-2022The launch of the new Premium Archive subscription tier also includes the 2022 redesign. You’ll see a third dashboard layout which stretches out your dashboard rivers across the width of the screen.
+
+
+
+
The latest redesign style has more accomodations for spacing and padding around each story title element. The result is a cleaner story title with easier to read headlines. The author has been moved and restyled to be next to the story date. Favicons and unread status indicators have been swapped, and font sizes, colors, and weights have been adjusted.
+
+
+
+
If you find the interface to be too airy, there is a setting in the main Manage menu allowing you to switch between Comfortable and Compact. The compact interface is denser than before, giving power users a highly detailed view.
+
+
Transitions have also been added to help you feel the difference. And there are new animations during many of the transitions that accompany changing settings.
+
+
+
+
+
+
And lastly, this redesign comes with a suite of all new icons. The goal with this icon redesign is to bring a consistent weight to each icon as well as vectorize them with SVG so they look good at all resolutions.
+
+
+
+
A notable icon change is the unread indicator, which now has different size icons for both unread stories and focus stories, giving focus stories more depth.
+
+
+
+
Here’s a screenshot that’s only possible with the new premium archive, complete with backfilled blog post from the year 2000, ready to be marked as unread.
+
+
+
+
I tried to find every icon, so if you spot a dialog or menu that you’d like to see given some more love, reach out on the support forum.
]]>New gesture-based layout for the NewsBlur iPad App2022-03-28T00:00:00-04:002022-03-28T00:00:00-04:00https://blog.newsblur.com/2022/03/28/redesigned-ios-layoutWe have a big update for you on iOS, complete with a redesigned layout engine. You’ll see this mostly on iPad, where you can now interactively swipe between panes, customize how many panes you see, and even customize where the story titles are on the screen relative to the story content.
Let’s take a look at all of the new features, starting with the improved gesture-based layout engine for navigating between stories and feeds.
@@ -187,9 +215,9 @@ A new sound of an old instrument.
nbset:PRIMARY>useREAD__ME_TO_RECOVER_YOUR_DATAswitchedtodbREAD__ME_TO_RECOVER_YOUR_DATA
-nbset:PRIMARY>db.README.find()
+nbset:PRIMARY>db.README.find(){
- "_id":ObjectId("60d3e112ac48d82047aab95d"),
+ "_id":ObjectId("60d3e112ac48d82047aab95d"),"content":"All your data is a backed up. You must pay 0.03 BTC to XXXXXXFTHISGUYXXXXXXX 48 hours for recover it. After 48 hours expiration we will leaked and exposed all your data. In case of refusal to pay, we will contact the General Data Protection Regulation, GDPR and notify them that you store user data in an open form and is not safe. Under the rules of the law, you face a heavy fine or arrest and your base dump will be dropped from our server! You can buy bitcoin here, does not take much time to buy https://localbitcoins.com or https://buy.moonpay.io/ After paying write to me in the mail with your DB IP: FTHISGUY@recoverme.one and you will receive a link to download your database dump."}
@@ -343,20 +371,4 @@ $ cat /var/log/mongodb/mongod.log | egrep -v "159.65.XX.XX|161.89.XX.XX|<<
-
Don’t forget you can also adjust the font size and even turn off image previews.
]]>Highlight passages and add private notes to saved stories2020-07-17T08:30:05-04:002020-07-17T08:30:05-04:00https://blog.newsblur.com/2020/07/17/highlight-passages-and-add-private-notes-on-savedWhen you’re reading a story and want to save a portion of it for personal use, you now have a couple new options. Highlighting is now available for all stories. Simply select the text you want to highlight and NewsBlur helpfully shows a tooltip that allows you to select a part of the text and save it.
-
-
-
-
You can enrich your reading experience with highlights and come back to passages you want to remember. All stories with highlights are tagged as “Highlights” in your Saved Story tags list. That way you can immediately come back to your highlights.
-
-
-
-
Second, you can now also write private notes to yourself. If you’re doing research and want to remember why a particular story is being saved, the private notes text box can save your thoughts without having to share them with the world.
-
-
-
-
A few other small changes have been added to this feature. You can also save stories and tag them from any website using the bookmarklet (which you can install under Manage > Goodies > Bookmarklet).
Don’t forget you can also adjust the font size and even turn off image previews.
]]>
\ No newline at end of file
diff --git a/blog/_site/index.html b/blog/_site/index.html
index 11ad6ecb0..8d6468ca9 100644
--- a/blog/_site/index.html
+++ b/blog/_site/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -64,7 +64,45 @@
If you’re like me and like to have NewsBlur sitting open all day, then you’ll love the new NewsBlur macOS app. It’s a first-class app that supports all of NewsBlur’s features, from intelligence training to sharing/blurblogs.
+
+
Introducing the NewsBlur macOS app, available for free on the Mac App Store.
+
+
+
+
The macOS app also supports all of the themes, so it can turn itself into dark mode automatically.
+
+
+
+
It’s configurable and supports ay=utomatic hiding and showing of the feed list so you can focus on the stories you want to read. Use your mouse to swipe left and right on both stories and to swap which pane is visible.
+
+
+
+
In the Grid view, you can swipe right with your mouse to temporarily show the feed list, giving you a compact view of your news stories without having to give up screen real estate.
+
+
+
+
Training is supported natively, so you can hide those stories you don’t want to see while highlighting those thast you do.
+
+
+
+
It’s important to be able to train, because you can set notifications to be sent from either your Unread list or your Focus list, ensuring you only see the notifications from sites you want to see. And clicking on those native macOS notifications takes you directly to the story in the new macOS app.
+
+
+
+
If you have any ideas you’d like to see on macOS, feel free to post an idea on the NewsBlur Forum.
+
+
Coming up soon are the discover feeds feature, where you can see related feeds based purely on semantic similarity (and not based on mined usage data), as well as real-time updates to the macOS app similar to the dashboard on the web.
When you’re reading a story and want to save a portion of it for personal use, you now have a couple new options. Highlighting is now available for all stories. Simply select the text you want to highlight and NewsBlur helpfully shows a tooltip that allows you to select a part of the text and save it.
-
-
-
-
You can enrich your reading experience with highlights and come back to passages you want to remember. All stories with highlights are tagged as “Highlights” in your Saved Story tags list. That way you can immediately come back to your highlights.
-
-
-
-
Second, you can now also write private notes to yourself. If you’re doing research and want to remember why a particular story is being saved, the private notes text box can save your thoughts without having to share them with the world.
-
-
-
-
A few other small changes have been added to this feature. You can also save stories and tag them from any website using the bookmarklet (which you can install under Manage > Goodies > Bookmarklet).
diff --git a/blog/_site/page10/index.html b/blog/_site/page10/index.html
index dc3d9ee7b..421258361 100644
--- a/blog/_site/page10/index.html
+++ b/blog/_site/page10/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Page 10 of 11 for The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -65,7 +65,34 @@
Now that NewsBlur has joined the wonderful world of Android, we’re turning our attention back to the iOS app, with a full-scale feature parity push for the new iPhone 5 and iOS 6. It’s perfect for catching up on your reading when you realize that Apple Maps has sent you to the wrong address. Again.
+
+
+
+
We’ve tried to incorporate as many of your suggestions as possible, and here are some of the new features you’ll find:
+
+
+
Collapsible folders: Check out folders one at a time (and save your scrolling fingers some work)
+
Saved stories: Access all your saved stories from the Web or other devices, and save other stories for later
+
Mark stories as unread: For that fresh new-story feeling
+
Send stories to Instapaper for reading later, or e-mail them to your friends/enemies
+
Share stories on Twitter and Facebook, and crush social-media naysayers who think you’re just telling people what you ate for breakfast
+
New app-wide menus: An interface almost as stylish as your new device, and far less vulnerable to breakage and theft
+
Bug fixes, improvements, speed-ups, fine-tuning, and other things that aren’t particularly noticeable (but done because we love you)
+
+
+
Check out the update, and be sure to let us know if anything isn’t working the way it should. And Android folks, don’t feel left out; an update with bug fixes is in the pipeline, so stay tuned (and thanks for the feedback!).
Twelve months can be a quick flyby if you don’t stop to write everything down. Luckily, a habit I’ve kept since July 2009, when I started recording monthly goals for my project, is still going strong.
-
-
This gives me the opportunity to review everything that we’ve accomplished in the past year. There were numerous new features, about half of which were created as a result of feedback from the community. You asked for it, I found the time.
-
-
It’s been a pretty good cycle that looks like it’s going to keep going for years.
-
-
Premium accounts are keeping NewsBlur alive
-
-
At only a $1/month, nearly 800 people have subscribed to NewsBlur. Not much of it goes back to me, since the servers, between the eight of them, cost $650 every month. But that gap is increasing and my prediction is that these servers should be good for more than a doubling of traffic.
-
-
Social is coming
-
-
In October Google Reader dropped its social features and there was an enormous influx of new users. Unfortunately, NewsBlur doesn’t have any social features that could be considered a replacement for the community lost in the Reader sunsetting.
-
-
But that’s changing soon. There’s only a couple more weeks of development needed before the Social branch is ready for beta testers. And I’ll be taking feedback on the changes, iterating until sharebro communities are able to form. It’ll be a great time, watching a favorite service evolve into a social community.
-
-
If you’re a developer, you might enjoy watching the development of NewsBlur on GitHub.
-
-
2011 Calendar
-
-
The biggest features built this year were the River of News, the iPhone app, and the API. There were tons of other big features, but these three top the list for their importance.
-
-
January 2011
-
-
-
River of News - read all stories in a folder
-
“Show N hidden stories” button
-
Bookmarklet - browser bookmark that allows you to subscribe to a site from the site itself
-
Favicon fetching and color decomposing - the color gradient that matches the site’s favicon.
-
-
-
February 2011
-
-
-
New dashboard
-
Replicated PostgreSQL - a slave relational DB for redundancy
Hide and show story changes - see the story being modified after being published
-
Graphs on the dashboard
-
Upgraded to Django 1.3
-
Feed fetch histories in Site Statistics
-
-
-
May 2011
-
-
-
Send story by email - the original social network
-
Community feedback on the dashboard
-
The tutorial - built because blogger Louis Gray didn’t easily grasp how to get started with NewsBlur, and he’s an early adopter, so good luck to any regular users without the help of a tutorial
-
-
-
June 2011
-
-
-
Prototype mobile site - using jQuery UI, was a disaster in terms of performance
MongoDB is now replicated - for higher availability
-
Lots of backend changes to account for increased load - increased speed with more load using better code
-
-
-
You can follow updates in real-time on Twitter by following both @samuelclay and @newsblur. Lots more to come.
-
-
Keep the feedback, ideas, praise, and bugs coming. I couldn’t do this without the external motivation coming from dozens of your voices talking about NewsBlur.
-
-
diff --git a/blog/_site/page11/index.html b/blog/_site/page11/index.html
index 3eff4548f..29f5cd004 100644
--- a/blog/_site/page11/index.html
+++ b/blog/_site/page11/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Page 11 of 11 for The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -64,7 +64,142 @@
Twelve months can be a quick flyby if you don’t stop to write everything down. Luckily, a habit I’ve kept since July 2009, when I started recording monthly goals for my project, is still going strong.
+
+
This gives me the opportunity to review everything that we’ve accomplished in the past year. There were numerous new features, about half of which were created as a result of feedback from the community. You asked for it, I found the time.
+
+
It’s been a pretty good cycle that looks like it’s going to keep going for years.
+
+
Premium accounts are keeping NewsBlur alive
+
+
At only a $1/month, nearly 800 people have subscribed to NewsBlur. Not much of it goes back to me, since the servers, between the eight of them, cost $650 every month. But that gap is increasing and my prediction is that these servers should be good for more than a doubling of traffic.
+
+
Social is coming
+
+
In October Google Reader dropped its social features and there was an enormous influx of new users. Unfortunately, NewsBlur doesn’t have any social features that could be considered a replacement for the community lost in the Reader sunsetting.
+
+
But that’s changing soon. There’s only a couple more weeks of development needed before the Social branch is ready for beta testers. And I’ll be taking feedback on the changes, iterating until sharebro communities are able to form. It’ll be a great time, watching a favorite service evolve into a social community.
+
+
If you’re a developer, you might enjoy watching the development of NewsBlur on GitHub.
+
+
2011 Calendar
+
+
The biggest features built this year were the River of News, the iPhone app, and the API. There were tons of other big features, but these three top the list for their importance.
+
+
January 2011
+
+
+
River of News - read all stories in a folder
+
“Show N hidden stories” button
+
Bookmarklet - browser bookmark that allows you to subscribe to a site from the site itself
+
Favicon fetching and color decomposing - the color gradient that matches the site’s favicon.
+
+
+
February 2011
+
+
+
New dashboard
+
Replicated PostgreSQL - a slave relational DB for redundancy
Hide and show story changes - see the story being modified after being published
+
Graphs on the dashboard
+
Upgraded to Django 1.3
+
Feed fetch histories in Site Statistics
+
+
+
May 2011
+
+
+
Send story by email - the original social network
+
Community feedback on the dashboard
+
The tutorial - built because blogger Louis Gray didn’t easily grasp how to get started with NewsBlur, and he’s an early adopter, so good luck to any regular users without the help of a tutorial
+
+
+
June 2011
+
+
+
Prototype mobile site - using jQuery UI, was a disaster in terms of performance
MongoDB is now replicated - for higher availability
+
Lots of backend changes to account for increased load - increased speed with more load using better code
+
+
+
You can follow updates in real-time on Twitter by following both @samuelclay and @newsblur. Lots more to come.
+
+
Keep the feedback, ideas, praise, and bugs coming. I couldn’t do this without the external motivation coming from dozens of your voices talking about NewsBlur.
When you’re reading a story and want to save a portion of it for personal use, you now have a couple new options. Highlighting is now available for all stories. Simply select the text you want to highlight and NewsBlur helpfully shows a tooltip that allows you to select a part of the text and save it.
+
+
+
+
You can enrich your reading experience with highlights and come back to passages you want to remember. All stories with highlights are tagged as “Highlights” in your Saved Story tags list. That way you can immediately come back to your highlights.
+
+
+
+
Second, you can now also write private notes to yourself. If you’re doing research and want to remember why a particular story is being saved, the private notes text box can save your thoughts without having to share them with the world.
+
+
+
+
A few other small changes have been added to this feature. You can also save stories and tag them from any website using the bookmarklet (which you can install under Manage > Goodies > Bookmarklet).
This is a big deal for Android users. The NewsBlur Android app now fully supports intelligence training and filtering, letting you filter out the stories you don’t want to read while highlighting the stories you do want by letting you filter titles, authors, tags, and the publisher.
-
-
-
-
You used to be able to train by tapping on authors and tags right from the story, but that didn’t give you a bird’s eye view of an entire feed. You can now clear / modify old intelligence training without going back to the story that set it. And until now you had to use the web or iOS app to train on titles and the publisher itself. Now you can do it all from all of the apps. Check the FAQ for ideas on how to make use of the intelligence trainer.
-
-
Here’s a list of all the new features in version 7.0 of the Android app:
-
-
-
New Intelligence Trainer. You can train feeds and individual stories: titles, authors, tags, and publishers.
-
New Infrequent Site Stories view. It’s configurable and will show up on iOS and the web soon.
-
Titles with intelligence training are now highlighted.
-
You can now switch between light and dark themes from any view.
-
-
-
This is a huge release and we hope you’ll find that it makes the NewsBlur reading experience that much better.
-
-
diff --git a/blog/_site/page3/index.html b/blog/_site/page3/index.html
index ab61742cb..c718aca77 100644
--- a/blog/_site/page3/index.html
+++ b/blog/_site/page3/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Page 3 of 11 for The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -66,6 +66,32 @@
This is a big deal for Android users. The NewsBlur Android app now fully supports intelligence training and filtering, letting you filter out the stories you don’t want to read while highlighting the stories you do want by letting you filter titles, authors, tags, and the publisher.
+
+
+
+
You used to be able to train by tapping on authors and tags right from the story, but that didn’t give you a bird’s eye view of an entire feed. You can now clear / modify old intelligence training without going back to the story that set it. And until now you had to use the web or iOS app to train on titles and the publisher itself. Now you can do it all from all of the apps. Check the FAQ for ideas on how to make use of the intelligence trainer.
+
+
Here’s a list of all the new features in version 7.0 of the Android app:
+
+
+
New Intelligence Trainer. You can train feeds and individual stories: titles, authors, tags, and publishers.
+
New Infrequent Site Stories view. It’s configurable and will show up on iOS and the web soon.
+
Titles with intelligence training are now highlighted.
+
You can now switch between light and dark themes from any view.
+
+
+
This is a huge release and we hope you’ll find that it makes the NewsBlur reading experience that much better.
Turn Touch is a solid wood remote… and it’s about to change the way you use NewsBlur.
-
-
Change how?
-
-
Here’s how. Turn Touch connects to apps and devices in your home. Think Hue lights and Sonos speakers. Your Mac, your phone, etc.
-
-
It also connects to NewsBlur.
-
-
-
-
This is big. It means you can wake up in the morning, grab a cup of coffee, and cycle through news from across the room. Or, hook your Mac up to a display (maybe your living room TV) and skip through photo blogs, headlines, and the day’s best writing.
-
-
It’s kind of like getting a new set of speakers. Where before, you’d be chained to your computer with headphones; now, you can listen to music from anywhere you’d like. With Turn Touch, you can leave your computer and read the news no matter what you’re doing— laundry, the dishes, or enjoying a lazy Sunday on your couch.
-
-
-
-
Get one. Or all three.
-
-
Turn Touch is on Kickstarter. Back the project to get your very own. Or—and this is my sincere recommendation—get the complete set, save some money, and give one away to a friend.
-
-
I’ve been working on Turn Touch for years and I hope it shows.
-
-
diff --git a/blog/_site/page4/index.html b/blog/_site/page4/index.html
index 9a61ea71a..b5dc99f24 100644
--- a/blog/_site/page4/index.html
+++ b/blog/_site/page4/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Page 4 of 11 for The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -65,7 +65,40 @@
Turn Touch is a solid wood remote… and it’s about to change the way you use NewsBlur.
+
+
Change how?
+
+
Here’s how. Turn Touch connects to apps and devices in your home. Think Hue lights and Sonos speakers. Your Mac, your phone, etc.
+
+
It also connects to NewsBlur.
+
+
+
+
This is big. It means you can wake up in the morning, grab a cup of coffee, and cycle through news from across the room. Or, hook your Mac up to a display (maybe your living room TV) and skip through photo blogs, headlines, and the day’s best writing.
+
+
It’s kind of like getting a new set of speakers. Where before, you’d be chained to your computer with headphones; now, you can listen to music from anywhere you’d like. With Turn Touch, you can leave your computer and read the news no matter what you’re doing— laundry, the dishes, or enjoying a lazy Sunday on your couch.
+
+
+
+
Get one. Or all three.
+
+
Turn Touch is on Kickstarter. Back the project to get your very own. Or—and this is my sincere recommendation—get the complete set, save some money, and give one away to a friend.
+
+
I’ve been working on Turn Touch for years and I hope it shows.
The iOS app has enjoyed a feature that gives you a tiny preview of a story’s main image right in the story title. Today this feature launches on the web.
-
-
-
-
What I’ve noticed is that while I don’t use the image to identify which stories I want to read, I do use them to act as a signature of a story.
-
-
There’s precedence for this on NewsBlur. Every site already does this using the color of its favicon. NewsBlur liberally applies a two-tone color palette based on each feed’s favicon. This serves as a per-feed signature, giving context to a story when it’s in the same view as every other feed’s stories.
-
-
-
-
These story preview thumbnails serve as the same signature. Stories are best remembered through their colors and photos, so thumbnails act as a visual signature that’s easy to recognize. It works on a subconscious but perceptable level.
-
-
-
-
Of course you can turn them right off.
-
-
diff --git a/blog/_site/page5/index.html b/blog/_site/page5/index.html
index 48b536eb5..5d41b5f27 100644
--- a/blog/_site/page5/index.html
+++ b/blog/_site/page5/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Page 5 of 11 for The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -65,7 +65,32 @@
The iOS app has enjoyed a feature that gives you a tiny preview of a story’s main image right in the story title. Today this feature launches on the web.
+
+
+
+
What I’ve noticed is that while I don’t use the image to identify which stories I want to read, I do use them to act as a signature of a story.
+
+
There’s precedence for this on NewsBlur. Every site already does this using the color of its favicon. NewsBlur liberally applies a two-tone color palette based on each feed’s favicon. This serves as a per-feed signature, giving context to a story when it’s in the same view as every other feed’s stories.
+
+
+
+
These story preview thumbnails serve as the same signature. Stories are best remembered through their colors and photos, so thumbnails act as a visual signature that’s easy to recognize. It works on a subconscious but perceptable level.
Used to be that a friend shares a story without commenting on it and you’d be out of luck in trying to reply or thank them for sharing it.
-
-
Not anymore! Comment-less shares now have the ability to be replied to and favorited. Take a look at this recent story on The People Have Spoken.
-
-
-
-
These new comments are immediately available on the web and will be coming to iOS and Android shortly.
-
-
diff --git a/blog/_site/page6/index.html b/blog/_site/page6/index.html
index bedd0349b..c60305f9b 100644
--- a/blog/_site/page6/index.html
+++ b/blog/_site/page6/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Page 6 of 11 for The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -65,7 +65,24 @@
diff --git a/blog/_site/page7/index.html b/blog/_site/page7/index.html
index 7849a87ff..06c72dc89 100644
--- a/blog/_site/page7/index.html
+++ b/blog/_site/page7/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Page 7 of 11 for The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -65,7 +65,26 @@
Wouldn’t it be nice if there was a way to automatically copy your saved stories over to Evernote or Twitter or Pinboard? What about an automatic way to keep track of your unread focus (trained) stories in Buffer or Delicious or Dropbox?
-
-
-
-
IFTTT (if this then that) is a free web service that automates the movement of data from NewsBlur to dozens of other web services. It also handles movement of data from dozens of other web services back into NewsBlur. Today IFTTT is launching a NewsBlur channel where you can take advantage of their incredible glue that binds dozens of web service like NewsBlur in unique and customizable ways.
-
-
Customizable IFTTT triggers
-
-
The best part about these IFTTT recipes is that the triggers can be customized to fit a specific saved story tag or blurblog or folder or feed. When you create a recipe using NewsBlur, you can choose which of your own feeds or tags you want to use.
-
-
-
-
You can also choose to only use unread focus (trained) stories. So you can filter out stories you don’t want to read and highlight the stories you do want to read using the Intelligence Trainer.
-
-
-
-
Create tasks and recipes with IFTTT
-
-
Here’s a sample of IFTTT recipes that you can use today for moving your data from NewsBlur out to other services:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
You can also take data from other services and move it into NewsBlur:
diff --git a/blog/_site/page8/index.html b/blog/_site/page8/index.html
index 4ac86dcd6..21c719f42 100644
--- a/blog/_site/page8/index.html
+++ b/blog/_site/page8/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Page 8 of 11 for The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -65,7 +65,58 @@
Wouldn’t it be nice if there was a way to automatically copy your saved stories over to Evernote or Twitter or Pinboard? What about an automatic way to keep track of your unread focus (trained) stories in Buffer or Delicious or Dropbox?
+
+
+
+
IFTTT (if this then that) is a free web service that automates the movement of data from NewsBlur to dozens of other web services. It also handles movement of data from dozens of other web services back into NewsBlur. Today IFTTT is launching a NewsBlur channel where you can take advantage of their incredible glue that binds dozens of web service like NewsBlur in unique and customizable ways.
+
+
Customizable IFTTT triggers
+
+
The best part about these IFTTT recipes is that the triggers can be customized to fit a specific saved story tag or blurblog or folder or feed. When you create a recipe using NewsBlur, you can choose which of your own feeds or tags you want to use.
+
+
+
+
You can also choose to only use unread focus (trained) stories. So you can filter out stories you don’t want to read and highlight the stories you do want to read using the Intelligence Trainer.
+
+
+
+
Create tasks and recipes with IFTTT
+
+
Here’s a sample of IFTTT recipes that you can use today for moving your data from NewsBlur out to other services:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
You can also take data from other services and move it into NewsBlur:
Search, which can easily be considered one of the most important features of a world-class news reader, is also one of the most difficult features to build.
-
-
-
-
While working on the feature, I came across a great method that allows searching through story titles, authors, and tags on a per-feed basis. It’s not perfect and it’s not the full feature, but this will get us 80% of the way there.
-
-
-
-
Also comes with a handy keyboard shortcut (and a refactored keyboard shortcut dialog).
-
-
-
-
You can also search your saved stories and shared stories. This feature will soon find it’s way to both Android and iOS, and is available today to all premium users.
-
-
diff --git a/blog/_site/page9/index.html b/blog/_site/page9/index.html
index 7b9c81b26..bd3e3a34c 100644
--- a/blog/_site/page9/index.html
+++ b/blog/_site/page9/index.html
@@ -10,7 +10,7 @@
title="The NewsBlur Blog RSS feed"
href="/feed.xml" />
Page 9 of 11 for The NewsBlur Blog | A new sound of an old instrument
-
+
@@ -65,7 +65,30 @@
Search, which can easily be considered one of the most important features of a world-class news reader, is also one of the most difficult features to build.
+
+
+
+
While working on the feature, I came across a great method that allows searching through story titles, authors, and tags on a per-feed basis. It’s not perfect and it’s not the full feature, but this will get us 80% of the way there.
+
+
+
+
Also comes with a handy keyboard shortcut (and a refactored keyboard shortcut dialog).
+
+
+
+
You can also search your saved stories and shared stories. This feature will soon find it’s way to both Android and iOS, and is available today to all premium users.
Now that NewsBlur has joined the wonderful world of Android, we’re turning our attention back to the iOS app, with a full-scale feature parity push for the new iPhone 5 and iOS 6. It’s perfect for catching up on your reading when you realize that Apple Maps has sent you to the wrong address. Again.
-
-
-
-
We’ve tried to incorporate as many of your suggestions as possible, and here are some of the new features you’ll find:
-
-
-
Collapsible folders: Check out folders one at a time (and save your scrolling fingers some work)
-
Saved stories: Access all your saved stories from the Web or other devices, and save other stories for later
-
Mark stories as unread: For that fresh new-story feeling
-
Send stories to Instapaper for reading later, or e-mail them to your friends/enemies
-
Share stories on Twitter and Facebook, and crush social-media naysayers who think you’re just telling people what you ate for breakfast
-
New app-wide menus: An interface almost as stylish as your new device, and far less vulnerable to breakage and theft
-
Bug fixes, improvements, speed-ups, fine-tuning, and other things that aren’t particularly noticeable (but done because we love you)
-
-
-
Check out the update, and be sure to let us know if anything isn’t working the way it should. And Android folks, don’t feel left out; an update with bug fixes is in the pipeline, so stay tuned (and thanks for the feedback!).