Nathan Sobo
8e69b0c4a0
Base font styling on the computed style of the editor element
...
Previously, font styling was always explicitly assigned via the config.
This commit is the first step in basing the font styling of the editor
on the styles assigned via CSS. This will allow the editor's
font-family, font-size, and line-height to be assigned via CSS just like
they are for any other element, which will make it easier to style mini
editors.
We still need to switch the font settings to adjust a global stylesheet
rather than updating inline styles on each editor individually.
2014-07-28 20:59:28 -06:00
Kevin Sawicki
532744b4eb
📝 Mention installed apm command
2014-07-28 18:49:53 -07:00
Kevin Sawicki
ddd89ed6d1
📝 Remove step that is only is supported on Mac
2014-07-28 18:49:03 -07:00
Kevin Sawicki
5a53e5b96a
📝 Mark mdkeb step as optional
2014-07-28 18:48:15 -07:00
Kevin Sawicki
69f84f7e6d
Merge pull request #2680 from Bengt/patch-1
...
individual descriptions for instructions
2014-07-28 18:46:51 -07:00
Kevin Sawicki
e2c65345ab
Upgrade to language-javascript@0.39
2014-07-28 18:43:32 -07:00
Bengt Lüers
f47bcddf10
individual descriptions for instructions
2014-07-29 02:33:02 +02:00
Kevin Sawicki
5e19230809
Upgrade to language-javascript@0.38
2014-07-28 17:31:46 -07:00
Kevin Sawicki
f8961fbd53
Upgrade to autocomplete@0.29
2014-07-28 17:19:45 -07:00
Kevin Sawicki
bef750cb1f
Upgrade to fs-plus 2.2.6
2014-07-28 17:11:21 -07:00
Kevin Sawicki
4e2f06aec7
Merge pull request #3098 from Bengt/patch-2
...
Update linux.md
2014-07-28 16:51:09 -07:00
Kevin Sawicki
02c47ba1ea
💄
2014-07-28 16:49:08 -07:00
Kevin Sawicki
f6cb59be47
Merge pull request #3062 from ehuss/win32-sourcemaps
...
Fix source maps for CoffeeScript on Windows.
2014-07-28 16:44:06 -07:00
Kevin Sawicki
397871a012
Upgrade to language-gfm@0.44
2014-07-28 16:04:11 -07:00
Kevin Sawicki
10239e0466
Upgrade to fs-plus 2.2.5
2014-07-28 16:03:18 -07:00
Kevin Sawicki
69ef99481b
Upgrade to language-source@0.8
2014-07-28 15:37:59 -07:00
Kevin Sawicki
fc20de82ce
Downgrade to tree-view@0.112
2014-07-28 15:34:41 -07:00
Kevin Sawicki
0232da27f5
Downgrade to symbols-view@0.62
2014-07-28 15:30:42 -07:00
Kevin Sawicki
ba452e2400
Downgrade to 0.39.0
2014-07-28 15:25:07 -07:00
Kevin Sawicki
9b5b8e7528
Downgrade to snippets@0.50
2014-07-28 15:18:27 -07:00
Kevin Sawicki
6e65947d54
Downgrade to link@0.25
2014-07-28 15:12:47 -07:00
Kevin Sawicki
93c5e241f3
Downgrade to markdown-preview@0.94
2014-07-28 15:10:32 -07:00
Kevin Sawicki
e0c61136a6
Upgrade to dev-live-reload@0.33
2014-07-28 15:07:50 -07:00
Kevin Sawicki
c5cc13ddb3
Downgrade to bracket-matcher@0.51
2014-07-28 15:03:54 -07:00
Kevin Sawicki
fd47c89f9d
Add trailing .0 for consistency
2014-07-28 15:01:25 -07:00
Kevin Sawicki
34ad902cb3
Downgrade to archive-view 0.35
2014-07-28 15:00:52 -07:00
Kevin Sawicki
9678418e56
Downgrade to apm 0.84
2014-07-28 14:58:49 -07:00
Kevin Sawicki
691d6c3b5f
Merge pull request #3032 from atom/chrome35
...
Upgrade to Chrome 35
2014-07-28 14:52:34 -07:00
Kevin Sawicki
431555195a
Merge branch 'master' into chrome35
...
Conflicts:
package.json
2014-07-28 14:40:14 -07:00
Kevin Sawicki
b0aa5e6c88
Prepare 0.121
2014-07-28 14:36:07 -07:00
Kevin Sawicki
b3c2417578
Upgrade to exception-reporting@0.19
2014-07-28 14:08:13 -07:00
Nathan Sobo
7f882b00f5
Don't allow updates to be requested for unmounted components
...
In 444c18be34
, I stopped polling the DOM
when an update was pending to prevent delay of the next animation frame.
Unfortunately, we rely on synchronously polling the DOM when an editor
view is attached to perform the initial measurement of the default char
width, which is required to position the wrap guide.
In componentWillMount, observing the config was requesting an update,
causing us to skip this synchronous update at attachment time and
position the wrap guide wrong.
This prevents update requests that occur before mount from pausing the
polling that we perform on attachment, restoring correct function to the
wrap guide.
2014-07-28 14:42:35 -06:00
Nathan Sobo
3a9aa80914
Add ReactEditorView::lineElementForScreenRow shim
2014-07-28 11:36:40 -06:00
Kevin Sawicki
3af3a0d27e
Upgrade to incompatible-packages@0.2
2014-07-28 10:25:08 -07:00
Kevin Sawicki
7e415ffdb7
Merge branch 'master' into chrome35
...
Conflicts:
package.json
2014-07-28 09:02:38 -07:00
Kevin Sawicki
e70c696fef
Upgrade to tabs@0.48
2014-07-28 09:00:54 -07:00
Kevin Sawicki
b2258d9b8a
Merge pull request #3096 from marcbachmann/patch-1
...
Remove duplicate addUrlToOpen() in browser/main.coffee
2014-07-28 08:51:18 -07:00
Kevin Sawicki
40eab806c4
Upgrade to base16-tomorrow-light-theme@0.4
2014-07-28 08:49:28 -07:00
Kevin Sawicki
319455f2da
Upgrade to language-xml@0.17
2014-07-28 08:45:18 -07:00
Kevin Sawicki
63867ba803
Upgrade to language-go@0.16
2014-07-28 08:43:52 -07:00
Nathan Sobo
393552a4b6
Take cursors off the GPU and position them on the lines layer
...
The compositor overhead is not worth it.
2014-07-27 11:47:33 -06:00
Nathan Sobo
444c18be34
Stop polling when an update is pending
2014-07-27 11:46:22 -06:00
Nathan Sobo
dca096b8e3
Use requestAnimationFrame to batch updates in Chrome 35
...
In Chrome 31, setImmediate was yielding better behavior. But now Chrome
35 seems to behave more smoothly when we use requestAnimationFrame, and
the delay for keystrokes is non-existent.
2014-07-27 11:46:22 -06:00
Nathan Sobo
57a03e7884
Kill dummy highlight component now that Chrome 35 fixes render artifact
...
Previously, removing the last highlight caused rendering artifacts.
Chrome 35 no longer exhibits this problem so we can remove this
workaround.
2014-07-27 11:46:22 -06:00
Cheng Zhao
fe1819f587
Revert "Don't start crash reporter on Windows."
...
This reverts commit 684f15ab89
.
2014-07-27 11:07:36 +08:00
Cheng Zhao
aa157af93e
Upgrade to atom-shell@0.14.3
2014-07-27 11:07:07 +08:00
Bengt Lüers
e011c80b07
Update linux.md
...
Add step for checking out the latest release by git tag.
2014-07-26 18:44:38 +02:00
Marc Bachmann
9ae007a6d7
Remove duplicate addUrlToOpen() in browser/main.coffee
...
I don't think that this was the desired behaviour.
I do not know if that caused a bug.
2014-07-26 10:54:15 +02:00
Kevin Sawicki
9dc59b9807
💄
2014-07-25 17:12:03 -07:00
Kevin Sawicki
15689ebfb5
📝
2014-07-25 17:11:33 -07:00