minor updates
This commit is contained in:
parent
43b891b73d
commit
7211c7b03f
|
@ -28,7 +28,7 @@ The app requests the following privacy-relevant Android permissions:
|
|||
|
||||
- The donation system: PodVinci uses Open Collective, offered by Open Collective Inc (USA) & Open Collective Europe ASBL (Belgium). When you make a donation, these entities get access to certain data. For more information, see [Open Collective’s privacy policy](https://opencollective.com/privacypolicy).
|
||||
- The website: PodVinci’s website is hosted via GitHub Pages. [GitHub’s privacy policy](https://docs.github.com/en/github/site-policy/github-privacy-statement#github-pages) notices that “GitHub may collect User Personal Information from visitors to your GitHub Pages website, including logs of visitor IP addresses, to comply with legal obligations, and to maintain the security and integrity of the Website and the Service.” The website does not store any cookies on your machine, and no 3rd party tracking (analytics) or other services are used.
|
||||
- The forum: PodVinci’s forum uses the Discourse software, hosted by the core team. Please see the [forum’s privacy policy](https://github.com/XilinJia/PodVinci/PrivacyPolicy.md) for which data is concerned.
|
||||
- The forum: PodVinci’s forum uses the Discourse software, hosted by the core team. Please see the [forum’s privacy policy](https://github.com/XilinJia/PodVinci/blob/main/PrivacyPolicy.md) for which data is concerned.
|
||||
|
||||
## What data the PodVinci core team may have access to
|
||||
|
||||
|
|
|
@ -5,3 +5,8 @@ PodVinci is an open source podcast manager/player project.
|
|||
This is based on a fork from the popular project AntennaPod (https://github.com/AntennaPod/AntennaPod) as of Feb 5 2024.
|
||||
|
||||
This project converted all codes from Java to Kotlin, updated most dependencies, and most importantly upgraded the media player to androidx.media3, and added mechanism of AudioOffloadMode which is supposed to be kind to device battery. Build is also upgraded to target Android 14.
|
||||
|
||||
## License
|
||||
|
||||
AntennaPod is licensed under the GNU General Public License (GPL-3.0). You can find the license text in the LICENSE file.
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ class AboutFragment : PreferenceFragmentCompat() {
|
|||
}
|
||||
findPreference<Preference>("about_privacy_policy")!!.onPreferenceClickListener =
|
||||
Preference.OnPreferenceClickListener { preference: Preference? ->
|
||||
openInBrowser(requireContext(), "https://github.com/XilinJia/PodVinci/PrivacyPolicy.md")
|
||||
openInBrowser(requireContext(), "https://github.com/XilinJia/PodVinci/blob/main/PrivacyPolicy.md")
|
||||
true
|
||||
}
|
||||
findPreference<Preference>("about_licenses")!!.onPreferenceClickListener =
|
||||
|
|
|
@ -9,20 +9,20 @@
|
|||
android:title="@string/podvinci_version"
|
||||
android:icon="@drawable/ic_star"
|
||||
android:summary="1.7.2 (asd8qs)"/>
|
||||
<Preference
|
||||
android:key="about_contributors"
|
||||
android:icon="@drawable/ic_settings"
|
||||
android:summary="@string/contributors_summary"
|
||||
android:title="@string/contributors"/>
|
||||
<Preference
|
||||
android:key="about_privacy_policy"
|
||||
android:icon="@drawable/ic_questionmark"
|
||||
android:summary="www.podvinci.org/privacy"
|
||||
android:summary="PodVinci PrivacyPolicy.md"
|
||||
android:title="@string/privacy_policy"/>
|
||||
<Preference
|
||||
android:key="about_licenses"
|
||||
android:icon="@drawable/ic_info"
|
||||
android:summary="@string/licenses_summary"
|
||||
android:title="@string/licenses"/>
|
||||
<Preference
|
||||
android:key="about_contributors"
|
||||
android:icon="@drawable/ic_settings"
|
||||
android:summary="@string/contributors_summary"
|
||||
android:title="@string/contributors"/>
|
||||
|
||||
</PreferenceScreen>
|
||||
|
|
Loading…
Reference in New Issue