Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
2.39
-----
* Unlocked all styles, including the pure-black AMOLED style, for everyone now that Simplenote Sustainer is discontinued [#1771](https://github.com/Automattic/simplenote-android/issues/1771) [#1661](https://github.com/Automattic/simplenote-android/issues/1661)

2.38
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public static CharSequence versionInfo() {
}

public static boolean isPremium(Context context) {
return getPrefs(context).getBoolean(PREF_PREMIUM, false);
return getPrefs(context).getBoolean(PREF_PREMIUM, true);
}

public static void setIsPremium(Context context, boolean isPremium) {
Expand Down
2 changes: 1 addition & 1 deletion Simplenote/src/main/res/xml/preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
android:key="pref_key_style"
android:summary="%s"
android:title="@string/style"
app:isPreferenceVisible="false"
app:isPreferenceVisible="true"
tools:summary="@string/style_classic">
</Preference>

Expand Down