├── .distignore ├── .dockerignore ├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── workflows │ ├── docker-image.yml │ ├── release-beta.yml │ └── release-wordpress.yml ├── .gitignore ├── .gitmodules ├── .php-cs-fixer.dist.php ├── .prettierrc ├── Dockerfile ├── Makefile ├── README.md ├── bin ├── code-coverage.sh ├── docker-entry.sh ├── docker-setup.sh ├── install-wp-tests.sh ├── podlove.mp3 ├── release.sh ├── template_ref.erb ├── template_ref.rb ├── template_ref_json.php ├── uadetect.php ├── update-opawg.sh ├── update_pwp4.sh └── workspace.js ├── bootstrap ├── autoload.php ├── bootstrap.php └── constants.php ├── changelog.txt ├── client ├── .tool-versions ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ ├── assets │ │ ├── 0_0.png │ │ ├── 0_1.png │ │ ├── 10_0.png │ │ ├── 10_1.png │ │ ├── 1_0.png │ │ ├── 1_1.png │ │ ├── index.d.ts │ │ ├── pd.png │ │ └── pdmark.png │ ├── client.ts │ ├── components │ │ ├── button │ │ │ └── Button.vue │ │ ├── combobox │ │ │ └── Combobox.vue │ │ ├── icons │ │ │ └── Avatar.vue │ │ ├── modal │ │ │ └── Modal.vue │ │ ├── module │ │ │ └── Module.vue │ │ ├── popover │ │ │ └── Popover.vue │ │ ├── steps │ │ │ └── Steps.vue │ │ ├── tabs │ │ │ ├── Tab.vue │ │ │ ├── TabsContainer.vue │ │ │ └── index.ts │ │ ├── tag │ │ │ └── Tag.vue │ │ └── tooltip │ │ │ └── Tooltip.vue │ ├── lib │ │ ├── api.ts │ │ ├── array.ts │ │ ├── auphonic.api.ts │ │ ├── chapters.ts │ │ ├── license.ts │ │ ├── normalplaytime.ts │ │ ├── popper.ts │ │ ├── timestamp.ts │ │ └── wordpress.ts │ ├── modules │ │ ├── auphonic │ │ │ ├── Auphonic.vue │ │ │ ├── components │ │ │ │ ├── FileChooser.vue │ │ │ │ ├── Logo.vue │ │ │ │ ├── ManageProductionForm.vue │ │ │ │ ├── SelectPreset.vue │ │ │ │ ├── SelectProduction.vue │ │ │ │ ├── StartScreen.vue │ │ │ │ ├── WebhookToggle.vue │ │ │ │ └── production_form │ │ │ │ │ └── DonePage.vue │ │ │ └── index.ts │ │ ├── chapters │ │ │ ├── Chapters.vue │ │ │ ├── components │ │ │ │ ├── Export.vue │ │ │ │ ├── Form.vue │ │ │ │ └── Import.vue │ │ │ └── index.ts │ │ ├── contributors │ │ │ ├── Contributors.vue │ │ │ ├── components │ │ │ │ ├── AddContribution.vue │ │ │ │ └── Contribution.vue │ │ │ └── index.ts │ │ ├── description │ │ │ ├── Description.vue │ │ │ ├── components │ │ │ │ ├── EpisodeContent.vue │ │ │ │ ├── EpisodeNumber.vue │ │ │ │ ├── EpisodePoster.vue │ │ │ │ ├── EpisodeSubtitle.vue │ │ │ │ ├── EpisodeSummary.vue │ │ │ │ ├── EpisodeTitle.vue │ │ │ │ └── EpisodeType.vue │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── license │ │ │ ├── License.vue │ │ │ ├── components │ │ │ │ ├── LicenseName.vue │ │ │ │ ├── LicenseSelector.vue │ │ │ │ ├── LicenseSelectorButton.vue │ │ │ │ ├── LicenseUrl.vue │ │ │ │ └── LicenseView.vue │ │ │ └── index.ts │ │ ├── mediafiles │ │ │ ├── MediaFiles.vue │ │ │ ├── components │ │ │ │ ├── AssetsEmptyState.vue │ │ │ │ ├── AssetsTable.vue │ │ │ │ ├── MediaSlug.vue │ │ │ │ └── MediaUpload.vue │ │ │ └── index.ts │ │ ├── related │ │ │ ├── RelatedEpisodes.vue │ │ │ └── index.ts │ │ ├── shows │ │ │ ├── ShowSelect.vue │ │ │ └── index.ts │ │ ├── soundbite │ │ │ ├── Soundbite.vue │ │ │ ├── components │ │ │ │ ├── Clear.vue │ │ │ │ └── Form.vue │ │ │ └── index.ts │ │ └── transcripts │ │ │ ├── Transcripts.vue │ │ │ ├── components │ │ │ ├── Delete.vue │ │ │ ├── Export.vue │ │ │ ├── Import.vue │ │ │ ├── List.vue │ │ │ └── Voices.vue │ │ │ └── index.ts │ ├── plugins │ │ └── translations.ts │ ├── sagas │ │ ├── admin.sagas.ts │ │ ├── api.ts │ │ ├── auphonic.api.ts │ │ ├── auphonic.sagas.ts │ │ ├── chapters.sagas.ts │ │ ├── contributors.sagas.ts │ │ ├── episode.sagas.ts │ │ ├── helper.ts │ │ ├── lifecycle.sagas.ts │ │ ├── mediafiles.sagas.ts │ │ ├── notification.saga.ts │ │ ├── podcast.sagas.ts │ │ ├── relatedEpisodes.sagas.ts │ │ ├── shows.sagas.ts │ │ ├── transcripts.sagas.ts │ │ └── wordpress.sagas.ts │ ├── store │ │ ├── admin.store.ts │ │ ├── auphonic.store.ts │ │ ├── chapters.store.ts │ │ ├── contributors.store.ts │ │ ├── episode.store.ts │ │ ├── index.ts │ │ ├── lifecycle.store.ts │ │ ├── mediafiles.store.ts │ │ ├── notification.store.ts │ │ ├── podcast.store.ts │ │ ├── post.store.ts │ │ ├── progress.store.ts │ │ ├── reducers.ts │ │ ├── relatedEpisodes.store.ts │ │ ├── runtime.store.ts │ │ ├── selectors.ts │ │ ├── settings.store.ts │ │ ├── shows.store.ts │ │ ├── transcripts.store.ts │ │ └── wordpress.store.ts │ ├── style.css │ └── types │ │ ├── chapters.types.ts │ │ ├── contributors.types.ts │ │ ├── episode.types.ts │ │ ├── license.types.ts │ │ ├── relatedEpisodes.types.ts │ │ ├── shows.types.ts │ │ └── transcripts.types.ts ├── tailwind.config.js ├── tsconfig.json ├── typings │ ├── podlove.d.ts │ ├── redux-actions.d.ts │ └── vue-popper.d.ts └── vite.config.js ├── composer.json ├── composer.lock ├── config └── php-scoper │ ├── matomo.inc.php │ ├── monolog.inc.php │ ├── piwik.inc.php │ ├── psr.inc.php │ └── twig.inc.php ├── css ├── about.css ├── admin-font.css ├── admin.css ├── dc.css └── frontend.css ├── data ├── .gitkeep ├── opawg.json └── podlove_v2_schema.json ├── devbox.d └── php │ ├── php-fpm.conf │ └── php.ini ├── devbox.json ├── devbox.lock ├── docker-compose.yml ├── fonts ├── Podlove.dev.svg ├── Podlove.eot ├── Podlove.svg ├── Podlove.ttf └── Podlove.woff ├── images ├── about │ ├── home.png │ └── network.png ├── cc │ ├── 0_0.png │ ├── 0_1.png │ ├── 10_0.png │ ├── 10_1.png │ ├── 1_0.png │ ├── 1_1.png │ ├── pd.png │ └── pdmark.png ├── logo │ └── podlove-publisher-icon-500.png └── podlove_header.jpg ├── includes ├── about.php ├── api │ ├── admin │ │ └── onboarding.php │ ├── analytics.php │ ├── api.php │ ├── chapters.php │ ├── episodes.php │ ├── episodes │ │ ├── contributions.php │ │ └── related_episodes.php │ ├── feeds.php │ ├── podcast.php │ ├── show.php │ └── tools.php ├── auto_post_titles.php ├── cache.php ├── capabilities.php ├── chapters.php ├── compatibility.php ├── db_migration.php ├── deprecations.php ├── detect_duplicate_slugs.php ├── donation_banner.html.php ├── donation_banner.img.src ├── donation_banner.php ├── downloads.php ├── episode_number_column.php ├── episode_number_quick_edit_form.php ├── explicit_content.php ├── extras.php ├── feed_discovery.php ├── frontend_styles.php ├── http.php ├── images.php ├── import.php ├── jetpack.php ├── license.php ├── merge_episodes.php ├── modules.php ├── no_enclosure_autodiscovery.php ├── permalinks.php ├── podlove-web-player-5.php ├── podlove_data_js_adapter.php ├── recording_date.php ├── redirects.php ├── request_id_rehash.php ├── require_curl.php ├── screen_options.php ├── scripts_and_styles.php ├── search.php ├── setup.php ├── setup_wizard.php ├── system_report.php ├── template_pages.php ├── templates.php ├── theme_helper.php ├── trash.php ├── verify_itunes_category.php ├── webhooks.php └── wp_rocket.php ├── js ├── .tool-versions ├── admin │ ├── ace │ │ ├── ace.js │ │ ├── mode-twig.js │ │ ├── theme-chrome.js │ │ └── theme-github.js │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── chosen.jquery.min.js │ │ ├── chosen.min.css │ │ ├── chosenImage.css │ │ └── chosenImage.jquery.js │ ├── cornify.js │ ├── crossfilter.min.js │ ├── d3.min.js │ ├── dc.js │ ├── jquery-ui │ │ └── css │ │ │ └── smoothness │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui.css │ ├── spectrum │ │ ├── spectrum.css │ │ └── spectrum.js │ ├── template.js │ └── tools │ │ └── useragent.js ├── axios.min.js ├── jquery.validate.min.js ├── package-lock.json ├── package.json ├── src │ ├── admin.js │ ├── admin │ │ ├── dashboard_asset_validation.js │ │ ├── dashboard_feed_validation.js │ │ ├── episode.js │ │ ├── episode_asset_settings.js │ │ ├── feed_settings.js │ │ ├── jobs.js │ │ ├── jquery.count_characters.js │ │ ├── license.js │ │ ├── md5.js │ │ ├── media.js │ │ ├── podlove_data_table.js │ │ ├── post_title_autogenerate.js │ │ ├── protected_feed.js │ │ └── timeago.jquery.js │ ├── analytics │ │ ├── common.js │ │ ├── episode.js │ │ └── totals.js │ ├── app.js │ ├── components │ │ ├── AnalyticsDatePicker.vue │ │ ├── JobsDashboard.vue │ │ ├── Shownotes.vue │ │ ├── ShownotesEntry.vue │ │ ├── Slacknotes.vue │ │ ├── icons │ │ │ ├── CheveronDown.vue │ │ │ ├── CheveronUp.vue │ │ │ ├── Close.vue │ │ │ ├── DotsVertical.vue │ │ │ ├── Edit.vue │ │ │ ├── Eye.vue │ │ │ ├── EyeOff.vue │ │ │ ├── Image.vue │ │ │ ├── Link.vue │ │ │ ├── Menu.vue │ │ │ ├── Refresh.vue │ │ │ └── Type.vue │ │ ├── shownotes │ │ │ ├── link-compact.vue │ │ │ ├── link-unfurling.vue │ │ │ ├── link.vue │ │ │ ├── sn-button.vue │ │ │ ├── sn-card.vue │ │ │ ├── suggestion.vue │ │ │ └── topic.vue │ │ └── temp.xml │ └── lib │ │ ├── duration_errors.js │ │ ├── guid.js │ │ └── timestamp.js └── webpack.mix.js ├── lib ├── ajax │ ├── ajax.analytics_global_total_downloads_by_show.html.php │ ├── ajax.php │ ├── file_controller.php │ └── template_controller.php ├── analytics │ ├── download_intent_cleanup.php │ ├── download_sums_calculator.php │ ├── episode_download_average.php │ └── salt_shaker.php ├── api │ ├── error.php │ ├── permissions.php │ ├── response.php │ └── validation.php ├── authentication.php ├── cache │ ├── http_header_validator.php │ └── template_cache.php ├── chapters_manager.php ├── comment │ └── comment.php ├── cron.php ├── custom_guid.php ├── delete_head_requests.php ├── dom_document_fragment.php ├── downloads.php ├── downloads_list_data.php ├── downloads_list_table.php ├── duplicate_post.php ├── duration.php ├── episode_asset_list_table.php ├── feed_list_table.php ├── feeds.php ├── feeds │ ├── base.php │ ├── chapters.php │ └── rss.php ├── file_type_list_table.php ├── form │ └── input │ │ ├── builder.php │ │ ├── div_wrapper.php │ │ ├── table_wrapper.php │ │ └── wrapper.php ├── geo_ip.php ├── has_page_documentation_trait.php ├── helper.php ├── http │ └── curl.php ├── jobs │ ├── counting_job.php │ ├── cron_job_runner.php │ ├── download_intent_cleanup_job.php │ ├── download_timed_aggregator_job.php │ ├── job_cleaner.php │ ├── job_trait.php │ ├── request_id_rehash_job.php │ ├── tools_section.php │ ├── tools_section_cron_diagnostics.php │ └── user_agent_refresh_job.php ├── list_table.php ├── log.php ├── model │ ├── asset_assignment.php │ ├── base.php │ ├── download_intent.php │ ├── download_intent_clean.php │ ├── episode.php │ ├── episode_asset.php │ ├── feed.php │ ├── file_type.php │ ├── geo_area.php │ ├── geo_area_name.php │ ├── image.php │ ├── job.php │ ├── keeps_blog_reference_trait.php │ ├── licensable.php │ ├── license.php │ ├── media_file.php │ ├── network_trait.php │ ├── podcast.php │ ├── template.php │ ├── template_assignment.php │ └── user_agent.php ├── modules │ ├── affiliate │ │ ├── affiliate.php │ │ └── podcast_affiliate_settings_tab.php │ ├── analytics_heartbeat │ │ ├── analytics_heartbeat.php │ │ └── model │ │ │ └── heartbeat.php │ ├── asset_validation │ │ └── asset_validation.php │ ├── auphonic │ │ ├── api_wrapper.php │ │ ├── auphonic.php │ │ ├── episode_enhancer.php │ │ └── rest_api.php │ ├── automatic_numbering │ │ └── automatic_numbering.php │ ├── base.php │ ├── categories │ │ └── categories.php │ ├── contributors │ │ ├── contributor_group_list_table.php │ │ ├── contributor_list_table.php │ │ ├── contributor_repair.php │ │ ├── contributor_role_list_table.php │ │ ├── contributors.php │ │ ├── gender_stats.php │ │ ├── jobs │ │ │ ├── podcast_import_contributor_episode_contributions_job.php │ │ │ ├── podcast_import_contributor_groups_job.php │ │ │ ├── podcast_import_contributor_roles_job.php │ │ │ ├── podcast_import_contributor_show_contributions_job.php │ │ │ └── podcast_import_contributors_job.php │ │ ├── js │ │ │ └── admin.js │ │ ├── model │ │ │ ├── contribution_gender_statistics.php │ │ │ ├── contributor.php │ │ │ ├── contributor_group.php │ │ │ ├── contributor_role.php │ │ │ ├── default_contribution.php │ │ │ ├── episode_contribution.php │ │ │ └── show_contribution.php │ │ ├── rest_api.php │ │ ├── settings │ │ │ ├── contributor_defaults.php │ │ │ ├── contributor_settings.php │ │ │ ├── generic_entity_settings.php │ │ │ ├── podcast_contributors_settings_tab.php │ │ │ └── tab │ │ │ │ ├── contributors.php │ │ │ │ ├── defaults.php │ │ │ │ ├── groups.php │ │ │ │ └── roles.php │ │ ├── shortcodes.php │ │ ├── template │ │ │ ├── avatar.php │ │ │ ├── contributor.php │ │ │ └── contributor_group.php │ │ ├── template_extensions.php │ │ ├── templates │ │ │ ├── _contributor-table-flattr.twig │ │ │ ├── _contributor-table-row.twig │ │ │ ├── avatar.twig │ │ │ ├── contributor-comma-separated.twig │ │ │ ├── contributor-list.twig │ │ │ ├── contributor-table.twig │ │ │ ├── podcast-contributor-list.twig │ │ │ └── podcast-contributor-table.twig │ │ └── views │ │ │ └── form_table.php │ ├── external_analytics │ │ └── external_analytics.php │ ├── fyyd │ │ └── fyyd.php │ ├── import_export │ │ ├── export │ │ │ ├── podcast_exporter.php │ │ │ └── tracking_exporter.php │ │ ├── import │ │ │ ├── podcast_import_assets_job.php │ │ │ ├── podcast_import_episodes_job.php │ │ │ ├── podcast_import_feeds_job.php │ │ │ ├── podcast_import_filetypes_job.php │ │ │ ├── podcast_import_job_table_trait.php │ │ │ ├── podcast_import_job_trait.php │ │ │ ├── podcast_import_mediafiles_job.php │ │ │ ├── podcast_import_options_job.php │ │ │ ├── podcast_import_templates_job.php │ │ │ ├── podcast_import_tracking_area_job.php │ │ │ ├── podcast_import_tracking_area_name_job.php │ │ │ ├── podcast_import_user_agents_job.php │ │ │ ├── podcast_importer.php │ │ │ ├── podcast_importer_job.php │ │ │ ├── tracking_importer.php │ │ │ └── tracking_importer_job.php │ │ ├── import_export.php │ │ └── js │ │ │ └── import.js │ ├── logging │ │ ├── log_table.php │ │ ├── logging.php │ │ ├── wpdbhandler.php │ │ └── wpmail_handler.php │ ├── networks │ │ ├── admin_bar_menu.php │ │ ├── css │ │ │ └── admin.css │ │ ├── model │ │ │ ├── network.php │ │ │ └── podcast_list.php │ │ ├── networks.php │ │ ├── podcast_list_list_table.php │ │ ├── podcast_list_table.php │ │ ├── settings │ │ │ ├── dashboard.php │ │ │ ├── podcast_lists.php │ │ │ └── templates.php │ │ └── template │ │ │ ├── network.php │ │ │ └── podcast_list.php │ ├── notifications │ │ ├── mailer_job.php │ │ ├── notifications.php │ │ └── settings_tab.php │ ├── oembed │ │ └── oembed.php │ ├── onboarding │ │ ├── css │ │ │ └── podlove-onboarding-banner.css │ │ ├── onboarding.php │ │ ├── rest_api.php │ │ └── settings │ │ │ └── onboarding_page.php │ ├── open_graph │ │ └── open_graph.php │ ├── plus │ │ ├── api.php │ │ ├── feed_proxy.php │ │ ├── feed_pusher.php │ │ ├── global_feed_settings.php │ │ ├── image_generator.php │ │ ├── module_settings.php │ │ └── plus.php │ ├── podlove_web_player │ │ ├── media_tag_renderer.php │ │ ├── player_printer_interface.php │ │ ├── player_v3 │ │ │ └── player_media_files.php │ │ ├── player_v4 │ │ │ ├── dist │ │ │ │ ├── 4.5.10 │ │ │ │ │ ├── audio-tab.js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── chapters-tab.js │ │ │ │ │ ├── files-tab.js │ │ │ │ │ ├── info-tab.js │ │ │ │ │ ├── player.js │ │ │ │ │ ├── runtime.js │ │ │ │ │ ├── share-tab.js │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── styles.js │ │ │ │ │ ├── transcripts-tab.js │ │ │ │ │ └── vendor.js │ │ │ │ ├── README.md │ │ │ │ ├── embed.js │ │ │ │ ├── extensions │ │ │ │ │ └── external-events.js │ │ │ │ ├── package.json │ │ │ │ ├── share.html │ │ │ │ └── share.js │ │ │ ├── html5printer.php │ │ │ ├── module.php │ │ │ └── pwp4.js │ │ ├── player_v5 │ │ │ └── module.php │ │ ├── podigee │ │ │ ├── html5printer.php │ │ │ └── module.php │ │ └── podlove_web_player.php │ ├── protected_feed │ │ └── protected_feed.php │ ├── pubsubhubbub │ │ └── pubsubhubbub.php │ ├── readme.md │ ├── related_episodes │ │ ├── js │ │ │ └── admin.js │ │ ├── model │ │ │ └── episode_relation.php │ │ ├── related_episodes.php │ │ ├── shortcodes.php │ │ ├── template_extensions.php │ │ └── templates │ │ │ └── related-episodes-list.twig │ ├── seasons │ │ ├── css │ │ │ └── admin.css │ │ ├── js │ │ │ └── admin.js │ │ ├── model │ │ │ ├── season.php │ │ │ ├── season_map.php │ │ │ ├── seasons_issue.php │ │ │ └── seasons_validator.php │ │ ├── podcast_import_seasons_job.php │ │ ├── seasons.php │ │ ├── settings │ │ │ ├── help │ │ │ │ └── settings.php │ │ │ ├── season_list_table.php │ │ │ └── settings.php │ │ ├── template │ │ │ └── season.php │ │ └── template_extensions.php │ ├── shownotes │ │ ├── model │ │ │ └── entry.php │ │ ├── rest_api.php │ │ ├── shownotes.php │ │ ├── template │ │ │ └── entry.php │ │ ├── template_extensions.php │ │ └── twig │ │ │ ├── plain-html-list-grouped.twig │ │ │ ├── plain-html-list.twig │ │ │ └── shownotes.twig │ ├── shows │ │ ├── js │ │ │ └── admin.js │ │ ├── model │ │ │ └── show.php │ │ ├── rest_api.php │ │ ├── settings │ │ │ ├── help │ │ │ │ └── settings.php │ │ │ ├── settings.php │ │ │ └── show_list_table.php │ │ ├── shows.php │ │ ├── template │ │ │ └── show.php │ │ └── template_extensions.php │ ├── slack_shownotes │ │ ├── message.php │ │ ├── settings │ │ │ └── settings.php │ │ └── slack_shownotes.php │ ├── social │ │ ├── admin.css │ │ ├── data │ │ │ └── services.yml │ │ ├── images │ │ │ └── icons │ │ │ │ ├── 500px.png │ │ │ │ ├── aboutme.png │ │ │ │ ├── adn.png │ │ │ │ ├── amazon.svg │ │ │ │ ├── amazonwishlist.png │ │ │ │ ├── auphonic.png │ │ │ │ ├── bandcamp.png │ │ │ │ ├── bitbucket.png │ │ │ │ ├── bitcoin.png │ │ │ │ ├── bluesky.svg │ │ │ │ ├── deviantart.png │ │ │ │ ├── diaspora.png │ │ │ │ ├── dogecoin.png │ │ │ │ ├── dribbble.png │ │ │ │ ├── email.png │ │ │ │ ├── facebook.png │ │ │ │ ├── fediverse.png │ │ │ │ ├── flattr.png │ │ │ │ ├── flickr.png │ │ │ │ ├── foursquare.png │ │ │ │ ├── friendica.png │ │ │ │ ├── genericwishlist.png │ │ │ │ ├── github.png │ │ │ │ ├── gittip.png │ │ │ │ ├── googleplus.png │ │ │ │ ├── instagram.png │ │ │ │ ├── jabber.png │ │ │ │ ├── lastfm.png │ │ │ │ ├── letterboxd.png │ │ │ │ ├── liberapay.png │ │ │ │ ├── linkedin.png │ │ │ │ ├── litecoin.png │ │ │ │ ├── mastodon.png │ │ │ │ ├── matrix.png │ │ │ │ ├── miiverse.png │ │ │ │ ├── openstreetmap.png │ │ │ │ ├── orcid.png │ │ │ │ ├── patreon.png │ │ │ │ ├── paypal.png │ │ │ │ ├── pinboard.png │ │ │ │ ├── pinterest.png │ │ │ │ ├── prezi.png │ │ │ │ ├── psn.png │ │ │ │ ├── researchgate.png │ │ │ │ ├── scopus.png │ │ │ │ ├── skype.png │ │ │ │ ├── slideshare.png │ │ │ │ ├── soundcloud.png │ │ │ │ ├── soup.png │ │ │ │ ├── spreaker.png │ │ │ │ ├── steady.png │ │ │ │ ├── steam.png │ │ │ │ ├── strava.png │ │ │ │ ├── studivz.png │ │ │ │ ├── thomann.png │ │ │ │ ├── threema.png │ │ │ │ ├── trakt.png │ │ │ │ ├── tumblr.png │ │ │ │ ├── twitch.png │ │ │ │ ├── twitter.png │ │ │ │ ├── untappd.png │ │ │ │ ├── vimeo.png │ │ │ │ ├── werkenntwen.png │ │ │ │ ├── wikipedia.svg │ │ │ │ ├── www.png │ │ │ │ ├── xbox.png │ │ │ │ ├── xboxlive.png │ │ │ │ ├── xing.png │ │ │ │ ├── yelp.png │ │ │ │ └── youtube.png │ │ ├── jobs │ │ │ ├── podcast_import_contributor_services_job.php │ │ │ ├── podcast_import_services_job.php │ │ │ └── podcast_import_show_services_job.php │ │ ├── js │ │ │ └── admin.js │ │ ├── model │ │ │ ├── contributor_service.php │ │ │ ├── service.php │ │ │ └── show_service.php │ │ ├── repair_social.php │ │ ├── rest_api.php │ │ ├── settings │ │ │ ├── podcast_settings_donation_tab.php │ │ │ └── podcast_settings_social_tab.php │ │ ├── shortcodes.php │ │ ├── social.php │ │ ├── template │ │ │ └── service.php │ │ ├── template_extensions.php │ │ └── templates │ │ │ ├── podcast-donations-list.twig │ │ │ └── podcast-social-media-list.twig │ ├── soundbite │ │ └── soundbite.php │ ├── subscribe_button │ │ ├── button.php │ │ ├── dist │ │ │ ├── button.html │ │ │ ├── fonts │ │ │ │ ├── podlove │ │ │ │ │ ├── Podlove.eot │ │ │ │ │ ├── Podlove.svg │ │ │ │ │ ├── Podlove.ttf │ │ │ │ │ └── Podlove.woff │ │ │ │ ├── roboto_light │ │ │ │ │ ├── Roboto-Light-webfont.eot │ │ │ │ │ ├── Roboto-Light-webfont.svg │ │ │ │ │ ├── Roboto-Light-webfont.ttf │ │ │ │ │ └── Roboto-Light-webfont.woff │ │ │ │ └── roboto_medium │ │ │ │ │ ├── Roboto-Medium-webfont.eot │ │ │ │ │ ├── Roboto-Medium-webfont.svg │ │ │ │ │ ├── Roboto-Medium-webfont.ttf │ │ │ │ │ └── Roboto-Medium-webfont.woff │ │ │ ├── images │ │ │ │ ├── android │ │ │ │ │ ├── acast.png │ │ │ │ │ ├── antennapod.png │ │ │ │ │ ├── beyondpod.png │ │ │ │ │ ├── chakouat.png │ │ │ │ │ ├── doggcatcher.png │ │ │ │ │ ├── playerfm.png │ │ │ │ │ ├── pocketcasts.png │ │ │ │ │ ├── podcastaddict.png │ │ │ │ │ ├── podcastrepublic.png │ │ │ │ │ ├── podcatcher-deluxe.png │ │ │ │ │ ├── podkicker.png │ │ │ │ │ ├── shortorange.png │ │ │ │ │ └── upod.png │ │ │ │ ├── blackberry │ │ │ │ │ ├── bpod.png │ │ │ │ │ └── gpodder.png │ │ │ │ ├── cloud │ │ │ │ │ ├── gpoddernet.png │ │ │ │ │ ├── instacastcloud.png │ │ │ │ │ ├── playerfm.png │ │ │ │ │ ├── pocketcasts.png │ │ │ │ │ └── shortorange.png │ │ │ │ ├── generic │ │ │ │ │ ├── android.png │ │ │ │ │ ├── rss.png │ │ │ │ │ ├── windows.png │ │ │ │ │ ├── windows8.png │ │ │ │ │ └── windowsphone.png │ │ │ │ ├── icon-big.png │ │ │ │ ├── icon-big@2x.png │ │ │ │ ├── icon-medium.png │ │ │ │ ├── icon-medium@2x.png │ │ │ │ ├── icon-small.png │ │ │ │ ├── icon-small@2x.png │ │ │ │ ├── icon.svg │ │ │ │ ├── ios │ │ │ │ │ ├── castro.png │ │ │ │ │ ├── downcast.png │ │ │ │ │ ├── icatcher.png │ │ │ │ │ ├── instacast.png │ │ │ │ │ ├── overcast.png │ │ │ │ │ ├── pocketcasts.png │ │ │ │ │ ├── podcasts.png │ │ │ │ │ ├── podcat.png │ │ │ │ │ ├── podgrasp.png │ │ │ │ │ ├── podwrangler.png │ │ │ │ │ ├── rssradio.png │ │ │ │ │ ├── shortorange.png │ │ │ │ │ └── sleekcast.png │ │ │ │ ├── linux │ │ │ │ │ ├── clementine.png │ │ │ │ │ ├── gpodder.png │ │ │ │ │ └── miro.png │ │ │ │ ├── osx │ │ │ │ │ ├── downcast.png │ │ │ │ │ ├── gpodder.png │ │ │ │ │ ├── instacast.png │ │ │ │ │ ├── itunes.png │ │ │ │ │ ├── miro.png │ │ │ │ │ ├── podgrasp.png │ │ │ │ │ └── podsnatcher.png │ │ │ │ ├── podlove.svg │ │ │ │ ├── stores │ │ │ │ │ ├── android.png │ │ │ │ │ ├── apple-app-store-en.png │ │ │ │ │ ├── apple-app-store-en.svg │ │ │ │ │ ├── blackberry-world-en.png │ │ │ │ │ ├── google-play-en.png │ │ │ │ │ ├── google-play-en.svg │ │ │ │ │ ├── google-play-en@1x.svg │ │ │ │ │ ├── ios.png │ │ │ │ │ ├── osx.png │ │ │ │ │ ├── windows-phone-store-en.png │ │ │ │ │ ├── windows-phone-store-en.svg │ │ │ │ │ ├── windows-store-en.png │ │ │ │ │ ├── windows-store-en.svg │ │ │ │ │ ├── windows8.png │ │ │ │ │ ├── windows81.png │ │ │ │ │ └── windowsphone.png │ │ │ │ ├── windows │ │ │ │ │ ├── gpodder.png │ │ │ │ │ ├── itunes.png │ │ │ │ │ ├── miro.png │ │ │ │ │ └── podscout.png │ │ │ │ └── windowsphone │ │ │ │ │ ├── bringcast.png │ │ │ │ │ ├── gramocast.png │ │ │ │ │ ├── ipodcast.png │ │ │ │ │ ├── pcast.png │ │ │ │ │ ├── podcastbrain.png │ │ │ │ │ ├── podcastlounge.png │ │ │ │ │ ├── podcastpicker.png │ │ │ │ │ ├── podcasts.png │ │ │ │ │ ├── podcastspro.png │ │ │ │ │ └── wpodder.png │ │ │ ├── javascripts │ │ │ │ ├── app.js │ │ │ │ └── app.js.gz │ │ │ └── stylesheets │ │ │ │ ├── app.css │ │ │ │ ├── app.css.gz │ │ │ │ ├── app.css.map │ │ │ │ └── app.css.map.gz │ │ ├── js │ │ │ ├── admin.js │ │ │ └── dist │ │ │ │ ├── button.html │ │ │ │ ├── fonts │ │ │ │ ├── podlove │ │ │ │ │ ├── Podlove.eot │ │ │ │ │ ├── Podlove.svg │ │ │ │ │ ├── Podlove.ttf │ │ │ │ │ └── Podlove.woff │ │ │ │ ├── roboto_light │ │ │ │ │ ├── Roboto-Light-webfont.eot │ │ │ │ │ ├── Roboto-Light-webfont.svg │ │ │ │ │ ├── Roboto-Light-webfont.ttf │ │ │ │ │ └── Roboto-Light-webfont.woff │ │ │ │ └── roboto_medium │ │ │ │ │ ├── Roboto-Medium-webfont.eot │ │ │ │ │ ├── Roboto-Medium-webfont.svg │ │ │ │ │ ├── Roboto-Medium-webfont.ttf │ │ │ │ │ └── Roboto-Medium-webfont.woff │ │ │ │ ├── images │ │ │ │ ├── android │ │ │ │ │ ├── acast.png │ │ │ │ │ ├── acast@1x.png │ │ │ │ │ ├── acast@2x.png │ │ │ │ │ ├── acast@3x.png │ │ │ │ │ ├── antennapod.png │ │ │ │ │ ├── antennapod@1x.png │ │ │ │ │ ├── antennapod@2x.png │ │ │ │ │ ├── antennapod@3x.png │ │ │ │ │ ├── beyondpod.png │ │ │ │ │ ├── beyondpod@1x.png │ │ │ │ │ ├── beyondpod@2x.png │ │ │ │ │ ├── beyondpod@3x.png │ │ │ │ │ ├── chakouat.png │ │ │ │ │ ├── chakouat@1x.png │ │ │ │ │ ├── chakouat@2x.png │ │ │ │ │ ├── chakouat@3x.png │ │ │ │ │ ├── doggcatcher.png │ │ │ │ │ ├── doggcatcher@1x.png │ │ │ │ │ ├── doggcatcher@2x.png │ │ │ │ │ ├── doggcatcher@3x.png │ │ │ │ │ ├── playerfm.png │ │ │ │ │ ├── playerfm@1x.png │ │ │ │ │ ├── playerfm@2x.png │ │ │ │ │ ├── playerfm@3x.png │ │ │ │ │ ├── pocketcasts.png │ │ │ │ │ ├── pocketcasts@1x.png │ │ │ │ │ ├── pocketcasts@2x.png │ │ │ │ │ ├── pocketcasts@3x.png │ │ │ │ │ ├── podcastaddict.png │ │ │ │ │ ├── podcastaddict@1x.png │ │ │ │ │ ├── podcastaddict@2x.png │ │ │ │ │ ├── podcastaddict@3x.png │ │ │ │ │ ├── podcastrepublic.png │ │ │ │ │ ├── podcatcher-deluxe.png │ │ │ │ │ ├── podcatcher-deluxe@1x.jpg │ │ │ │ │ ├── podcatcher-deluxe@1x.png │ │ │ │ │ ├── podcatcher-deluxe@2x.jpg │ │ │ │ │ ├── podcatcher-deluxe@2x.png │ │ │ │ │ ├── podcatcher-deluxe@3x.jpg │ │ │ │ │ ├── podcatcher-deluxe@3x.png │ │ │ │ │ ├── podkicker.png │ │ │ │ │ ├── podkicker@1x.png │ │ │ │ │ ├── podkicker@2x.png │ │ │ │ │ ├── podkicker@3x.png │ │ │ │ │ ├── shortorange.png │ │ │ │ │ ├── shortorange@1x.png │ │ │ │ │ ├── shortorange@2x.png │ │ │ │ │ ├── shortorange@3x.png │ │ │ │ │ ├── upod.png │ │ │ │ │ ├── upod@1x.png │ │ │ │ │ ├── upod@2x.png │ │ │ │ │ └── upod@3x.png │ │ │ │ ├── blackberry │ │ │ │ │ ├── bpod.png │ │ │ │ │ ├── bpod@1x.png │ │ │ │ │ ├── bpod@2x.png │ │ │ │ │ ├── bpod@3x.png │ │ │ │ │ ├── gpodder.png │ │ │ │ │ ├── gpodder@1x.png │ │ │ │ │ ├── gpodder@2x.png │ │ │ │ │ └── gpodder@3x.png │ │ │ │ ├── cloud │ │ │ │ │ ├── gpoddernet.png │ │ │ │ │ ├── gpoddernet@1x.png │ │ │ │ │ ├── gpoddernet@2x.png │ │ │ │ │ ├── gpoddernet@3x.png │ │ │ │ │ ├── instacastcloud.png │ │ │ │ │ ├── instacastcloud@1x.png │ │ │ │ │ ├── instacastcloud@2x.png │ │ │ │ │ ├── instacastcloud@3x.png │ │ │ │ │ ├── playerfm.png │ │ │ │ │ ├── playerfm@1x.png │ │ │ │ │ ├── playerfm@2x.png │ │ │ │ │ ├── playerfm@3x.png │ │ │ │ │ ├── pocketcasts.png │ │ │ │ │ ├── pocketcasts@1x.png │ │ │ │ │ ├── pocketcasts@2x.png │ │ │ │ │ ├── pocketcasts@3x.png │ │ │ │ │ ├── shortorange.png │ │ │ │ │ ├── shortorange@1x.png │ │ │ │ │ ├── shortorange@2x.png │ │ │ │ │ └── shortorange@3x.png │ │ │ │ ├── generic │ │ │ │ │ ├── android.png │ │ │ │ │ ├── android@1x.png │ │ │ │ │ ├── android@2x.png │ │ │ │ │ ├── android@3x.png │ │ │ │ │ ├── rss.png │ │ │ │ │ ├── rss@1x.png │ │ │ │ │ ├── rss@2x.png │ │ │ │ │ ├── rss@3x.png │ │ │ │ │ ├── windows.png │ │ │ │ │ ├── windows8.png │ │ │ │ │ ├── windows8@1x.png │ │ │ │ │ ├── windows8@2x.png │ │ │ │ │ ├── windows8@3x.png │ │ │ │ │ ├── windows@1x.png │ │ │ │ │ ├── windows@2x.png │ │ │ │ │ ├── windows@3x.png │ │ │ │ │ ├── windowsphone.png │ │ │ │ │ ├── windowsphone@1x.png │ │ │ │ │ ├── windowsphone@2x.png │ │ │ │ │ └── windowsphone@3x.png │ │ │ │ ├── icon-big.png │ │ │ │ ├── icon-big@2x.png │ │ │ │ ├── icon-medium.png │ │ │ │ ├── icon-medium@2x.png │ │ │ │ ├── icon-small.png │ │ │ │ ├── icon-small@2x.png │ │ │ │ ├── icon.svg │ │ │ │ ├── ios │ │ │ │ │ ├── castro.png │ │ │ │ │ ├── castro@1x.png │ │ │ │ │ ├── castro@2x.png │ │ │ │ │ ├── castro@3x.png │ │ │ │ │ ├── downcast.png │ │ │ │ │ ├── downcast@1x.png │ │ │ │ │ ├── downcast@2x.png │ │ │ │ │ ├── downcast@3x.png │ │ │ │ │ ├── icatcher.png │ │ │ │ │ ├── icatcher@1x.png │ │ │ │ │ ├── icatcher@2x.png │ │ │ │ │ ├── icatcher@3x.png │ │ │ │ │ ├── instacast.png │ │ │ │ │ ├── instacast@1x.png │ │ │ │ │ ├── instacast@2x.png │ │ │ │ │ ├── instacast@3x.png │ │ │ │ │ ├── overcast.png │ │ │ │ │ ├── overcast@1x.png │ │ │ │ │ ├── overcast@2x.png │ │ │ │ │ ├── overcast@3x.png │ │ │ │ │ ├── pocketcasts.png │ │ │ │ │ ├── pocketcasts@1x.png │ │ │ │ │ ├── pocketcasts@2x.png │ │ │ │ │ ├── pocketcasts@3x.png │ │ │ │ │ ├── podcasts.png │ │ │ │ │ ├── podcasts@1x.png │ │ │ │ │ ├── podcasts@2x.png │ │ │ │ │ ├── podcasts@3x.png │ │ │ │ │ ├── podcat.png │ │ │ │ │ ├── podcat@1x.png │ │ │ │ │ ├── podcat@2x.png │ │ │ │ │ ├── podcat@3x.png │ │ │ │ │ ├── podgrasp.png │ │ │ │ │ ├── podwrangler.png │ │ │ │ │ ├── podwrangler@1x.png │ │ │ │ │ ├── podwrangler@2x.png │ │ │ │ │ ├── podwrangler@3x.png │ │ │ │ │ ├── rssradio.png │ │ │ │ │ ├── rssradio@1x.png │ │ │ │ │ ├── rssradio@2x.png │ │ │ │ │ ├── rssradio@3x.png │ │ │ │ │ ├── shortorange.png │ │ │ │ │ ├── shortorange@1x.png │ │ │ │ │ ├── shortorange@2x.png │ │ │ │ │ ├── shortorange@3x.png │ │ │ │ │ ├── sleekcast.png │ │ │ │ │ ├── sleekcast@1x.png │ │ │ │ │ ├── sleekcast@2x.png │ │ │ │ │ └── sleekcast@3x.png │ │ │ │ ├── linux │ │ │ │ │ ├── clementine.png │ │ │ │ │ ├── clementine@1x.png │ │ │ │ │ ├── clementine@2x.png │ │ │ │ │ ├── clementine@3x.png │ │ │ │ │ ├── gpodder.png │ │ │ │ │ ├── gpodder@1x.png │ │ │ │ │ ├── gpodder@2x.png │ │ │ │ │ ├── gpodder@3x.png │ │ │ │ │ ├── miro.png │ │ │ │ │ ├── miro@1x.png │ │ │ │ │ ├── miro@2x.png │ │ │ │ │ └── miro@3x.png │ │ │ │ ├── osx │ │ │ │ │ ├── downcast.png │ │ │ │ │ ├── downcast@1x.png │ │ │ │ │ ├── downcast@2x.png │ │ │ │ │ ├── downcast@3x.png │ │ │ │ │ ├── gpodder.png │ │ │ │ │ ├── gpodder@1x.png │ │ │ │ │ ├── gpodder@2x.png │ │ │ │ │ ├── gpodder@3x.png │ │ │ │ │ ├── instacast.png │ │ │ │ │ ├── instacast@1x.png │ │ │ │ │ ├── instacast@2x.png │ │ │ │ │ ├── instacast@3x.png │ │ │ │ │ ├── itunes.png │ │ │ │ │ ├── itunes@1x.png │ │ │ │ │ ├── itunes@2x.png │ │ │ │ │ ├── itunes@3x.png │ │ │ │ │ ├── miro.png │ │ │ │ │ ├── miro@1x.png │ │ │ │ │ ├── miro@2x.png │ │ │ │ │ ├── miro@3x.png │ │ │ │ │ ├── podgrasp.png │ │ │ │ │ ├── podsnatcher.png │ │ │ │ │ ├── podsnatcher@1x.png │ │ │ │ │ ├── podsnatcher@2x.png │ │ │ │ │ └── podsnatcher@3x.png │ │ │ │ ├── podlove.svg │ │ │ │ ├── stores │ │ │ │ │ ├── android.png │ │ │ │ │ ├── apple-app-store-en.png │ │ │ │ │ ├── apple-app-store-en.svg │ │ │ │ │ ├── apple-app-store-en@1x.png │ │ │ │ │ ├── apple-app-store-en@2x.png │ │ │ │ │ ├── apple-app-store-en@3x.png │ │ │ │ │ ├── blackberry-world-en.png │ │ │ │ │ ├── blackberry-world-en@1x.png │ │ │ │ │ ├── blackberry-world-en@2x.png │ │ │ │ │ ├── blackberry-world-en@3x.png │ │ │ │ │ ├── google-play-en.png │ │ │ │ │ ├── google-play-en.svg │ │ │ │ │ ├── google-play-en@1x.png │ │ │ │ │ ├── google-play-en@1x.svg │ │ │ │ │ ├── google-play-en@2x.png │ │ │ │ │ ├── google-play-en@3x.png │ │ │ │ │ ├── ios.png │ │ │ │ │ ├── osx.png │ │ │ │ │ ├── windows-phone-store-en.png │ │ │ │ │ ├── windows-phone-store-en.svg │ │ │ │ │ ├── windows-phone-store-en@1x.png │ │ │ │ │ ├── windows-phone-store-en@2x.png │ │ │ │ │ ├── windows-phone-store-en@3x.png │ │ │ │ │ ├── windows-store-en.png │ │ │ │ │ ├── windows-store-en.svg │ │ │ │ │ ├── windows-store-en@1x.png │ │ │ │ │ ├── windows-store-en@2x.png │ │ │ │ │ ├── windows-store-en@3x.png │ │ │ │ │ ├── windows8.png │ │ │ │ │ ├── windows81.png │ │ │ │ │ └── windowsphone.png │ │ │ │ ├── windows │ │ │ │ │ ├── gpodder.png │ │ │ │ │ ├── gpodder@1x.png │ │ │ │ │ ├── gpodder@2x.png │ │ │ │ │ ├── gpodder@3x.png │ │ │ │ │ ├── itunes.png │ │ │ │ │ ├── itunes@1x.png │ │ │ │ │ ├── itunes@2x.png │ │ │ │ │ ├── itunes@3x.png │ │ │ │ │ ├── miro.png │ │ │ │ │ ├── miro@1x.png │ │ │ │ │ ├── miro@2x.png │ │ │ │ │ ├── miro@3x.png │ │ │ │ │ ├── podscout.png │ │ │ │ │ ├── podscout@1x.png │ │ │ │ │ ├── podscout@2x.png │ │ │ │ │ └── podscout@3x.png │ │ │ │ └── windowsphone │ │ │ │ │ ├── bringcast.png │ │ │ │ │ ├── bringcast@1x.png │ │ │ │ │ ├── bringcast@2x.png │ │ │ │ │ ├── bringcast@3x.png │ │ │ │ │ ├── gramocast.png │ │ │ │ │ ├── gramocast@1x.png │ │ │ │ │ ├── gramocast@2x.png │ │ │ │ │ ├── gramocast@3x.png │ │ │ │ │ ├── ipodcast.png │ │ │ │ │ ├── ipodcast@1x.png │ │ │ │ │ ├── ipodcast@2x.png │ │ │ │ │ ├── ipodcast@3x.png │ │ │ │ │ ├── pcast.png │ │ │ │ │ ├── pcast@1x.png │ │ │ │ │ ├── pcast@2x.png │ │ │ │ │ ├── pcast@3x.png │ │ │ │ │ ├── podcastbrain.png │ │ │ │ │ ├── podcastbrain@1x.png │ │ │ │ │ ├── podcastbrain@2x.png │ │ │ │ │ ├── podcastbrain@3x.png │ │ │ │ │ ├── podcastlounge.png │ │ │ │ │ ├── podcastlounge@1x.png │ │ │ │ │ ├── podcastlounge@2x.png │ │ │ │ │ ├── podcastlounge@3x.png │ │ │ │ │ ├── podcastpicker.png │ │ │ │ │ ├── podcastpicker@1x.png │ │ │ │ │ ├── podcastpicker@2x.png │ │ │ │ │ ├── podcastpicker@3x.png │ │ │ │ │ ├── podcasts.png │ │ │ │ │ ├── podcasts@1x.png │ │ │ │ │ ├── podcasts@2x.png │ │ │ │ │ ├── podcasts@3x.png │ │ │ │ │ ├── podcastspro.png │ │ │ │ │ ├── podcastspro@1x.png │ │ │ │ │ ├── podcastspro@2x.png │ │ │ │ │ ├── podcastspro@3x.png │ │ │ │ │ ├── wpodder.png │ │ │ │ │ ├── wpodder@1x.png │ │ │ │ │ ├── wpodder@2x.png │ │ │ │ │ └── wpodder@3x.png │ │ │ │ ├── javascripts │ │ │ │ ├── app.js │ │ │ │ └── app.js.gz │ │ │ │ └── stylesheets │ │ │ │ ├── app.css │ │ │ │ ├── app.css.gz │ │ │ │ ├── app.css.map │ │ │ │ └── app.css.map.gz │ │ ├── subscribe_button.php │ │ ├── template_extensions.php │ │ └── widget.php │ ├── title_migration │ │ ├── notices.php │ │ ├── state.php │ │ └── title_migration.php │ ├── transcripts │ │ ├── jobs │ │ │ ├── import_transcripts_job.php │ │ │ └── import_voice_assignments_job.php │ │ ├── model │ │ │ ├── transcript.php │ │ │ └── voice_assignment.php │ │ ├── renderer.php │ │ ├── rest_api.php │ │ ├── template │ │ │ ├── group.php │ │ │ └── line.php │ │ ├── template_extensions.php │ │ ├── transcripts.php │ │ └── twig │ │ │ └── transcript.twig │ ├── widgets │ │ ├── widgets.php │ │ └── widgets │ │ │ ├── podcast_information.php │ │ │ ├── podcast_license.php │ │ │ ├── recent_episodes.php │ │ │ └── render_template.php │ └── wordpress_file_upload │ │ └── wordpress_file_upload.php ├── network.php ├── php │ ├── array.php │ └── string.php ├── php_deprecation_warning.php ├── podcast_post_meta_box.php ├── podcast_post_type.php ├── repair.php ├── settings │ ├── analytics.php │ ├── dashboard.php │ ├── dashboard │ │ ├── about.php │ │ ├── file_validation.php │ │ ├── news.php │ │ └── statistics.php │ ├── episode_asset.php │ ├── expert │ │ ├── tab.php │ │ ├── tab │ │ │ ├── file_types.php │ │ │ ├── metadata.php │ │ │ ├── redirects.php │ │ │ ├── tracking.php │ │ │ ├── web_player.php │ │ │ └── website.php │ │ └── tabs.php │ ├── feed.php │ ├── file_type.php │ ├── help │ │ ├── analytics.php │ │ ├── dashboard.php │ │ ├── episode_asset.php │ │ ├── feed.php │ │ ├── modules.php │ │ ├── podcast.php │ │ ├── settings.php │ │ ├── support.php │ │ └── templates.php │ ├── modules.php │ ├── podcast.php │ ├── podcast │ │ ├── tab.php │ │ └── tab │ │ │ ├── description.php │ │ │ ├── directory.php │ │ │ ├── license.php │ │ │ ├── media.php │ │ │ └── player.php │ ├── settings.php │ ├── support.php │ ├── templates.php │ ├── tools.php │ └── tools │ │ └── user_agent_refresh.php ├── shortcodes.php ├── system_report.php ├── template │ ├── asset.php │ ├── category.php │ ├── chapter.php │ ├── date_time.php │ ├── duration.php │ ├── episode.php │ ├── episode_title.php │ ├── feed.php │ ├── file.php │ ├── file_type.php │ ├── image.php │ ├── license.php │ ├── podcast.php │ ├── tag.php │ ├── twig_date_extension.php │ ├── twig_filter.php │ ├── twig_loader_podlove_database.php │ ├── twig_sandbox.php │ └── wrapper.php ├── tools.php ├── tracking │ └── debug.php ├── version.php └── webhook │ └── webhook.php ├── license.txt ├── phpunit.xml ├── plugin.php ├── podlove.php ├── publisher.code-workspace ├── readme.txt ├── templates ├── feed-rss2.php ├── license.twig ├── network │ └── network-bar.twig └── shortcode │ ├── downloads-buttons.twig │ ├── downloads-select.twig │ ├── episode-list.twig │ └── feed-list.twig ├── tests ├── bootstrap.php ├── color_sanitizer_test.php ├── helper │ └── episode_factory.php ├── jobs_test.php ├── seasons_test.php ├── seasons_validator_test.php └── slack_message_test.php ├── vetur.config.js └── views ├── expert_settings └── website │ ├── blog_post_title.php │ ├── custom_episode_slug.php │ ├── episode_archive.php │ └── landing_page.php └── settings └── dashboard ├── about.php ├── dashboard.php ├── file_validation.php ├── news.php └── statistics.php /.distignore: -------------------------------------------------------------------------------- 1 | /.wordpress-org 2 | /.git 3 | /.github 4 | /node_modules 5 | 6 | .distignore 7 | .gitignore 8 | 9 | /.build 10 | .php_cs.dist 11 | deploy_key.enc 12 | mix-manifest.json 13 | package-lock.json 14 | package.json 15 | *.code-workspace 16 | webpack.mix.js 17 | /vendor/twig/twig 18 | 19 | *.swp 20 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | !/dist 2 | vendor 3 | vendor-prefixed 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | 10 | # Change these settings to your own preference 11 | indent_style = space 12 | indent_size = 2 13 | max_line_length = 120 14 | 15 | # We recommend you to keep these unchanged 16 | end_of_line = lf 17 | charset = utf-8 18 | trim_trailing_whitespace = true 19 | insert_final_newline = true 20 | 21 | [*.md] 22 | trim_trailing_whitespace = false 23 | 24 | [*.html] 25 | indent_size = 2 26 | 27 | [Makefile] 28 | indent_style = tab 29 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: podlove 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Expected behavior 2 | 3 | ### Actual behavior 4 | 5 | ### System information (see `Podlove > Support` menu) 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .tags* 3 | .wordpress_release 4 | *.sublime-* 5 | *.code-workspace 6 | wprelease.yml 7 | composer.phar 8 | js/node_modules 9 | client/node_modules 10 | vendor/* 11 | vendor-*/* 12 | test/config.yml 13 | doc 14 | .htaccess 15 | Mix.json 16 | mix-manifest.json 17 | *.log 18 | .vscode 19 | dist 20 | js/dist 21 | lib/modules/podlove_web_player/player_v2/ 22 | .php_cs.cache 23 | .php-cs-fixer.cache 24 | .build/wp* 25 | /.vs 26 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/.gitmodules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100, 3 | "jsxBracketSameLine": true, 4 | "semi": false, 5 | "singleQuote": true, 6 | "bracketSpacing": true, 7 | "tabWidth": 2, 8 | "useTabs": false 9 | } 10 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM wordpress:6-php8.1-apache 2 | 3 | RUN apt-get update 4 | RUN apt-get install zip default-mysql-client -y 5 | RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x wp-cli.phar && mv wp-cli.phar /usr/local/bin/wp 6 | 7 | WORKDIR /var/www/html 8 | 9 | COPY ./bin/docker-entry.sh /usr/local/bin/entry.sh 10 | COPY ./bin/docker-setup.sh /usr/local/bin/setup.sh 11 | COPY ./dist wp-content/plugins/podlove-podcasting-plugin-for-wordpress 12 | 13 | ENTRYPOINT ["entry.sh"] 14 | -------------------------------------------------------------------------------- /bin/code-coverage.sh: -------------------------------------------------------------------------------- 1 | phpunit --coverage-html=../../coverage/report 2 | echo "Code Coverage Report: http://podlove-publisher.dev/wp-content/coverage/report/" 3 | -------------------------------------------------------------------------------- /bin/docker-setup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | -------------------------------------------------------------------------------- /bin/podlove.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/bin/podlove.mp3 -------------------------------------------------------------------------------- /bin/uadetect.php: -------------------------------------------------------------------------------- 1 | parse(); 10 | 11 | if ($dd->isBot()) { 12 | var_dump($botInfo = $dd->getBot()); 13 | } else { 14 | $clientInfo = $dd->getClient(); // holds information about browser, feed reader, media player, ... 15 | $osInfo = $dd->getOs(); 16 | $device = $dd->getDevice(); 17 | $brand = $dd->getBrand(); 18 | $model = $dd->getModel(); 19 | var_dump($clientInfo, $osInfo, $device, $brand, $model); 20 | } 21 | -------------------------------------------------------------------------------- /bin/update-opawg.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | wget -O data/opawg.json https://raw.githubusercontent.com/opawg/user-agents/master/src/user-agents.json 4 | -------------------------------------------------------------------------------- /bin/update_pwp4.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | npm update @podlove/web-player 4 | rm -r lib/modules/podlove_web_player/player_v4/dist 5 | cp -r node_modules/@podlove/web-player/ lib/modules/podlove_web_player/player_v4/dist 6 | -------------------------------------------------------------------------------- /bin/workspace.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const fs = require('fs-extra') 3 | 4 | const toDelete = (fs.readdirSync(path.resolve('.')) || []).filter(item => item !== 'dist') 5 | 6 | toDelete.forEach(file => fs.removeSync(path.resolve(file))) 7 | 8 | const toCopy = fs.readdirSync(path.resolve('dist')) || [] 9 | 10 | toCopy.forEach(file => fs.copySync(path.resolve('dist', file), path.resolve('.', file))) 11 | 12 | fs.removeSync(path.resolve('dist')) 13 | -------------------------------------------------------------------------------- /bootstrap/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/src/components/tabs/Tab.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 25 | -------------------------------------------------------------------------------- /client/src/components/tabs/index.ts: -------------------------------------------------------------------------------- 1 | // @ts-ignore 2 | import Tab from './Tab.vue' 3 | // @ts-ignore 4 | import TabsContainer from './TabsContainer.vue' 5 | 6 | export { 7 | Tab, TabsContainer 8 | } 9 | -------------------------------------------------------------------------------- /client/src/lib/array.ts: -------------------------------------------------------------------------------- 1 | export const arrayMove = (arr: T[], fromIndex: number, toIndex: number) => { 2 | const newArr = [...arr]; 3 | newArr.splice(toIndex, 0, newArr.splice(fromIndex, 1)[0]); 4 | return newArr; 5 | }; 6 | -------------------------------------------------------------------------------- /client/src/lib/wordpress.ts: -------------------------------------------------------------------------------- 1 | import { get } from 'lodash' 2 | 3 | export const store = get(window, ['wp', 'data'], null) 4 | export const media = get(window, ['wp', 'media'], null) 5 | export const postTitleInput: HTMLInputElement | null = document.querySelector('input[name="post_title"]') 6 | export const postTitleListener = (cb: (title: string) => any) => postTitleInput?.addEventListener('change', event => cb(get(event, ['target', 'value']))) 7 | -------------------------------------------------------------------------------- /client/src/modules/auphonic/index.ts: -------------------------------------------------------------------------------- 1 | import Auphonic from './Auphonic.vue' 2 | 3 | export default Auphonic 4 | -------------------------------------------------------------------------------- /client/src/modules/chapters/index.ts: -------------------------------------------------------------------------------- 1 | import Chapters from './Chapters.vue'; 2 | 3 | export default Chapters; 4 | -------------------------------------------------------------------------------- /client/src/modules/contributors/index.ts: -------------------------------------------------------------------------------- 1 | import Contributors from './Contributors.vue'; 2 | 3 | export default Contributors; 4 | -------------------------------------------------------------------------------- /client/src/modules/description/index.ts: -------------------------------------------------------------------------------- 1 | import Description from './Description.vue'; 2 | 3 | export default Description; 4 | -------------------------------------------------------------------------------- /client/src/modules/license/index.ts: -------------------------------------------------------------------------------- 1 | import License from './License.vue'; 2 | 3 | export default License; -------------------------------------------------------------------------------- /client/src/modules/mediafiles/index.ts: -------------------------------------------------------------------------------- 1 | import MediaFiles from './MediaFiles.vue' 2 | 3 | export default MediaFiles 4 | -------------------------------------------------------------------------------- /client/src/modules/related/index.ts: -------------------------------------------------------------------------------- 1 | import RelatedEpisodes from './RelatedEpisodes.vue'; 2 | 3 | export default RelatedEpisodes; -------------------------------------------------------------------------------- /client/src/modules/shows/index.ts: -------------------------------------------------------------------------------- 1 | import ShowSelect from './ShowSelect.vue' 2 | 3 | export default ShowSelect 4 | -------------------------------------------------------------------------------- /client/src/modules/soundbite/index.ts: -------------------------------------------------------------------------------- 1 | import Soundbite from './Soundbite.vue'; 2 | 3 | export default Soundbite; 4 | -------------------------------------------------------------------------------- /client/src/modules/transcripts/index.ts: -------------------------------------------------------------------------------- 1 | import Transcripts from './Transcripts.vue'; 2 | 3 | export default Transcripts; 4 | -------------------------------------------------------------------------------- /client/src/plugins/translations.ts: -------------------------------------------------------------------------------- 1 | import { get } from 'lodash' 2 | import { App } from 'vue' 3 | 4 | declare module '@vue/runtime-core' { 5 | interface ComponentCustomProperties { 6 | __: (translation: string, domain: string) => string; 7 | } 8 | } 9 | 10 | const translate = get(window, ['wp', 'i18n', '__'], (translation: string) => translation) 11 | 12 | export const __ = translate; 13 | 14 | export default { 15 | install(app: App) { 16 | app.config.globalProperties['__'] = (translation: string, domain: string) => translate(translation, domain) 17 | }, 18 | } 19 | -------------------------------------------------------------------------------- /client/src/sagas/auphonic.api.ts: -------------------------------------------------------------------------------- 1 | import { selectors, store } from '@store' 2 | import { notify } from '@store/notification.store' 3 | import { select } from 'redux-saga/effects' 4 | import { auphonic } from '../lib/auphonic.api' 5 | 6 | export function* createApi() { 7 | const base: string = 'https://auphonic.com/api' 8 | const bearer: string = yield select(selectors.auphonic.token) 9 | 10 | const errorHandler = function (response: any) { 11 | store.dispatch(notify({ type: 'error', message: `Auphonic: ${response.error_message}` })) 12 | } 13 | 14 | return auphonic({ base, bearer, errorHandler }) 15 | } 16 | -------------------------------------------------------------------------------- /client/src/store/notification.store.ts: -------------------------------------------------------------------------------- 1 | import { handleActions, createAction } from 'redux-actions' 2 | 3 | export const NOTIFY = 'podlove/publisher/NOTIFY' 4 | export const notify = createAction<{ type: 'success' | 'warning' | 'error', message: string; }>(NOTIFY) 5 | 6 | export type State = { 7 | } 8 | 9 | export const initialState: State = { 10 | }; 11 | 12 | export const reducer = handleActions({ 13 | }, initialState); 14 | 15 | export const selectors = { 16 | } 17 | -------------------------------------------------------------------------------- /client/src/store/wordpress.store.ts: -------------------------------------------------------------------------------- 1 | import { Action } from 'redux' 2 | import { createAction } from 'redux-actions' 3 | 4 | export const UPDATE = 'podlove/publisher/wordpress/UPDATE' 5 | export const SELECT_MEDIA_FROM_LIBRARY = 'podlove/publisher/wordpress/SELECT_MEDIA_FROM_LIBRARY' 6 | 7 | export const update = createAction<{ prop: string; value: any }>(UPDATE) 8 | export const selectMediaFromLibrary = createAction<{ onSuccess: Action }>(SELECT_MEDIA_FROM_LIBRARY) 9 | -------------------------------------------------------------------------------- /client/src/style.css: -------------------------------------------------------------------------------- 1 | 2 | @tailwind base; 3 | @tailwind components; 4 | @tailwind utilities; 5 | 6 | /* fix overwrites */ 7 | input[type=checkbox]:checked::before { 8 | content: ''; 9 | } 10 | -------------------------------------------------------------------------------- /client/src/types/chapters.types.ts: -------------------------------------------------------------------------------- 1 | export interface PodloveChapter { 2 | start: number; 3 | title: string; 4 | href?: string; 5 | image?: string; 6 | } 7 | -------------------------------------------------------------------------------- /client/src/types/contributors.types.ts: -------------------------------------------------------------------------------- 1 | export interface PodloveContributor { 2 | id: string 3 | avatar: string 4 | avatar_url: string 5 | count: string 6 | department: string 7 | gender: string 8 | jobtitle: string 9 | mail: string 10 | publicname: string 11 | realname: string 12 | nickname: string 13 | organisation: string 14 | slug: string 15 | } 16 | 17 | export interface PodloveRole { 18 | id: number 19 | slug: string 20 | title: string 21 | } 22 | 23 | export interface PodloveGroup { 24 | id: number 25 | slug: string 26 | title: string 27 | } 28 | -------------------------------------------------------------------------------- /client/src/types/episode.types.ts: -------------------------------------------------------------------------------- 1 | export interface PodloveEpisode { 2 | slug: string 3 | number: string 4 | title: string 5 | subtitle: string 6 | summary: string 7 | poster: string 8 | } 9 | 10 | export interface PodloveEpisodeContribution { 11 | id: number 12 | contributor_id: number 13 | role_id: number 14 | group_id: number 15 | position: number 16 | comment: string 17 | } 18 | -------------------------------------------------------------------------------- /client/src/types/relatedEpisodes.types.ts: -------------------------------------------------------------------------------- 1 | export interface PodloveEpisodeList { 2 | episode_id: number, 3 | episode_title: string, 4 | } 5 | -------------------------------------------------------------------------------- /client/src/types/shows.types.ts: -------------------------------------------------------------------------------- 1 | export interface PodloveShow { 2 | id: number 3 | title: string 4 | slug: string 5 | subtitle: string 6 | summary: string 7 | image: string 8 | language: string 9 | category: string 10 | auphonic_preset: string 11 | } 12 | -------------------------------------------------------------------------------- /client/src/types/transcripts.types.ts: -------------------------------------------------------------------------------- 1 | export interface PodloveTranscript { 2 | voice: string; 3 | start: string, 4 | start_ms: number; 5 | end: string; 6 | end_ms: number; 7 | text: string; 8 | } 9 | 10 | export interface PodloveTranscriptVoice { 11 | voice: string, 12 | contributor_id: string 13 | } 14 | -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- 1 | // tailwind.config.js 2 | const defaultTheme = require('tailwindcss/defaultTheme') 3 | 4 | module.exports = { 5 | content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], 6 | theme: { 7 | extend: { 8 | fontFamily: { 9 | sans: ['Inter var', ...defaultTheme.fontFamily.sans], 10 | }, 11 | }, 12 | }, 13 | plugins: [require('@tailwindcss/forms')], 14 | } 15 | -------------------------------------------------------------------------------- /client/typings/redux-actions.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'redux-actions' { 2 | export const handleActions: (bindings: any, state: any) => any; 3 | export const createAction: (type: string) => (payload: T) => { type: string, payload: T }; 4 | } 5 | -------------------------------------------------------------------------------- /client/typings/vue-popper.d.ts: -------------------------------------------------------------------------------- 1 | declare module "vue3-popper" { 2 | import { Component } from "vue"; 3 | const file: Component; 4 | export default file; 5 | } 6 | -------------------------------------------------------------------------------- /config/php-scoper/monolog.inc.php: -------------------------------------------------------------------------------- 1 | [ 9 | Finder::create()->files()->in('vendor/monolog/*')->name(['*.php', 'LICENSE', 'composer.json']), 10 | ], 11 | 'patchers' => [ 12 | ] 13 | ]; 14 | -------------------------------------------------------------------------------- /config/php-scoper/psr.inc.php: -------------------------------------------------------------------------------- 1 | [ 9 | Finder::create()->files()->in('vendor/psr/*')->name(['*.php', 'LICENSE', 'composer.json']), 10 | ], 11 | 'patchers' => [ 12 | ] 13 | ]; 14 | -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/data/.gitkeep -------------------------------------------------------------------------------- /devbox.d/php/php-fpm.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | pid = ${PHPFPM_PID_FILE} 3 | error_log = ${PHPFPM_ERROR_LOG_FILE} 4 | daemonize = yes 5 | 6 | [www] 7 | ; user = www-data 8 | ; group = www-data 9 | listen = 127.0.0.1:${PHPFPM_PORT} 10 | ; listen.owner = www-data 11 | ; listen.group = www-data 12 | pm = dynamic 13 | pm.max_children = 5 14 | pm.start_servers = 2 15 | pm.min_spare_servers = 1 16 | pm.max_spare_servers = 3 17 | chdir = / 18 | -------------------------------------------------------------------------------- /devbox.d/php/php.ini: -------------------------------------------------------------------------------- 1 | [php] 2 | 3 | ; Put your php.ini directives here. For the latest default php.ini file, see https://github.com/php/php-src/blob/master/php.ini-production 4 | 5 | ; memory_limit = 128M 6 | ; expose_php = Off 7 | -------------------------------------------------------------------------------- /devbox.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://raw.githubusercontent.com/jetpack-io/devbox/0.10.2/.schema/devbox.schema.json", 3 | "packages": ["php@latest", "php83Packages.composer@latest", "nodejs@20"], 4 | "shell": { 5 | "init_hook": ["echo 'Welcome to devbox!' > /dev/null"], 6 | "scripts": { 7 | "bootstrap": "make install", 8 | "build": "make build --always-make", 9 | "client": ["cd client", "npm run dev"] 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /fonts/Podlove.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/fonts/Podlove.eot -------------------------------------------------------------------------------- /fonts/Podlove.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/fonts/Podlove.ttf -------------------------------------------------------------------------------- /fonts/Podlove.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/fonts/Podlove.woff -------------------------------------------------------------------------------- /images/about/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/about/home.png -------------------------------------------------------------------------------- /images/about/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/about/network.png -------------------------------------------------------------------------------- /images/cc/0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/cc/0_0.png -------------------------------------------------------------------------------- /images/cc/0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/cc/0_1.png -------------------------------------------------------------------------------- /images/cc/10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/cc/10_0.png -------------------------------------------------------------------------------- /images/cc/10_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/cc/10_1.png -------------------------------------------------------------------------------- /images/cc/1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/cc/1_0.png -------------------------------------------------------------------------------- /images/cc/1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/cc/1_1.png -------------------------------------------------------------------------------- /images/cc/pd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/cc/pd.png -------------------------------------------------------------------------------- /images/cc/pdmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/cc/pdmark.png -------------------------------------------------------------------------------- /images/logo/podlove-publisher-icon-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/logo/podlove-publisher-icon-500.png -------------------------------------------------------------------------------- /images/podlove_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/images/podlove_header.jpg -------------------------------------------------------------------------------- /includes/frontend_styles.php: -------------------------------------------------------------------------------- 1 | = 200 && $status < 300 || $status == 304; 15 | } 16 | -------------------------------------------------------------------------------- /includes/system_report.php: -------------------------------------------------------------------------------- 1 | run(); 10 | } 11 | 12 | add_action('update_option_permalink_structure', 'podlove_run_system_report'); 13 | add_action('update_option_podlove', 'podlove_run_system_report'); 14 | -------------------------------------------------------------------------------- /js/.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18.18.2 2 | -------------------------------------------------------------------------------- /js/admin/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /js/admin/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/animated-overlay.gif -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /js/admin/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/js/admin/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /js/src/components/icons/CheveronDown.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /js/src/components/icons/CheveronUp.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /js/src/components/icons/Close.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /js/src/components/icons/DotsVertical.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /js/src/components/icons/Eye.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 27 | -------------------------------------------------------------------------------- /js/src/components/icons/Image.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /js/src/components/icons/Link.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /js/src/components/icons/Menu.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 26 | -------------------------------------------------------------------------------- /js/src/components/icons/Refresh.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /js/src/components/icons/Type.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /js/src/lib/duration_errors.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 'LONGER_THAN_TOTAL': -1, 3 | 'TOTAL_UNKNOWN': -2, 4 | 'TOTAL_INVALID': -3 5 | } 6 | -------------------------------------------------------------------------------- /js/src/lib/guid.js: -------------------------------------------------------------------------------- 1 | export default function guid() { 2 | function s4() { 3 | return Math.floor((1 + Math.random()) * 0x10000) 4 | .toString(16) 5 | .substring(1); 6 | } 7 | return s4() + s4() + '-' + s4() + '-' + s4() + '-' + 8 | s4() + '-' + s4() + s4() + s4(); 9 | } 10 | -------------------------------------------------------------------------------- /lib/api/permissions.php: -------------------------------------------------------------------------------- 1 | $cron) { 15 | if (isset($cron[$hook])) { 16 | unset($crons[$time][$hook]); 17 | } 18 | } 19 | 20 | update_option('cron', $crons); 21 | } 22 | -------------------------------------------------------------------------------- /lib/jobs/job_cleaner.php: -------------------------------------------------------------------------------- 1 | true]); 11 | GeoArea::property('parent_id', 'INT'); 12 | GeoArea::property('code', 'VARCHAR(5)'); 13 | GeoArea::property('type', 'VARCHAR(255)'); 14 | -------------------------------------------------------------------------------- /lib/model/geo_area_name.php: -------------------------------------------------------------------------------- 1 | slug] = $role->title; 14 | } 15 | 16 | return $list; 17 | } 18 | } 19 | 20 | ContributorGroup::property('id', 'INT NOT NULL AUTO_INCREMENT PRIMARY KEY'); 21 | ContributorGroup::property('slug', 'VARCHAR(255)'); 22 | ContributorGroup::property('title', 'VARCHAR(255)'); 23 | -------------------------------------------------------------------------------- /lib/modules/contributors/model/contributor_role.php: -------------------------------------------------------------------------------- 1 | slug] = $role->title; 14 | } 15 | 16 | return $list; 17 | } 18 | } 19 | 20 | ContributorRole::property('id', 'INT NOT NULL AUTO_INCREMENT PRIMARY KEY'); 21 | ContributorRole::property('slug', 'VARCHAR(255)'); 22 | ContributorRole::property('title', 'VARCHAR(255)'); 23 | -------------------------------------------------------------------------------- /lib/modules/contributors/templates/_contributor-table-flattr.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/contributors/templates/avatar.twig: -------------------------------------------------------------------------------- 1 | {# 2 | Display a contributor avatar. 3 | 4 | Usage examples: 5 | {% include '@contributors/avatar.twig' with {'avatar': contributor.avatar} only %} 6 | {% include '@contributors/avatar.twig' with {'avatar': contributor.avatar, 'size': 150} only %} 7 | #} 8 | {% set size = size|default(50) %} 9 | avatar -------------------------------------------------------------------------------- /lib/modules/contributors/templates/contributor-comma-separated.twig: -------------------------------------------------------------------------------- 1 | 2 | {% for contributor in episode.contributors({group: group, role: role}) %} 3 | {% if contributor.visible %} 4 | 5 | {% if option.avatars == "yes" %} 6 | {{ contributor.image.html({width: 18, height: 18, class: "avatar avatar-" ~ size ~ " photo", alt: "avatar" }) }} 7 | {% endif %} 8 | {{ contributor.name }}{% if not loop.last %}, {% endif %} 9 | {% endif %} 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /lib/modules/contributors/templates/contributor-list.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/podlove_web_player/player_v4/dist/4.5.10/chapters-tab.js: -------------------------------------------------------------------------------- 1 | // [AIV_SHORT] Build version: 4.5.10 - Saturday, August 24th, 2019, 11:27:46 AM 2 | (window.webpackJsonp=window.webpackJsonp||[]).push([[5],{277:function(n,w,e){"use strict";e.r(w),w.default=e(261).default}}]); -------------------------------------------------------------------------------- /lib/modules/podlove_web_player/player_v4/dist/4.5.10/info-tab.js: -------------------------------------------------------------------------------- 1 | // [AIV_SHORT] Build version: 4.5.10 - Saturday, August 24th, 2019, 11:27:46 AM 2 | (window.webpackJsonp=window.webpackJsonp||[]).push([[7],{276:function(n,w,e){"use strict";e.r(w),w.default=e(257).default}}]); -------------------------------------------------------------------------------- /lib/modules/podlove_web_player/player_v4/dist/4.5.10/transcripts-tab.js: -------------------------------------------------------------------------------- 1 | // [AIV_SHORT] Build version: 4.5.10 - Saturday, August 24th, 2019, 11:27:46 AM 2 | (window.webpackJsonp=window.webpackJsonp||[]).push([[10],{189:function(n,t,u){"use strict";u.d(t,"b",function(){return a}),u.d(t,"a",function(){return i});var c=u(0),e=u(16),a=Object(e.a)(c.k),i=Object(e.a)(c.j)},281:function(n,t,u){"use strict";u.r(t),t.default=u(256).default}}]); -------------------------------------------------------------------------------- /lib/modules/podlove_web_player/player_v4/pwp4.js: -------------------------------------------------------------------------------- 1 | jQuery(function () { 2 | jQuery(".pwp4-wrapper").each(function () { 3 | var that = jQuery(this); 4 | var id = that.attr("id"); 5 | var config = that.data("episode"); 6 | 7 | if (typeof podlovePlayer === "function") { 8 | podlovePlayer("#" + id, config); 9 | } 10 | }) 11 | }); 12 | -------------------------------------------------------------------------------- /lib/modules/related_episodes/templates/related-episodes-list.twig: -------------------------------------------------------------------------------- 1 | {% set related_episodes = episode.relatedEpisodes %} 2 | 3 | {% if related_episodes %} 4 | 5 | {% if option.before %} 6 | {{ option.before }} 7 | {% endif %} 8 | 9 | {% apply spaceless %} 10 | 17 | {% endapply %} 18 | 19 | {% endif %} 20 | -------------------------------------------------------------------------------- /lib/modules/seasons/js/admin.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | var $start_date = $("#podlove_season_start_date") 3 | $start_date.datepicker({ 4 | dateFormat: $.datepicker.ISO_8601, 5 | changeMonth: true, 6 | changeYear: true 7 | }); 8 | 9 | $start_date.closest("div").on("click", function() { 10 | $start_date.datepicker("show"); 11 | }); 12 | }); 13 | -------------------------------------------------------------------------------- /lib/modules/shownotes/twig/plain-html-list-grouped.twig: -------------------------------------------------------------------------------- 1 | {% for topic in episode.shownotes({groupby: "topic"}) %} 2 | {% if topic.title %} 3 |
4 |
{{ topic.title }}
5 | {% endif %} 6 | 7 | 16 | {% endfor %} 17 | -------------------------------------------------------------------------------- /lib/modules/shownotes/twig/plain-html-list.twig: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /lib/modules/social/admin.css: -------------------------------------------------------------------------------- 1 | .podlove-service-link { 2 | display: none; 3 | cursor: pointer; 4 | } 5 | 6 | .podlove-contributor-list-social-logo { 7 | width: 16px; 8 | } 9 | 10 | ul.podlove-contributor-social-list, ul.podlove-contributor-social-list li { 11 | margin: 0px; 12 | padding: 0px; 13 | } -------------------------------------------------------------------------------- /lib/modules/social/images/icons/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/500px.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/aboutme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/aboutme.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/adn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/adn.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/amazonwishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/amazonwishlist.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/auphonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/auphonic.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/bandcamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/bandcamp.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/bitbucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/bitbucket.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/bitcoin.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/deviantart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/deviantart.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/diaspora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/diaspora.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/dogecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/dogecoin.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/dribbble.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/email.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/facebook.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/fediverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/fediverse.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/flattr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/flattr.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/flickr.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/foursquare.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/friendica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/friendica.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/genericwishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/genericwishlist.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/github.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/gittip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/gittip.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/googleplus.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/instagram.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/jabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/jabber.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/lastfm.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/letterboxd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/letterboxd.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/liberapay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/liberapay.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/linkedin.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/litecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/litecoin.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/mastodon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/mastodon.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/matrix.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/miiverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/miiverse.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/openstreetmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/openstreetmap.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/orcid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/orcid.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/patreon.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/paypal.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/pinboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/pinboard.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/pinterest.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/prezi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/prezi.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/psn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/psn.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/researchgate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/researchgate.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/scopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/scopus.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/skype.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/slideshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/slideshare.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/soundcloud.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/soup.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/spreaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/spreaker.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/steady.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/steady.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/steam.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/strava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/strava.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/studivz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/studivz.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/thomann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/thomann.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/threema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/threema.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/trakt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/trakt.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/tumblr.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/twitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/twitch.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/twitter.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/untappd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/untappd.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/vimeo.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/werkenntwen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/werkenntwen.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/wikipedia.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/social/images/icons/www.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/www.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/xbox.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/xboxlive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/xboxlive.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/xing.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/yelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/yelp.png -------------------------------------------------------------------------------- /lib/modules/social/images/icons/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/social/images/icons/youtube.png -------------------------------------------------------------------------------- /lib/modules/social/templates/podcast-donations-list.twig: -------------------------------------------------------------------------------- 1 | 15 | 16 | -------------------------------------------------------------------------------- /lib/modules/social/templates/podcast-social-media-list.twig: -------------------------------------------------------------------------------- 1 | 15 | 16 | -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/button.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/fonts/podlove/Podlove.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/fonts/podlove/Podlove.eot -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/fonts/podlove/Podlove.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/fonts/podlove/Podlove.ttf -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/fonts/podlove/Podlove.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/fonts/podlove/Podlove.woff -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/fonts/roboto_light/Roboto-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/fonts/roboto_light/Roboto-Light-webfont.eot -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/fonts/roboto_light/Roboto-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/fonts/roboto_light/Roboto-Light-webfont.ttf -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/fonts/roboto_light/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/fonts/roboto_light/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/fonts/roboto_medium/Roboto-Medium-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/fonts/roboto_medium/Roboto-Medium-webfont.eot -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/fonts/roboto_medium/Roboto-Medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/fonts/roboto_medium/Roboto-Medium-webfont.ttf -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/fonts/roboto_medium/Roboto-Medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/fonts/roboto_medium/Roboto-Medium-webfont.woff -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/acast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/acast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/antennapod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/antennapod.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/beyondpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/beyondpod.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/chakouat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/chakouat.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/doggcatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/doggcatcher.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/playerfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/playerfm.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/pocketcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/podcastaddict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/podcastaddict.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/podcastrepublic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/podcastrepublic.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/podcatcher-deluxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/podcatcher-deluxe.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/podkicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/podkicker.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/shortorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/shortorange.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/android/upod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/android/upod.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/blackberry/bpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/blackberry/bpod.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/blackberry/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/blackberry/gpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/cloud/gpoddernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/cloud/gpoddernet.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/cloud/instacastcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/cloud/instacastcloud.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/cloud/playerfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/cloud/playerfm.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/cloud/pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/cloud/pocketcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/cloud/shortorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/cloud/shortorange.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/generic/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/generic/android.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/generic/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/generic/rss.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/generic/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/generic/windows.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/generic/windows8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/generic/windows8.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/generic/windowsphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/generic/windowsphone.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/icon-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/icon-big.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/icon-big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/icon-big@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/icon-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/icon-medium.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/icon-medium@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/icon-medium@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/icon-small.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/icon-small@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/castro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/castro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/downcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/downcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/icatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/icatcher.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/instacast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/instacast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/overcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/overcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/pocketcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/podcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/podcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/podcat.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/podgrasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/podgrasp.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/podwrangler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/podwrangler.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/rssradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/rssradio.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/shortorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/shortorange.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/ios/sleekcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/ios/sleekcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/linux/clementine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/linux/clementine.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/linux/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/linux/gpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/linux/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/linux/miro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/osx/downcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/osx/downcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/osx/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/osx/gpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/osx/instacast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/osx/instacast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/osx/itunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/osx/itunes.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/osx/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/osx/miro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/osx/podgrasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/osx/podgrasp.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/osx/podsnatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/osx/podsnatcher.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/android.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/apple-app-store-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/apple-app-store-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/blackberry-world-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/blackberry-world-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/google-play-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/google-play-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/ios.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/osx.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/windows-phone-store-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/windows-phone-store-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/windows-store-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/windows-store-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/windows8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/windows8.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/windows81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/windows81.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/stores/windowsphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/stores/windowsphone.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windows/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windows/gpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windows/itunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windows/itunes.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windows/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windows/miro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windows/podscout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windows/podscout.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/bringcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/bringcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/gramocast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/gramocast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/ipodcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/ipodcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/pcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/pcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/podcastbrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/podcastbrain.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/podcastlounge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/podcastlounge.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/podcastpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/podcastpicker.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/podcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/podcastspro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/podcastspro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/images/windowsphone/wpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/images/windowsphone/wpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/javascripts/app.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/javascripts/app.js.gz -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/stylesheets/app.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/stylesheets/app.css.gz -------------------------------------------------------------------------------- /lib/modules/subscribe_button/dist/stylesheets/app.css.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/dist/stylesheets/app.css.map.gz -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/button.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/fonts/podlove/Podlove.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/fonts/podlove/Podlove.eot -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/fonts/podlove/Podlove.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/fonts/podlove/Podlove.ttf -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/fonts/podlove/Podlove.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/fonts/podlove/Podlove.woff -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/fonts/roboto_light/Roboto-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/fonts/roboto_light/Roboto-Light-webfont.eot -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/fonts/roboto_light/Roboto-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/fonts/roboto_light/Roboto-Light-webfont.ttf -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/fonts/roboto_light/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/fonts/roboto_light/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/fonts/roboto_medium/Roboto-Medium-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/fonts/roboto_medium/Roboto-Medium-webfont.eot -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/fonts/roboto_medium/Roboto-Medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/fonts/roboto_medium/Roboto-Medium-webfont.ttf -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/fonts/roboto_medium/Roboto-Medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/fonts/roboto_medium/Roboto-Medium-webfont.woff -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/acast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/acast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/acast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/acast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/acast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/acast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/acast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/acast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/antennapod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/antennapod.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/antennapod@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/antennapod@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/antennapod@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/antennapod@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/antennapod@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/antennapod@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/beyondpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/beyondpod.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/beyondpod@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/beyondpod@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/beyondpod@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/beyondpod@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/beyondpod@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/beyondpod@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/chakouat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/chakouat.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/chakouat@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/chakouat@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/chakouat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/chakouat@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/chakouat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/chakouat@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/doggcatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/doggcatcher.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/doggcatcher@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/doggcatcher@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/doggcatcher@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/doggcatcher@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/doggcatcher@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/doggcatcher@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/playerfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/playerfm.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/playerfm@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/playerfm@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/playerfm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/playerfm@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/playerfm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/playerfm@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/pocketcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/pocketcasts@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/pocketcasts@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/pocketcasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/pocketcasts@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/pocketcasts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/pocketcasts@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcastaddict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcastaddict.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcastaddict@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcastaddict@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcastaddict@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcastaddict@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcastaddict@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcastaddict@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcastrepublic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcastrepublic.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@1x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@1x.jpg -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@2x.jpg -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@3x.jpg -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podcatcher-deluxe@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podkicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podkicker.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podkicker@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podkicker@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podkicker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podkicker@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/podkicker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/podkicker@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/shortorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/shortorange.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/shortorange@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/shortorange@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/shortorange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/shortorange@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/shortorange@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/shortorange@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/upod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/upod.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/upod@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/upod@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/upod@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/upod@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/android/upod@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/android/upod@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/blackberry/bpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/blackberry/bpod.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/blackberry/bpod@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/blackberry/bpod@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/blackberry/bpod@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/blackberry/bpod@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/blackberry/bpod@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/blackberry/bpod@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/blackberry/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/blackberry/gpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/blackberry/gpodder@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/blackberry/gpodder@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/blackberry/gpodder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/blackberry/gpodder@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/blackberry/gpodder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/blackberry/gpodder@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/gpoddernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/gpoddernet.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/gpoddernet@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/gpoddernet@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/gpoddernet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/gpoddernet@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/gpoddernet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/gpoddernet@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/instacastcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/instacastcloud.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/instacastcloud@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/instacastcloud@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/instacastcloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/instacastcloud@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/instacastcloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/instacastcloud@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/playerfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/playerfm.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/playerfm@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/playerfm@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/playerfm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/playerfm@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/playerfm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/playerfm@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/pocketcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/pocketcasts@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/pocketcasts@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/pocketcasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/pocketcasts@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/pocketcasts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/pocketcasts@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/shortorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/shortorange.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/shortorange@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/shortorange@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/shortorange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/shortorange@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/cloud/shortorange@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/cloud/shortorange@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/android.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/android@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/android@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/android@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/android@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/android@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/android@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/rss.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/rss@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/rss@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/rss@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/rss@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/rss@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/rss@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windows.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windows8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windows8.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windows8@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windows8@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windows8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windows8@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windows8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windows8@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windows@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windows@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windows@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windows@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windows@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windowsphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windowsphone.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windowsphone@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windowsphone@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windowsphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windowsphone@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/generic/windowsphone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/generic/windowsphone@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/icon-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/icon-big.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/icon-big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/icon-big@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/icon-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/icon-medium.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/icon-medium@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/icon-medium@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/icon-small.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/icon-small@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/castro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/castro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/castro@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/castro@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/castro@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/castro@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/castro@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/castro@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/downcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/downcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/downcast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/downcast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/downcast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/downcast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/downcast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/downcast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/icatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/icatcher.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/icatcher@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/icatcher@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/icatcher@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/icatcher@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/icatcher@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/icatcher@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/instacast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/instacast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/instacast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/instacast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/instacast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/instacast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/instacast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/instacast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/overcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/overcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/overcast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/overcast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/overcast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/overcast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/overcast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/overcast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/pocketcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/pocketcasts@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/pocketcasts@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/pocketcasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/pocketcasts@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/pocketcasts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/pocketcasts@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podcasts@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podcasts@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podcasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podcasts@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podcasts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podcasts@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podcat.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podcat@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podcat@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podcat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podcat@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podcat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podcat@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podgrasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podgrasp.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podwrangler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podwrangler.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podwrangler@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podwrangler@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podwrangler@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podwrangler@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/podwrangler@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/podwrangler@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/rssradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/rssradio.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/rssradio@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/rssradio@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/rssradio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/rssradio@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/rssradio@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/rssradio@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/shortorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/shortorange.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/shortorange@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/shortorange@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/shortorange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/shortorange@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/shortorange@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/shortorange@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/sleekcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/sleekcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/sleekcast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/sleekcast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/sleekcast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/sleekcast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/ios/sleekcast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/ios/sleekcast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/clementine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/clementine.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/clementine@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/clementine@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/clementine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/clementine@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/clementine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/clementine@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/gpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/gpodder@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/gpodder@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/gpodder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/gpodder@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/gpodder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/gpodder@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/miro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/miro@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/miro@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/miro@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/miro@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/linux/miro@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/linux/miro@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/downcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/downcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/downcast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/downcast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/downcast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/downcast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/downcast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/downcast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/gpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/gpodder@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/gpodder@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/gpodder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/gpodder@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/gpodder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/gpodder@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/instacast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/instacast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/instacast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/instacast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/instacast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/instacast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/instacast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/instacast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/itunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/itunes.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/itunes@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/itunes@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/itunes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/itunes@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/itunes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/itunes@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/miro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/miro@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/miro@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/miro@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/miro@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/miro@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/miro@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/podgrasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/podgrasp.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/podsnatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/podsnatcher.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/podsnatcher@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/podsnatcher@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/podsnatcher@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/podsnatcher@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/osx/podsnatcher@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/osx/podsnatcher@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/android.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/apple-app-store-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/apple-app-store-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/apple-app-store-en@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/apple-app-store-en@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/apple-app-store-en@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/apple-app-store-en@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/apple-app-store-en@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/apple-app-store-en@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/blackberry-world-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/blackberry-world-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/blackberry-world-en@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/blackberry-world-en@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/blackberry-world-en@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/blackberry-world-en@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/blackberry-world-en@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/blackberry-world-en@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/google-play-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/google-play-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/google-play-en@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/google-play-en@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/google-play-en@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/google-play-en@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/google-play-en@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/google-play-en@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/ios.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/osx.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows-phone-store-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows-phone-store-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows-phone-store-en@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows-phone-store-en@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows-phone-store-en@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows-phone-store-en@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows-phone-store-en@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows-phone-store-en@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows-store-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows-store-en.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows-store-en@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows-store-en@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows-store-en@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows-store-en@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows-store-en@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows-store-en@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows8.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windows81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windows81.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/stores/windowsphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/stores/windowsphone.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/gpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/gpodder@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/gpodder@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/gpodder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/gpodder@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/gpodder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/gpodder@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/itunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/itunes.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/itunes@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/itunes@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/itunes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/itunes@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/itunes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/itunes@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/miro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/miro@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/miro@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/miro@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/miro@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/miro@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/miro@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/podscout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/podscout.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/podscout@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/podscout@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/podscout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/podscout@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windows/podscout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windows/podscout@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/bringcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/bringcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/bringcast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/bringcast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/bringcast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/bringcast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/bringcast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/bringcast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/gramocast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/gramocast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/gramocast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/gramocast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/gramocast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/gramocast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/gramocast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/gramocast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/ipodcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/ipodcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/ipodcast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/ipodcast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/ipodcast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/ipodcast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/ipodcast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/ipodcast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/pcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/pcast.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/pcast@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/pcast@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/pcast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/pcast@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/pcast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/pcast@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastbrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastbrain.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastbrain@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastbrain@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastbrain@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastbrain@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastbrain@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastbrain@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastlounge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastlounge.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastlounge@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastlounge@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastlounge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastlounge@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastlounge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastlounge@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastpicker.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastpicker@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastpicker@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastpicker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastpicker@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastpicker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastpicker@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcasts.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcasts@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcasts@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcasts@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcasts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcasts@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastspro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastspro.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastspro@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastspro@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastspro@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastspro@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/podcastspro@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/podcastspro@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/wpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/wpodder.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/wpodder@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/wpodder@1x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/wpodder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/wpodder@2x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/images/windowsphone/wpodder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/images/windowsphone/wpodder@3x.png -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/javascripts/app.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/javascripts/app.js.gz -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/stylesheets/app.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/stylesheets/app.css.gz -------------------------------------------------------------------------------- /lib/modules/subscribe_button/js/dist/stylesheets/app.css.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-publisher/0142068878a3cb51e1aac3dbe16e070ba0fd4db0/lib/modules/subscribe_button/js/dist/stylesheets/app.css.map.gz -------------------------------------------------------------------------------- /lib/php/array.php: -------------------------------------------------------------------------------- 1 | page_type = 'custom'; 17 | add_action('podlove_expert_settings_page', [$this, 'register_page']); 18 | } 19 | 20 | public function register_page() 21 | { 22 | $file_type = new \Podlove\Settings\FileType('podlove_settings_settings_handle'); 23 | $file_type->page(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lib/settings/help/dashboard.php: -------------------------------------------------------------------------------- 1 | [ 4 | // 'title' => __('Tab Title', 'podlove-podcasting-plugin-for-wordpress'), 5 | // 'content' => 6 | // '

' 7 | // . __('Tab Content', 'podlove-podcasting-plugin-for-wordpress') 8 | // . '

' 9 | // ] 10 | return [ 11 | ]; 12 | -------------------------------------------------------------------------------- /lib/settings/help/episode_asset.php: -------------------------------------------------------------------------------- 1 | [ 4 | // 'title' => __('Tab Title', 'podlove-podcasting-plugin-for-wordpress'), 5 | // 'content' => 6 | // '

' 7 | // . __('Tab Content', 'podlove-podcasting-plugin-for-wordpress') 8 | // . '

' 9 | // ] 10 | return [ 11 | ]; 12 | -------------------------------------------------------------------------------- /lib/settings/help/modules.php: -------------------------------------------------------------------------------- 1 | [ 4 | // 'title' => __('Tab Title', 'podlove-podcasting-plugin-for-wordpress'), 5 | // 'content' => 6 | // '

' 7 | // . __('Tab Content', 'podlove-podcasting-plugin-for-wordpress') 8 | // . '

' 9 | // ] 10 | return [ 11 | ]; 12 | -------------------------------------------------------------------------------- /lib/settings/help/podcast.php: -------------------------------------------------------------------------------- 1 | [ 4 | // 'title' => __('Tab Title', 'podlove-podcasting-plugin-for-wordpress'), 5 | // 'content' => 6 | // '

' 7 | // . __('Tab Content', 'podlove-podcasting-plugin-for-wordpress') 8 | // . '

' 9 | // ] 10 | return [ 11 | ]; 12 | -------------------------------------------------------------------------------- /lib/settings/help/settings.php: -------------------------------------------------------------------------------- 1 | [ 4 | // 'title' => __('Tab Title', 'podlove-podcasting-plugin-for-wordpress'), 5 | // 'content' => 6 | // '

' 7 | // . __('Tab Content', 'podlove-podcasting-plugin-for-wordpress') 8 | // . '

' 9 | // ] 10 | return [ 11 | ]; 12 | -------------------------------------------------------------------------------- /lib/settings/help/support.php: -------------------------------------------------------------------------------- 1 | [ 4 | // 'title' => __('Tab Title', 'podlove-podcasting-plugin-for-wordpress'), 5 | // 'content' => 6 | // '

' 7 | // . __('Tab Content', 'podlove-podcasting-plugin-for-wordpress') 8 | // . '

' 9 | // ] 10 | return [ 11 | ]; 12 | -------------------------------------------------------------------------------- /lib/settings/help/templates.php: -------------------------------------------------------------------------------- 1 | [ 4 | // 'title' => __('Tab Title', 'podlove-podcasting-plugin-for-wordpress'), 5 | // 'content' => 6 | // '

' 7 | // . __('Tab Content', 'podlove-podcasting-plugin-for-wordpress') 8 | // . '

' 9 | // ] 10 | return [ 11 | ]; 12 | -------------------------------------------------------------------------------- /publisher.code-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [{ 3 | "path": ".", 4 | "name": "Podlove Publisher" 5 | }, 6 | { 7 | "path": "../../..", 8 | "name": "WordPress" 9 | } 10 | ], 11 | "settings": {} 12 | } 13 | -------------------------------------------------------------------------------- /templates/shortcode/downloads-buttons.twig: -------------------------------------------------------------------------------- 1 | 12 |
13 | -------------------------------------------------------------------------------- /vetur.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | projects: [ 3 | { 4 | root: './client', 5 | }, 6 | ], 7 | } 8 | -------------------------------------------------------------------------------- /views/settings/dashboard/news.php: -------------------------------------------------------------------------------- 1 | 10 | 20 |