diff --git a/hackertray/hackernews.py b/hackertray/hackernews.py index f890d54..7826d87 100644 --- a/hackertray/hackernews.py +++ b/hackertray/hackernews.py @@ -2,13 +2,7 @@ import random import requests urls = [ - 'http://node-hnapi-eu.herokuapp.com/', # Heroku (EU) - 'http://node-hnapi.azurewebsites.net/', # Windows Azure (North EU) - 'http://node-hnapi-asia.azurewebsites.net/', # Windows Azure (East Asia) - 'http://node-hnapi-eus.azurewebsites.net/', # Windows Azure (East US) - 'http://node-hnapi-weu.azurewebsites.net/', # Windows Azure (West EU) - 'http://node-hnapi-wus.azurewebsites.net/', # Windows Azure (West US) - 'http://node-hnapi-ncus.azurewebsites.net/' # Windows Azure (North Central US) + 'https://node-hnapi.herokuapp.com/' ]; class HackerNews: diff --git a/setup.py b/setup.py index a7f81c0..051378b 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='hackertray', - version='1.8.1', + version='1.8.2', description='Hacker News app that sits in your System Tray', long_description='HackerTray is a simple Hacker News Linux application that lets you view top HN stories in your System Tray. It relies on appindicator, so it is not guaranteed to work on all systems. It also provides a Gtk StatusIcon fallback in case AppIndicator is not available.', keywords='hacker news hn tray system tray icon hackertray',