mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-12-01 12:31:45 +00:00
Added auto-queue preference
This commit is contained in:
@ -169,6 +169,8 @@
|
|||||||
<string name="add_feed_label">Add feed</string>
|
<string name="add_feed_label">Add feed</string>
|
||||||
<string name="miro_feed_added">Feed is being added</string>
|
<string name="miro_feed_added">Feed is being added</string>
|
||||||
<string name="player_buffering_msg">Buffering</string>
|
<string name="player_buffering_msg">Buffering</string>
|
||||||
|
<string name="pref_autoQueue_title">Auto-queue</string>
|
||||||
|
<string name="pref_autoQueue_sum">Add an episode to the queue after it has been downloaded.</string>
|
||||||
|
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
@ -30,6 +30,7 @@
|
|||||||
android:key="prefMobileUpdate"
|
android:key="prefMobileUpdate"
|
||||||
android:summary="@string/pref_mobileUpdate_sum"
|
android:summary="@string/pref_mobileUpdate_sum"
|
||||||
android:title="@string/pref_mobileUpdate_title" />
|
android:title="@string/pref_mobileUpdate_title" />
|
||||||
|
<CheckBoxPreference android:summary="@string/pref_autoQueue_sum" android:defaultValue="true" android:key="prefAutoQueue" android:title="@string/pref_autoQueue_title"/>
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
<PreferenceCategory android:title="@string/flattr_settings_label" >
|
<PreferenceCategory android:title="@string/flattr_settings_label" >
|
||||||
<PreferenceScreen
|
<PreferenceScreen
|
||||||
|
|||||||
@ -28,6 +28,7 @@ public class PodcastApp extends Application implements
|
|||||||
public static final String PREF_DOWNLOAD_MEDIA_ON_WIFI_ONLY = "prefDownloadMediaOnWifiOnly";
|
public static final String PREF_DOWNLOAD_MEDIA_ON_WIFI_ONLY = "prefDownloadMediaOnWifiOnly";
|
||||||
public static final String PREF_UPDATE_INTERVALL = "prefAutoUpdateIntervall";
|
public static final String PREF_UPDATE_INTERVALL = "prefAutoUpdateIntervall";
|
||||||
public static final String PREF_MOBILE_UPDATE = "prefMobileUpdate";
|
public static final String PREF_MOBILE_UPDATE = "prefMobileUpdate";
|
||||||
|
public static final String PREF_AUTO_QUEUE = "prefAutoQueue";
|
||||||
|
|
||||||
private static float LOGICAL_DENSITY;
|
private static float LOGICAL_DENSITY;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user