Skip to content

Commit e8296e4

Browse files
authored
Merge pull request #309 from atom-community/upstream_master
Upstream master
2 parents 75112a7 + c39c1a6 commit e8296e4

File tree

102 files changed

+1965
-919
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+1965
-919
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![Build status](https://dev.azure.com/github/Atom/_apis/build/status/Atom%20Production%20Branches?branchName=master)](https://dev.azure.com/github/Atom/_build/latest?definitionId=32&branchName=master)
44
[![Dependency Status](https://david-dm.org/atom/atom.svg)](https://david-dm.org/atom/atom)
5-
[![Join the Atom Community on Slack](https://atom-slack.herokuapp.com/badge.svg)](https://atom-slack.herokuapp.com)
65

76
Atom is a hackable text editor for the 21st century, built on [Electron](https://github.com/electron/electron), and based on everything we love about our favorite editors. We designed it to be deeply customizable, but still approachable using the default configuration.
87

@@ -59,8 +58,10 @@ An archive is available for people who don't want to install `atom` as root.
5958
This version enables you to install multiple Atom versions in parallel. It has been built on Ubuntu 64-bit,
6059
but should be compatible with other Linux distributions.
6160

62-
1. Install dependencies (on Ubuntu): `sudo apt install git gconf2 gconf-service libgtk2.0-0 libudev1 libgcrypt20 libnotify4 libxtst6 libnss3 python3 gvfs-bin xdg-utils libcap2`
63-
1. (If the `python3` package isn't available, or is too old (Python 3 should be >= 3.5), either `python2` or `python` (2.6 or 2.7) will work in its place.)
61+
1. Install dependencies (on Ubuntu):
62+
```sh
63+
sudo apt install git libasound2 libcurl4 libgbm1 libgcrypt20 libgtk-3-0 libnotify4 libnss3 libglib2.0-bin xdg-utils libx11-xcb1 libxcb-dri3-0 libxss1 libxtst6 libxkbfile1
64+
```
6465
2. Download `atom-amd64.tar.gz` from the [Atom releases page](https://github.com/atom/atom/releases/latest).
6566
3. Run `tar xf atom-amd64.tar.gz` in the directory where you want to extract the Atom folder.
6667
4. Launch Atom using the installed `atom` command from the newly extracted directory.
@@ -76,9 +77,7 @@ repeat these steps to upgrade to future releases.
7677

7778
## Discussion
7879

79-
* Discuss Atom on our [forums](https://discuss.atom.io/) or on [GitHub Discussions](https://github.com/atom/atom/discussions)
80-
* Chat about Atom on our Slack team -- [instructions for joining](https://discuss.atom.io/t/join-us-on-slack/16638?source_topic_id=25406)
81-
80+
* Discuss Atom on [GitHub Discussions](https://github.com/atom/atom/discussions)
8281

8382
## License
8483

apm/package-lock.json

Lines changed: 81 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"url": "https://github.com/atom/atom.git"
77
},
88
"dependencies": {
9-
"atom-package-manager": "npm:@atom-ide-community/atom-package-manager@2.5.2-atomic.3.1"
9+
"atom-package-manager": "npm:@atom-ide-community/atom-package-manager@2.6.5-atomic.1.0"
1010
}
1111
}

keymaps/linux.cson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
'alt-8': 'pane:show-item-8'
8888
'alt-9': 'pane:show-item-9'
8989

90-
'atom-workspace atom-text-editor':
90+
'atom-text-editor':
9191
# Platform Bindings
9292
'ctrl-left': 'editor:move-to-beginning-of-word'
9393
'ctrl-right': 'editor:move-to-end-of-word'

keymaps/win32.cson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
'alt-8': 'pane:show-item-8'
9393
'alt-9': 'pane:show-item-9'
9494

95-
'atom-workspace atom-text-editor':
95+
'atom-text-editor':
9696
# Platform Bindings
9797
'ctrl-left': 'editor:move-to-beginning-of-word'
9898
'ctrl-right': 'editor:move-to-end-of-word'

0 commit comments

Comments
 (0)