You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, yesterday my plugin PDF++ was approved by the Obsidian team and made available in the official plugin browser, then I've noticed that the official download count (about 600) of my plugin is significantly lower than the number of downloads made via BRAT (over 4000).
So here's the problem: BRAT seems to download manifest.json from the repository, not from the release, and this leads to a significant underestimation of downloads.
So I'd like to suggest the following:
First, look at the manifest in the repository (HEAD) and determine which version to download.
Then, don't download the found manifest (manifest.json or manifest-beta.json), and instead, download manifest.json from the corresponding release, not from the repository content.
Alternatively, it will also make sense to download the manifest from the repository if manifest-beta.json is found so that pure-beta releases won't affect the stats.
Download main.js and styles.css as well.
This way, the official download stats will reflect the number of downloads made via BRAT. Thank you!
The text was updated successfully, but these errors were encountered:
Hi, yesterday my plugin PDF++ was approved by the Obsidian team and made available in the official plugin browser, then I've noticed that the official download count (about 600) of my plugin is significantly lower than the number of downloads made via BRAT (over 4000).
I counted BRAT downloads by this script: https://forum.obsidian.md/t/plotting-download-counts-of-my-github-project-using-obsidian-charts-and-dataviewjs/67411
It sums up the
download_counts
of main.js for all releases.On the other hand, Obsidian's official download count is the total number of downloads of
manifest.json
from all releases.https://github.com/obsidianmd/obsidian-releases/blob/master/.github/workflows/plugin-stat.yml
So here's the problem: BRAT seems to download
manifest.json
from the repository, not from the release, and this leads to a significant underestimation of downloads.So I'd like to suggest the following:
manifest.json
ormanifest-beta.json
), and instead, downloadmanifest.json
from the corresponding release, not from the repository content.manifest-beta.json
is found so that pure-beta releases won't affect the stats.main.js
andstyles.css
as well.This way, the official download stats will reflect the number of downloads made via BRAT. Thank you!
The text was updated successfully, but these errors were encountered: