Sublime Forum

Package not showing up in Package Control

#1

Hi,

I wrote a small package that I submitted to the Package Control default channel following the steps in https://packagecontrol.io/docs/submitting_a_package using the following configuration:

{
	"name": "Linearize XML",
	"details": "https://bitbucket.org/flansch/sublimetext-linearizexml/",
	"releases": [
		{
			"sublime_text": "*",
			"tags": true
		}
	]
}

My pull request has been merged some time ago but when I’m searching for my package on packagecontrol.io or inside Sublime Text it is not showing up.

Does anyone have an idea how to find out why my package is missing?

Thank you
Daniel

0 Likes

#2

There was a problem reported a couple of months ago regarding packages on BitBucket being missing, and the ultimate reason is that Package Control uses the version 1 API for downloading packages, which has been deprecated in favor of a new one.

The result of that is that any existing package that is on BitBucket shows as missing on the PackageControl website because the crawler can’t get updated information on it, and any newly added package will not show up in the listing for the same reason.

There is a forthcoming fix for this, but it hasn’t been released yet as far as I’m aware.

0 Likes

#3

Thank you for the hint, @OdatNurd. I compared my package to some others but didn’t realize that ‘bitbucket’ was the problem :slight_smile:.

0 Likes