Nathan Sobo
71fb063a67
Un-f
2014-06-28 15:24:24 +01:00
Nathan Sobo
b376bd8688
Fix scrollbar dragging in React editor
...
Fixes #2751
2014-06-28 11:33:41 +01:00
Daniel Hengeveld
126d0d1b3c
Add stability message for Atom.io API
...
This indicates that the Atom.io API is not frozen - this is describing the state
of things, not announcing a new policy.
2014-06-27 12:33:50 -07:00
probablycorey
e068d3d293
Merge remote-tracking branch 'origin/master' into cj-dh-publish-docs
2014-06-27 11:04:23 -07:00
probablycorey
a49221e359
Upgrade to language-go@v0.13.0
2014-06-27 10:32:14 -07:00
probablycorey
e7aef25f1f
Update tokenized buffer specs
2014-06-27 10:18:04 -07:00
probablycorey
071b391994
Describe surrogate pair as UTF-8 surrogate pair
2014-06-27 10:17:28 -07:00
probablycorey
7b11343ea8
Remove semi-colon
2014-06-27 09:37:05 -07:00
probablycorey
d25f432400
Upgrade to tree-view@v0.108.0
2014-06-27 09:36:12 -07:00
probablycorey
2e16f2dc3f
Upgrade to first-mate@1.7.1
2014-06-27 09:31:19 -07:00
probablycorey
f828b91686
Only prepare docs on darwin platforms.
2014-06-27 08:53:43 -07:00
probablycorey
3f4210c293
Only publish build if on janky and using the master branch
2014-06-27 08:52:12 -07:00
Kevin Sawicki
0f7b97821b
Upgrade ot markdown-preview@0.85
2014-06-27 12:44:20 +01:00
Kevin Sawicki
efa457bade
Upgrade to settings-view@0.129
2014-06-27 12:33:06 +01:00
Kevin Sawicki
61188cb05f
Upgrade to image-view@0.36
2014-06-27 09:42:26 +01:00
Kevin Sawicki
69c3001836
Upgrade to language-javascript@0.30
2014-06-27 09:35:01 +01:00
probablycorey
81afb89d27
Copy API docs to the build dir
2014-06-26 16:14:54 -07:00
Corey Johnson & Daniel Hengeveld
2107b10778
Add upload-assets grunt task
2014-06-26 15:02:18 -07:00
Corey Johnson & Daniel Hengeveld
bc31f94833
Add getAssets method
2014-06-26 15:01:26 -07:00
Corey Johnson & Daniel Hengeveld
58c2cec787
Rename sourceName to sourcePath
2014-06-26 14:37:21 -07:00
Corey Johnson & Daniel Hengeveld
2c95af63e6
Rename zipApp to zipAssets
2014-06-26 14:33:09 -07:00
Corey Johnson & Daniel Hengeveld
8a377c9339
Make docs output dir a config var
2014-06-26 14:30:43 -07:00
Corey Johnson & Daniel Hengeveld
e21f561af5
Add Daniel to pairs file
2014-06-26 14:25:40 -07:00
probablycorey
ccb01c23d2
💄 Add spacing between packages and languages packages
2014-06-26 11:53:37 -07:00
probablycorey
3bc50c9b2c
Upgrade to language-javascript@v0.29.0
2014-06-26 11:52:52 -07:00
probablycorey
18c5f9c8de
Upgrade to tree-view@0.107.0
2014-06-26 11:52:06 -07:00
Ben Ogle
7179bc5af1
Merge pull request #2738 from atom/bo-fix-max-scroll-width
...
Fix max scroll width in react editor
2014-06-25 18:16:32 -07:00
Nathan Sobo
3bf0c73170
Assign line width explicitly to prevent full screen repaints
...
Fixes #2746
2014-06-25 19:13:50 -06:00
Nathan Sobo
95242c8c82
Merge pull request #2747 from atom/ns-set-immediate
...
Use setImmediate instead of nextTick to batch React editor updates
2014-06-25 18:48:47 -06:00
Nathan Sobo
eb84737109
Fix specs for use of setImmediate instead of nextTick in requestUpdate
2014-06-25 18:38:06 -06:00
Nathan Sobo
2b54c9bebe
Use setImmediate to batch all editor updates, even in animation frames
...
When I was using nextTick to batch updates, there were issues with
flicker. So I was attempting to always update synchronously in animation
frames, which was complicated. setImmediate doesn't cause the flicker
however, so I'm able to remove the special logic for sync updates in
animation frames and just use it across the board.
2014-06-25 18:20:49 -06:00
Nathan Sobo
63e8099088
Allow successive accented characters to be inserted in React editor
...
Refs #2732
Because we're only checking the length of the input element's selection
in the React editor on textinput events and not also its content, we
were mistaking some IME compositions as accented character menu
insertions. Clearing the content of the input on 'compositionend'
prevents this issue.
2014-06-25 18:19:53 -06:00
Ben Ogle & Nathan Sobo
f739dce210
Only recompute scroll width once for each batch of measured chars
2014-06-25 15:26:13 -07:00
Ben Ogle & Nathan Sobo
77389b0518
Update scrollWidth when the max line length / default char width changes
2014-06-25 15:26:13 -07:00
Ben Ogle
809804d0cc
💄
2014-06-25 15:26:13 -07:00
Ben Ogle
8054b769d6
Default scrollWidth to 0
2014-06-25 15:26:13 -07:00
Ben Ogle
e3c3779a73
Don’t need to return the list. So just return
2014-06-25 15:26:13 -07:00
Ben Ogle
196f64d846
Fix specs
2014-06-25 15:26:13 -07:00
Ben Ogle
9cc1244f32
Compute the longest line width based on the longest line
2014-06-25 15:26:13 -07:00
Ben Ogle
1c69995bb6
Upgrade command-palette with better description
2014-06-25 15:04:26 -07:00
Kevin Sawicki
7c4cbd8bf9
Upgrade to open-on-github@0.29.0
2014-06-25 13:04:51 -07:00
probablycorey
570f59a7e2
Upgrade to tree-view@0.106.0
2014-06-25 10:06:33 -07:00
Nathan Sobo
8d71e3f69a
Merge pull request #2740 from atom/bo-round-scroll-vars
...
Never allow partial pixel values for scroll
2014-06-25 09:45:47 -06:00
Kevin Sawicki
0263d72551
Upgrade to language-gfm@0.42
2014-06-25 08:30:37 -07:00
Kevin Sawicki
9299ff3404
📝 Remove observeConfig
...
Replaced with subscribe/atom.config.observe
Closes #2742
2014-06-25 08:11:30 -07:00
Cheng Zhao
7c79643b89
Upgrade to atom-shell@0.13.3
2014-06-25 09:52:51 +08:00
Kevin Sawicki
6a4b4d2efd
Upgrade to language-gfm@0.41
2014-06-24 18:24:47 -07:00
Ben Ogle
d6f217f80a
Never allow partial pixel values for scroll
2014-06-24 18:09:03 -07:00
Nathan Sobo
1f94e89e56
Merge pull request #2739 from atom/ns-react-raf-vs-next-tick
...
Only perform a single synchronous update inside animation frames
2014-06-24 19:08:10 -06:00
Nathan Sobo
27a959ec16
Combine all updates that occur in an animation frame
2014-06-24 18:48:59 -06:00