asteroids
asteroids copied to clipboard
Deprecated Atom APIs will be removed June 1st
Atom will no longer load this package after June 1st without changes. There are a couple deprecations on the latest version (0.2.0
) of this package:
- Use
activationCommands
instead ofactivationEvents
in your package.json Commands should be grouped by selector as follows:json "activationCommands": { "atom-workspace": ["foo:bar", "foo:baz"], "atom-text-editor": ["foo:quux"] }
- Store package style sheets in the
styles/
directory instead ofstylesheets/
in the<pack-name>
package - atom.workspaceView is no longer available. In most cases you will not need the view. See the Workspace docs for alternatives: https://atom.io/docs/api/latest/Workspace. If you do need the view, please use
atom.views.getView(atom.workspace)
, which returns an HTMLElement. - Requiring
View
fromatom
is no longer supported. Please requireatom-space-pen-views
instead:{View} = require 'atom-space-pen-views'
Add"atom-space-pen-views": "^2.0.3"
to your package dependencies.
Visit https://gist.github.com/benogle/6d09e295c84b717ef9b4 and search for your package name to see up-to-date deprecations.
If this package has been replaced by another package or functionality in core, please reply with this information.
See https://github.com/atom/atom/issues/6867 for more info. Thanks!
@mojombo any plans to update this package to work with Atom 1.x?
@benogle This may be quite late, however...I just happened to find this package and I'm considering forking and updating it for Atom.
@mojombo update this package please 😊🙏🏾
BUMP
First person to volunteer gets commit access to bring this up to date.
@mojombo I mean, I could probably look more into it if you want...don’t get me commit access...if I have a free moment this week while on vacation I’ll be happy to at least tinker on a fork.
There are no changes in the atom API that make this not possible anymore then? @benogle @mojombo
@filipef101 I’m really really really trying to understand the point you’re trying to make, but I can’t. So do you think you can reword that? It seems contradictory.
Sorry for that. I mean, I tought that this package/game was no longer possible to implement due to API changes. It is possible to make this work again right? No API changes break the possibility of having this work again?
You’re fine, thanks for the clarification. There should be documentation about alternative API calls that could be made. Like I said, if I get the time this week I’ll be more than happy to look into it.