Ben Ogle
a47782ddd8
Fix context menu docs Closes #4963
2015-01-09 13:28:57 -08:00
Nathan Sobo
0a5b4f9b33
Make “style sheet” two words in package.json metadata
...
Rename `stylesheets` -> `styleSheets`
Rename `stylesheetsMain` -> `mainStyleSheet`
2015-01-09 09:04:04 -08:00
Nathan Sobo
c078f64293
Rename package stylesheets/ directory to styles/
2015-01-09 08:42:15 -08:00
Nathan Sobo
7f9d06f55b
Move TextEditor::pixelPositionForScreen/BufferPosition to view layer
...
It doesn’t make sense to talk about pixels at the model layer long-term,
even though we currently store view dimension information in the model
so we don’t have to read from the DOM for optimization purposes. This
information is only available if the view is attached, however, making
these methods a liability on the model layer.
2015-01-09 08:22:45 -08:00
Nathan Sobo
c3efed0a2c
Update deprecation messages
2015-01-08 18:21:07 -08:00
Nathan Sobo
a945725a2f
Add shims for tests that manually dispatch deprecated events
2015-01-08 17:51:11 -08:00
Nathan Sobo
723b4d2787
Fix undefined Grim references
2015-01-08 17:51:11 -08:00
Nathan Sobo
4ab33890fc
Add PackageManager::onDidLoad/UnloadPackage
...
Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com >
2015-01-08 17:51:11 -08:00
Nathan Sobo
7acf3d4d6b
Add PackageManager::onDidDeactivatePackage
2015-01-08 17:51:11 -08:00
Nathan Sobo
a6c9244c77
Add PackageManager::onDidActivatePackage
...
Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com >
2015-01-08 17:51:11 -08:00
Nathan Sobo
18ac0091a8
Don’t call onDidActivateInitialPackages listeners until the right time
...
We wait until all packages without activation commands actually
activate.
Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com >
2015-01-08 17:51:11 -08:00
Nathan Sobo
010bd643c0
Rename onDidActivateAll -> onDidActivateInitialPackages
...
Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com >
2015-01-08 17:51:11 -08:00
Nathan Sobo
15fa19efa3
Rename onDidLoadAll -> onDidLoadInitialPackages
...
Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com >
2015-01-08 17:51:11 -08:00
Nathan Sobo
30513cfde0
Rename ThemeManager methods for clarity/consistency
...
Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com >
2015-01-08 17:51:09 -08:00
Nathan Sobo
d999b4eca0
Deprecate ThemeManager::setEnabledThemes
...
Suggest direct config write instead.
Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com >
2015-01-08 17:48:32 -08:00
Nathan Sobo
caf613e7c8
Associate packageName metadata with scoped-properties/ deprecation
...
Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com >
2015-01-08 17:41:50 -08:00
Kevin Sawicki
453a44dde3
Use special compile cache when sudo-ing as root
2015-01-08 10:18:54 -08:00
dominic
c806fcf9e7
📝 Fix PackageManager::onDidLoadAll description
2015-01-08 09:42:49 +00:00
Kevin Sawicki
081fc0e1ae
Use icon from resources directory
2015-01-07 16:22:11 -08:00
Kevin Sawicki
2cb13e1a66
Remove lint warning
2015-01-07 14:33:18 -08:00
Kevin Sawicki
97e0ddf15d
Null out mainPath on resolve errors
...
The scope of this variable is outside the loop so this prevent
cache corruption based on using the mainPath value from previous
module.
Refs atom/atom-space-pen-views#5
2015-01-07 10:53:33 -08:00
Kevin Sawicki
fb3cc5554c
Catch errors spawning squirrel
...
Closes #4895
2015-01-07 10:24:19 -08:00
Kevin Sawicki
6fe7eb086f
Gracefully handle empty keymaps and menus
...
Closes atom/settings-view#310
2015-01-07 09:18:57 -08:00
Nathan Sobo
f77f48102c
Merge pull request #4879 from atom/ns-style-priorities
...
Use 'priority' to correctly order style sheets rather than 'group'
2015-01-07 09:51:55 -07:00
Nathan Sobo
7dd67caf57
Remove ‘group’ parameter to addStyleSheet in favor of ‘priority’
2015-01-07 09:51:42 -07:00
Hiroki Sato
571d146ec0
Fix removing the dragover event listener
2015-01-07 22:49:25 +09:00
Kevin Sawicki
a606fc516b
💄
2015-01-06 20:26:45 -08:00
Nathan Sobo
2c1f8ce733
Set the style element priority based on the group
...
This ensures that elements are always in the desired order regardless
of the order the groups are added.
2015-01-06 19:41:57 -07:00
Nathan Sobo
62adc98b17
Use ‘user’ group for user style sheet instead of ‘userTheme’
2015-01-06 19:33:39 -07:00
Nathan Sobo
94e12ee886
Handle priority in when inserting style elements in style manager
2015-01-06 19:33:14 -07:00
Nathan Sobo
4c74b07b22
Order style elements by priority
2015-01-06 19:14:54 -07:00
Ben Ogle
3b5bb1501c
💄
2015-01-06 17:09:59 -08:00
Ben Ogle
8c4c15c17a
Fix colons in examples
2015-01-06 17:03:29 -08:00
Ben Ogle
f7f2f4497b
Add docs for cson format to menu manager
2015-01-06 16:51:15 -08:00
Ben Ogle
d4c4ab58b1
More information in the context menu docs
2015-01-06 16:45:31 -08:00
Kevin Sawicki
92a8701c70
Add icon and title to update dialogs
...
Closes #4718
2015-01-06 11:44:10 -08:00
Ben Ogle
74afcc58ac
Merge pull request #4858 from atom/ld-doc-project-contains
...
📝 Prevent confusion over project.contains
2015-01-06 10:49:17 -08:00
Nathan Sobo
180725799a
Unmount TextEditorComponent when TextEditorElement is detached
...
Fixes #4381
Fixes #4700
2015-01-06 11:35:26 -07:00
Lee Dohm
0b98093370
📝 Prevent confusion over project.contains
...
See https://discuss.atom.io/t/testing-for-the-existence-of-a-file/14079
2015-01-05 21:32:11 -08:00
Nathan Sobo
a8b5960bc0
Update shadow DOM config setting description
2015-01-05 13:45:42 -07:00
Lee Dohm
f73d3df233
📝 Add priority recommendation for variable-sized panels
...
Applies to #4834
2015-01-03 10:36:56 -08:00
Nathan Sobo
e192922f0e
Don’t add __spacePenView property to jQuery objects in ViewRegistry
...
This property is added as needed in our legacy SpacePen views, and is
now used to trigger a deprecation warning. We don’t want to add it to
new SpacePen views because they shouldn’t trigger deprecation warnings.
2015-01-02 12:58:49 -07:00
Max Brunsfeld
aa8b97a039
Respect options to Cursor::getBeginningOfNextWordBufferPosition
2015-01-01 23:02:24 -08:00
Max Brunsfeld
eabb498af7
Fix LanguageMode::foldAllAtIndentLevel
2014-12-30 18:10:28 -08:00
Max Brunsfeld
a1e4c0bb05
Don't use ScopedPropertyStore::getProperties
2014-12-30 16:58:16 -08:00
Nathan Sobo
7f66a2fca4
Default shadow DOM to enabled
2014-12-30 17:10:11 -06:00
Nathan Sobo
493035fe4e
Merge pull request #4606 from atom/ns-use-global-selector-in-config
...
Use `*` instead of `global` as the global selector in user settings
2014-12-30 16:37:09 -06:00
Max Brunsfeld
825c4f6098
Remove incorrect docs for ::toggleLineCommentsForBufferRows
2014-12-30 12:36:46 -08:00
Max Brunsfeld
1e0c839257
Merge pull request #4779 from ultramiraculous/typo
...
Fix typo in WorkspaceView deprecation
2014-12-30 11:41:27 -08:00
Nathan Sobo
18481789b0
Merge pull request #4801 from atom/ns-package-settings-dir
...
Load package settings from `settings` directory and deprecate `scoped-properties`
2014-12-30 13:41:13 -06:00