Skip to content

Commit b90de25

Browse files
committed
Remove Chartable links and minor style fix.
1 parent 93231b1 commit b90de25

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Then go to [Actions -> Deploy to Cloudflare Pages](../../actions/workflows/deplo
264264
<summary><b>How can I track podcast / video / image downloads?</b></summary>
265265

266266
To track podcast, video, or image downloads with microfeed, you can use the tracking URLs feature.
267-
This allows you to set up third-party tracking URLs for your media files, such as those provided by [OP3](https://op3.dev/), [Podtrac](http://analytics.podtrac.com/), [Chartable](https://chartable.com/)...
267+
This allows you to set up third-party tracking URLs for your media files, such as those provided by [OP3](https://op3.dev/), [Podtrac](http://analytics.podtrac.com/)...
268268

269269
To set up tracking URLs, you will need to go to Settings / Tracking URLs:
270270
![Screenshot 2023-01-05 at 7 57 02 AM](https://user-images.githubusercontent.com/1719237/210665674-39f9b0a9-1f28-4608-b0cd-c67b8a5c87ec.png)

client-src/ClientAdminItemsApp/components/EditItemApp/FormExplainTexts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const CONTROLS_TEXTS_DICT = {
4444
"if it's a self-hosted photo album, then a media file should be a high-definition image; " +
4545
"if it's a content curation site, then a media file could be an external url (e.g., an article url from New York Times).<br>" +
4646
"To track download stats of a media file, you can add 3rd-party tracking urls " +
47-
"(e.g., <a href='https://op3.dev/'>OP3</a>, <a href='http://analytics.podtrac.com/'>Podtrac</a>, <a href='https://chartable.com/'>Chartable</a>...) at <a href='/admin/settings/'>Settings / Tracking urls</a>.",
47+
"(e.g., <a href='https://op3.dev/'>OP3</a>, <a href='http://analytics.podtrac.com/'>Podtrac</a>...) at <a href='/admin/settings/'>Settings / Tracking urls</a>.",
4848
rss: '<channel><item><enclosure url="https://cdn-site.com/audio.mp3" type="audio/mpeg" length="277000"/><itunes:duration>00:21:02</itunes:duration></item></channel>',
4949
json: '{ "items": [{"attachments": [{"url": "https://cdn-site.com/audio.mp3", "mime_type": "audio/mpeg", "size_in_byte": 277000, "duration_in_seconds": 1262 }], "_microfeed": {"duration_hhmmss": "00:21:02"}}] }',
5050
},

client-src/ClientAdminItemsApp/components/EditItemApp/index.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,15 +408,14 @@ export default class EditItemApp extends React.Component {
408408
<div className="lh-page-card mt-4 flex justify-center">
409409
<a
410410
href="#"
411-
className="text-red-500 text-sm"
412411
onClick={(e) => {
413412
e.preventDefault();
414413
const ok = confirm('Are you going to permanently delete this item?');
415414
if (ok) {
416415
this.onDelete();
417416
}
418417
}
419-
}><div className="flex items-center">
418+
}><div className="flex items-center text-red-500 text-sm hover:text-brand-light">
420419
<TrashIcon className="w-4" />
421420
<div className="ml-1">Delete this item</div>
422421
</div>

client-src/ClientAdminSettingsApp/components/TrackingSettingsApp/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default class TrackingSettingsApp extends React.Component {
4646
</div>
4747
<div className="mt-4 text-xs text-helper-color">
4848
microfeed will automatically add 3rd-party tracking urls (e.g., <a href="https://op3.dev/">OP3</a>, <a
49-
href="http://analytics.podtrac.com/">Podtrac</a>, <a href="https://chartable.com/">Chartable</a>...) before the url of a media file, so you can easily track download stats. This is a <a href="https://lowerstreet.co/blog/podcast-tracking" target="_blank" rel="noopener noreferrer">common practice in the podcast industry</a>.
49+
href="http://analytics.podtrac.com/">Podtrac</a>...) before the url of a media file, so you can easily track download stats. This is a <a href="https://lowerstreet.co/blog/podcast-tracking" target="_blank" rel="noopener noreferrer">common practice in the podcast industry</a>.
5050
</div>
5151
{urls.length > 0 && <div className="mt-4 text-xs break-all text-helper-color">
5252
<div className="mb-2">

0 commit comments

Comments
 (0)