diff --git a/.gitignore b/.gitignore index 10b9903f..fd46c2e9 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ nbproject composer .ht* /vendor/ +.DS_Store \ No newline at end of file diff --git a/content/news/96-timcast.md b/content/news/96-timcast.md new file mode 100644 index 00000000..5f608ba6 --- /dev/null +++ b/content/news/96-timcast.md @@ -0,0 +1,21 @@ +--- +author: reilly +title: 'Integrity 2.0' +date: '2017-02-23 00:20:00' +cover: 'timcast-banner.jpg' +--- +You got your daily news fix with [1791L](https://lbry.io/news/1791l). + +But what if you were even closer to the action? What if, instead of spitballing in well-lit newsrooms on comfy couches, LBRY could bring back the journalism of yesterday, right from the field? + +Enter @Timcast with independent journalist Tim Pool. + +![Timcast](/img/news/timcast-inline.jpg) + +Tim has been bringing uncensored, raw coverage of news from the frontlines for six years, and he’s only just getting started. He is the quintessential independent journalist, unfunded by corporate news outlets or special interests. You can donate [to his Patreon here](https://www.patreon.com/timcast) and his current [investigation in Sweden here](https://www.gofundme.com/lastnightinsweden). + +Start following his coverage of Sweden’s crime issues at lbry://timcast-sweden-day1 -- and each day afterward as Tim uncovers the truth about Swedish crime and immigration. + +Tim Pool’s work has been syndicated by NBC, Al Jazeera, VICE, Fusion TV, RT and Time. + +**Not on LBRY yet?** [Get an invite here](https://lbry.io/get). Have news you want to share uncensored on LBRY? Email reilly@lbry.io to get to the bottom of the story. diff --git a/controller/Controller.class.php b/controller/Controller.class.php index 023f059a..7ae3f310 100644 --- a/controller/Controller.class.php +++ b/controller/Controller.class.php @@ -127,7 +127,8 @@ class Controller '/deck.pdf' => 'https://www.dropbox.com/s/0xj4vgucsbi8rtv/lbry-deck.pdf?dl=1', '/pln.pdf' => 'https://www.dropbox.com/s/uevjrwnyr672clj/lbry-pln.pdf?dl=1', '/plan.pdf' => 'https://www.dropbox.com/s/uevjrwnyr672clj/lbry-pln.pdf?dl=1', - '/api' => 'http://lbryio.github.io/lbry' + '/api' => 'https://lbryio.github.io/lbry', + '/api-help' => 'https://lbryio.github.io/lbry' ]; diff --git a/lib/thirdparty/Github.class.php b/lib/thirdparty/Github.class.php index 4ec5e7b6..86149032 100644 --- a/lib/thirdparty/Github.class.php +++ b/lib/thirdparty/Github.class.php @@ -11,14 +11,14 @@ class Github try { - $releaseData = static::get('/repos/lbryio/lbry/releases/latest', $cache); + $releaseData = static::get('/repos/lbryio/lbry-app/releases/latest', $cache); foreach ($releaseData['assets'] as $asset) { $ext = substr($asset['name'], -4); if ( ($os == OS::OS_LINUX && ($ext == '.deb' || in_array($asset['content_type'], ['application/x-debian-package', 'application/x-deb']))) || ($os == OS::OS_OSX && ($ext == '.dmg' || in_array($asset['content_type'], ['application/x-diskcopy', 'application/x-apple-diskimage']))) || - ($os == OS::OS_WINDOWS && $ext == '.msi') + ($os == OS::OS_WINDOWS && $ext == '.exe') ) { return $asset['browser_download_url']; diff --git a/web/img/blog-covers/timcast-banner.jpg b/web/img/blog-covers/timcast-banner.jpg new file mode 100644 index 00000000..2e157b04 Binary files /dev/null and b/web/img/blog-covers/timcast-banner.jpg differ diff --git a/web/img/news/timcast-inline.jpg b/web/img/news/timcast-inline.jpg new file mode 100644 index 00000000..4f2630df Binary files /dev/null and b/web/img/news/timcast-inline.jpg differ