Migrate update interval from hours to minutes (#8005)

This is a bit of a hack so that we have "1" available for "global" (instead of 1 hour) because we cannot change sql default values.
This commit is contained in:
Hans-Peter Lehmann
2025-09-22 22:45:16 +02:00
committed by GitHub
parent 6f7f9b2914
commit 198c151a22
7 changed files with 23 additions and 15 deletions

View File

@ -59,13 +59,13 @@
<string-array name="feed_refresh_interval_values">
<item>0</item>
<item>1</item>
<item>2</item>
<item>4</item>
<item>8</item>
<item>12</item>
<item>24</item>
<item>72</item>
<item>60</item>
<item>120</item>
<item>240</item>
<item>480</item>
<item>720</item>
<item>1440</item>
<item>4320</item>
</string-array>
<string-array name="globalNewEpisodesActionItems">

View File

@ -14,7 +14,7 @@
android:key="prefAutoUpdateIntervall"
android:title="@string/feed_refresh_title"
android:summary="@string/feed_refresh_sum"
android:defaultValue="12"/>
android:defaultValue="720"/>
<de.danoeh.antennapod.ui.preferences.preference.MaterialListPreference
android:entryValues="@array/globalNewEpisodesActionValues"
android:entries="@array/globalNewEpisodesActionItems"