cfjedimaster / brackets-jsdownloader

JSDownloader
15 stars 12 forks source link

Deprecated filesystem APIs #3

Closed peterflynn closed 10 years ago

peterflynn commented 10 years ago

This extension uses one or more APIs which are deprecated as of Brackets Sprint 34 (the next release):

These APIs should continue to work for now (though please test your extension to be sure!). However, the deprecated APIs will be removed around the end of this year, so you should migrate away from them soon.

It should be fairly straightforward to migrate to the new APIs. (And if you release an updated extension requiring the new APIs, users of earlier Brackets versions will still be able to install the older release of your extension that is compatible with their build).

See this discussion thread for more background on the API changes.

cfjedimaster commented 10 years ago

I just checked, and I don't think I am using this. I was loading the NativeFileSystem library, but I don't actually use it in the extension. (I've removed it from the require list for my next update.) Most file ops are done at the Node level due to the lack of binary data support.

peterflynn commented 10 years ago

@cfjedimaster Yep, afaik it was just that unused import & commented-out code that you removed.

cfjedimaster commented 10 years ago

Woot - love bugs like this.