diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 09a48fc9..a5796898 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -205,7 +205,7 @@ android:enabled="true" /> diff --git a/res/drawable-hdpi/dashclock.png b/res/drawable-hdpi/dashclock.png index 70e3e06e..394e58e9 100644 Binary files a/res/drawable-hdpi/dashclock.png and b/res/drawable-hdpi/dashclock.png differ diff --git a/res/drawable-xhdpi/dashclock.png b/res/drawable-xhdpi/dashclock.png index 8ba0c9ff..65ebe3c1 100644 Binary files a/res/drawable-xhdpi/dashclock.png and b/res/drawable-xhdpi/dashclock.png differ diff --git a/res/drawable/s_dashclock.svg b/res/drawable/s_dashclock.svg new file mode 100644 index 00000000..f4be84f9 --- /dev/null +++ b/res/drawable/s_dashclock.svg @@ -0,0 +1,1071 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/src/org/fox/ttrss/Dashclock.java b/src/org/fox/ttrss/DashClock.java similarity index 94% rename from src/org/fox/ttrss/Dashclock.java rename to src/org/fox/ttrss/DashClock.java index 041a45bd..26c1ecbb 100644 --- a/src/org/fox/ttrss/Dashclock.java +++ b/src/org/fox/ttrss/DashClock.java @@ -15,7 +15,7 @@ import com.google.gson.JsonObject; public class DashClock extends DashClockExtension { - private static final String TAG = "TTRSS-DC"; + private final String TAG = this.getClass().getSimpleName(); protected SharedPreferences m_prefs; @@ -86,7 +86,7 @@ public class DashClock extends DashClockExtension { updatedData.status(String.valueOf(m_unreadCount)); updatedData.expandedTitle(m_unreadCount + " unread articles"); - updatedData.expandedBody(getString(R.string.app_name)); + //updatedData.expandedBody(getString(R.string.app_name)); updatedData.clickIntent(new Intent().setClassName("org.fox.ttrss", "org.fox.ttrss.OnlineActivity")); @@ -98,7 +98,7 @@ public class DashClock extends DashClockExtension { } } - Log.d(TAG, "unread count is: " + m_unreadCount); + //Log.d(TAG, "unread count is: " + m_unreadCount); } };