Tsacdop è un lettore di podcast sviluppato con Flutter, un'app pulita, semplicemente bella e amichevole, che è anche gratuita e open source. https://funkwhale.it
Aller au fichier
dependabot[bot] 1354201440
Bump jmespath from 1.4.0 to 1.6.1 in /android (#65)
Bumps [jmespath](https://github.com/trevorrowe/jmespath.rb) from 1.4.0 to 1.6.1.
- [Release notes](https://github.com/trevorrowe/jmespath.rb/releases)
- [Changelog](https://github.com/jmespath/jmespath.rb/blob/main/CHANGELOG.md)
- [Commits](https://github.com/trevorrowe/jmespath.rb/compare/v1.4.0...v1.6.1)

---
updated-dependencies:
- dependency-name: jmespath
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-31 18:34:35 +08:00
.github Update github action conf. 2021-02-27 02:14:31 +08:00
.vscode Update. 2021-03-15 23:08:34 +08:00
android Bump jmespath from 1.4.0 to 1.6.1 in /android (#65) 2022-07-31 18:34:35 +08:00
assets Turkish lang support, thanks to Murat. 2021-02-10 01:03:35 +08:00
fastlane v0.6.0 Release 2021-02-27 02:00:29 +08:00
ios Update language. 2021-03-11 22:55:31 +08:00
lib null safety & material you (#64) 2022-07-31 18:34:24 +08:00
preview [ImgBot] Optimize images 2020-07-31 18:26:22 +00:00
test Switch to fedora. 2020-10-28 20:10:43 +08:00
tool Minor change. 2021-01-30 17:21:04 +08:00
.gitignore Update ignore file. 2021-02-11 12:45:39 +08:00
.metadata Switch to fedora. 2020-10-28 20:10:43 +08:00
CHANGELOG.md v0.6.0 Release 2021-02-27 02:00:29 +08:00
LICENSE Switch to fedora. 2020-10-28 20:10:43 +08:00
README.md Minor README proof-reading update. 2021-12-04 10:51:22 +02:00
pubspec.yaml null safety & material you (#64) 2022-07-31 18:34:24 +08:00

README.md

Tsacdop Banner

github action GitHub Release Github Downloads Localizely style: effective dart License badge fdroid install

About

Enjoy podcasts with Tsacdop.

Tsacdop is a podcast player developed with Flutter, a clean, simply beautiful, and friendly app, which is also free and open source.

Credit to the Flutter team and all involved plugins, especially webfeed, Just_Audio, and Provider.

The podcast search engine is powered by, ListenNotes & PodcastIndex.

Features

  • Podcast group management
  • Playlists support
  • Sleep timer / speed setting
  • OPML file export and import
  • Auto-syncing in the background
  • Listening and subscription history record
  • Dark mode / accent color
  • Download for offline play
  • Auto-download new episodes / auto-delete outdated downloads
  • Settings backup
  • Skip silence
  • Boost volume

More to come...

Preview

Home Page Group Podcast Episode Dark Mode

Localization

Please Email me you'd like to contribute to support more languages!

Credit to Localizely for kind support to open source projects.

English

Chinese Simplified

French

Spanish

Portuguese

License

Tsacdop is licensed under the GPL v3.0 license.

Build

  1. If you don't have Flutter SDK installed; Please visit the official Flutter site.
  2. Fetch the latest source code from the master branch.
git clone https://github.com/stonega/tsacdop.git
  1. Add api search api configure file.

Tsacdop uses the ListenNotes API 1.0 pro to search for podcasts, which is not free, so I can not expose the API key in the repo. If you want to build the app, you need to create a new file named .env.dart in the lib folder. Add the following code to .env.dart. If you don't have a ListenNotes api key, keep the apiKey empty like ''. Then the app will only support the PodcastIndex search. You can get your own ListenNotes API key on ListenNotes. Remember that you need to get a pro plan API because the basic plan doesn't provide an rss link for the search result.

final environment = {"apiKey":""};
  1. Run the app with Android Studio or Visual Studio. Or the command line.
flutter pub get
flutter run

Contribute

If you have an issue or found a bug, please raise a GitHub issue. Pull requests are also welcome.

Architecture

Plugins

  • Local storage
    • sqflite
    • shared_preferences
  • Audio
    • just_audio
    • audio_service
  • State management
    • provider
  • Download
    • flutter_downloader
  • Background task
    • workmanager

Directory Structure

UI
src
└──home
   ├──home.dart [Homepage]
   ├──searc_podcast.dart [Search Page]
   └──playlist.dart [Playlist Page]
└──podcasts
   ├──podcast_manage.dart [Group Page]
   └──podcast_detail.dart [Podcast Page]
└──episodes
   └──episode_detail.dart [Episode Page]
└──settings
   └──setting.dart [Setting Page]

STATE
src
└──state
   ├──audio_state.dart [Audio State]
   ├──download_state.dart [Episode Download]
   ├──podcast_group.dart [Podcast Groups]
   ├──refresh_podcast.dart [Episode Refresh]
   └──setting_state.dart [Setting]

Service
src
└──service
   ├──api_service.dart [Podcast Search]
   ├──gpodder_api.dart [Gpodder intergate]
   └──ompl_builde.dart [OMPL export]

Known Issue

  • Playlist is unstable

Contact

You can reach out to me directly at tsacdop.app@gmail.com.

Or you can join our Telegram Group.

Getting Started with Flutter

This project is a starting point for a Flutter application.

Here are a few resources to get you started if this is your first Flutter project:

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.