Skip to content

Commit 9a118f8

Browse files
authored
Merge branch 'master' into fix--git-diff--nested-repositories-redux
2 parents 967d63b + 7033a5a commit 9a118f8

File tree

75 files changed

+1525
-1111
lines changed

Some content is hidden

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

75 files changed

+1525
-1111
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,8 @@ This project and everyone participating in it is governed by the [Atom Code of C
4040
4141
We have an official message board with a detailed FAQ and where the community chimes in with helpful advice if you have questions.
4242

43-
* [Discuss, the official Atom and Electron message board](https://discuss.atom.io)
44-
* [Atom FAQ](https://discuss.atom.io/c/faq)
45-
46-
If chat is more your speed, you can join the Atom and Electron Slack team:
47-
48-
* [Join the Atom and Electron Slack Team](https://atom-slack.herokuapp.com/)
49-
* Even though Slack is a chat service, sometimes it takes several hours for community members to respond — please be patient!
50-
* Use the `#atom` channel for general questions or discussion about Atom
51-
* Use the `#electron` channel for questions about Electron
52-
* Use the `#packages` channel for questions or discussion about writing or contributing to Atom packages (both core and community)
53-
* Use the `#ui` channel for questions and discussion about Atom UI and themes
54-
* There are many other channels available, check the channel list
43+
* [Github Discussions, the official Atom](https://github.com/atom/atom/discussions)
44+
* [Atom FAQ](https://github.com/atom/atom/discussions)
5545

5646
## What should I know before I get started?
5747

@@ -87,7 +77,7 @@ Here's a list of the big ones:
8777

8878
There are many more, but this list should be a good starting point. For more information on how to work with Atom's official packages, see [Contributing to Atom Packages][contributing-to-official-atom-packages].
8979

90-
Also, because Atom is so extensible, it's possible that a feature you've become accustomed to in Atom or an issue you're encountering isn't coming from a bundled package at all, but rather a [community package](https://atom.io/packages) you've installed. Each community package has its own repository too, the [Atom FAQ](https://discuss.atom.io/c/faq) has instructions on how to [contact the maintainers of any Atom community package or theme.](https://discuss.atom.io/t/i-have-a-question-about-a-specific-atom-community-package-where-is-the-best-place-to-ask-it/25581)
80+
Also, because Atom is so extensible, it's possible that a feature you've become accustomed to in Atom or an issue you're encountering isn't coming from a bundled package at all, but rather a [community package](https://atom.io/packages) you've installed. Each community package has its own repository too.
9181

9282
#### Package Conventions
9383

@@ -105,7 +95,7 @@ There are a few conventions that have developed over time around packages:
10595

10696
### Design Decisions
10797

108-
When we make a significant decision in how we maintain the project and what we can or cannot support, we will document it in the [atom/design-decisions repository](https://github.com/atom/design-decisions). If you have a question around how we do things, check to see if it is documented there. If it is *not* documented there, please open a new topic on [Discuss, the official Atom message board](https://discuss.atom.io) and ask your question.
98+
When we make a significant decision in how we maintain the project and what we can or cannot support, we will document it in the [atom/design-decisions repository](https://github.com/atom/design-decisions). If you have a question around how we do things, check to see if it is documented there. If it is *not* documented there, please open a new topic on [Github Discussions, the official Atom message board](https://github.com/atom/atom/discussions) and ask your question.
10999

110100
## How Can I Contribute?
111101

@@ -120,7 +110,7 @@ Before creating bug reports, please check [this list](#before-submitting-a-bug-r
120110
#### Before Submitting A Bug Report
121111

122112
* **Check the [debugging guide](https://flight-manual.atom.io/hacking-atom/sections/debugging/).** You might be able to find the cause of the problem and fix things yourself. Most importantly, check if you can reproduce the problem [in the latest version of Atom](https://flight-manual.atom.io/hacking-atom/sections/debugging/#update-to-the-latest-version), if the problem happens when you run Atom in [safe mode](https://flight-manual.atom.io/hacking-atom/sections/debugging/#check-if-the-problem-shows-up-in-safe-mode), and if you can get the desired behavior by changing [Atom's or packages' config settings](https://flight-manual.atom.io/hacking-atom/sections/debugging/#check-atom-and-package-settings).
123-
* **Check the [FAQs on the forum](https://discuss.atom.io/c/faq)** for a list of common questions and problems.
113+
* **Check the [discussions](https://github.com/atom/atom/discussions)** for a list of common questions and problems.
124114
* **Determine [which repository the problem should be reported in](#atom-and-packages)**.
125115
* **Perform a [cursory search](https://github.com/search?q=+is%3Aissue+user%3Aatom)** to see if the problem has already been reported. If it has **and the issue is still open**, add a comment to the existing issue instead of opening a new one.
126116

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
# Atom
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)
4-
[![Dependency Status](https://david-dm.org/atom/atom.svg)](https://david-dm.org/atom/atom)
54

65
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.
76

87
![Atom](https://user-images.githubusercontent.com/378023/49132477-f4b77680-f31f-11e8-8357-ac6491761c6c.png)
98

109
![Atom Screenshot](https://user-images.githubusercontent.com/378023/49132478-f4b77680-f31f-11e8-9e10-e8454d8d9b7e.png)
1110

12-
Visit [atom.io](https://atom.io) to learn more or visit the [Atom forum](https://discuss.atom.io).
11+
Visit [atom.io](https://atom.io) to learn more or visit the [Atom forum](https://github.com/atom/atom/discussions).
1312

1413
Follow [@AtomEditor](https://twitter.com/atomeditor) on Twitter for important
1514
announcements.

SUPPORT.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ If you're looking for support for Atom there are a lot of options, check out:
44

55
* User Documentation — [The Atom Flight Manual](https://flight-manual.atom.io)
66
* Developer Documentation — [Atom API Documentation](https://atom.io/docs/api/latest)
7-
* FAQ — [The Atom FAQ on Discuss](https://discuss.atom.io/c/faq)
8-
* Message Board — [Discuss, the official Atom and Electron message board](https://discuss.atom.io)
9-
* Chat — [Join the Atom Slack team](https://atom-slack.herokuapp.com/)
7+
* Message Board — [Github Discussions, the official Atom message board](https://github.com/atom/atom/discussions)
108

11-
On Discuss and in the Atom Slack team, there are a bunch of helpful community members that should be willing to point you in the right direction.
9+
On Atoms Github Discussions board, there are a bunch of helpful community members that should be willing to point you in the right direction.

atom.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,11 @@ elif [ $OS == 'Linux' ]; then
168168
;;
169169
esac
170170

171+
#Will allow user to get context menu on cinnamon desktop enviroment
172+
if [[ "$(expr substr $(printenv | grep "DESKTOP_SESSION=") 17 8)" == "cinnamon" ]]; then
173+
cp "resources/linux/desktopenviroment/cinnamon/atom.nemo_action" "/usr/share/nemo/actions/atom.nemo_action"
174+
fi
175+
171176
: ${TMPDIR:=/tmp}
172177

173178
[ -x "$ATOM_PATH" ] || ATOM_PATH="$TMPDIR/atom-build/Atom/atom"

0 commit comments

Comments
 (0)