diff options
| author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-14 17:58:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-14 17:58:39 -0400 |
| commit | 665a8bcd4f61e06e69191ead16006121782f46ee (patch) | |
| tree | 4680a923a3be34f96b2c6ec6575c5ee78eecbd45 | |
| parent | Add `eln-cache/` directory to `.gitignore` (diff) | |
| parent | Fix link to GitHub issues page (diff) | |
| download | mmosmacs-665a8bcd4f61e06e69191ead16006121782f46ee.tar.gz mmosmacs-665a8bcd4f61e06e69191ead16006121782f46ee.tar.bz2 mmosmacs-665a8bcd4f61e06e69191ead16006121782f46ee.zip | |
Merge `update-documentation` branch to `stable` branch
| -rw-r--r-- | CONTRIBUTING.md | 94 | ||||
| -rw-r--r-- | README.md | 7 |
2 files changed, 87 insertions, 14 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d450c7d..c331bf9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md | |||
| @@ -24,7 +24,7 @@ I will reject all contributions from: | |||
| 24 | 24 | ||
| 25 | Furthermore, individual items will be rejected because of: | 25 | Furthermore, individual items will be rejected because of: |
| 26 | - exceptionally vulgar language. | 26 | - exceptionally vulgar language. |
| 27 | - ignorance or disregard of the `STYLE_GUIDE.md` or Issue/PR templates. | 27 | - ignorance or disregard of the `STYLE_GUIDE.md` or Issue templates. |
| 28 | 28 | ||
| 29 | 29 | ||
| 30 | ## How to Contribute | 30 | ## How to Contribute |
| @@ -32,13 +32,13 @@ Furthermore, individual items will be rejected because of: | |||
| 32 | There are several ways you can contribute. | 32 | There are several ways you can contribute. |
| 33 | 33 | ||
| 34 | The easiest way you can contribute is by taking part in the discussions | 34 | The easiest way you can contribute is by taking part in the discussions |
| 35 | on the [GitHub Issues page](https://github.com/MountainMan1312/MMOSMacs/Issues). | 35 | on the [GitHub Issues page](https://github.com/MountainMan1312/MMOSMacs/issues). |
| 36 | You can comment on topics that already have an existing Issue, or you | 36 | You can comment on topics that already have an existing Issue, or you |
| 37 | can submit your own if it does not already exist. Issues can take the | 37 | can submit your own if it does not already exist. Issues can take the |
| 38 | form of: | 38 | form of: |
| 39 | - **Feedback**: share your thoughts about MMOSMacs. | ||
| 40 | - **Bug Report**: discusion about a problem with the MMOSMacs code. | ||
| 41 | - **RFC**: discussion about making a change to MMOSMacs. | 39 | - **RFC**: discussion about making a change to MMOSMacs. |
| 40 | - **Bug Report**: discusion about a problem with the MMOSMacs code. | ||
| 41 | - **Feedback**: share your thoughts about MMOSMacs. | ||
| 42 | 42 | ||
| 43 | Before submitting a new issue, search for existing duplicate issues. If | 43 | Before submitting a new issue, search for existing duplicate issues. If |
| 44 | it already exists, comment on the existing Issue instead of making a new | 44 | it already exists, comment on the existing Issue instead of making a new |
| @@ -46,12 +46,86 @@ one. Duplicate issues will be removed and you will be asked to move your | |||
| 46 | post to the comment section of the existing post. It's not to be rude, | 46 | post to the comment section of the existing post. It's not to be rude, |
| 47 | it's just for organization's sake. | 47 | it's just for organization's sake. |
| 48 | 48 | ||
| 49 | Each type of Issue has an Issue Template. The templates can be found in | ||
| 50 | the `.github/ISSUE_TEMPLATE/` directory. Pull reqeusts also have | ||
| 51 | templates which are located in `.github/PULL_REQUEST_TEMPLATE/`. | ||
| 52 | |||
| 53 | To contribute code: | 49 | To contribute code: |
| 54 | 1. Make an RFC or find an existing one | 50 | 1. Make an RFC or find an existing one |
| 55 | 2. Discuss your proposed changes | 51 | 2. Discuss your proposed changes |
| 56 | 3. Make your changes | 52 | 3. Create a branch |
| 57 | 4. Submit a Pull Request | 53 | 4. Make your changes |
| 54 | 5. Submit a Pull Request | ||
| 55 | |||
| 56 | |||
| 57 | ### RFC Issues, branches, commits, & Pull Requests | ||
| 58 | |||
| 59 | #### Writing an RFC | ||
| 60 | |||
| 61 | RFCs are the main form of project management for this repository. All | ||
| 62 | major changes to MMOSMacs should have an associated RFC. RFC Issues | ||
| 63 | should be named in the format `RFC: TITLE`, where title is a short | ||
| 64 | description of the proposed changes. For example, the RFC to modify a | ||
| 65 | few default Emacs things as a starting point for MMOSMacs is called | ||
| 66 | `RFC: Start with sensible defaults`. | ||
| 67 | |||
| 68 | The following template should be used when writing an RFC. | ||
| 69 | |||
| 70 | ```markdown | ||
| 71 | # Summary | ||
| 72 | |||
| 73 | Provide a one-paragraph summary of the proposed changes | ||
| 74 | |||
| 75 | |||
| 76 | # Rationale and motivation | ||
| 77 | |||
| 78 | Explain why this change is necessary or desirable. Relate to any other | ||
| 79 | relevant RFCs, Bug Reports, or Feedback. Feel free to link to Issues | ||
| 80 | from other repositories as well. | ||
| 81 | |||
| 82 | |||
| 83 | # Details | ||
| 84 | |||
| 85 | Provide an in-depth description of your proposed changes. This should | ||
| 86 | get into specifics and corner-cases. | ||
| 87 | |||
| 88 | |||
| 89 | # Drawbacks and Alternatives (optional) | ||
| 90 | |||
| 91 | Why should these changes NOT be implemented? What other options are | ||
| 92 | there, and why are these changes better than the alternatives? | ||
| 93 | |||
| 94 | |||
| 95 | # Additional resources (optional) | ||
| 96 | |||
| 97 | Link to external resources such as research papers, images, etc. | ||
| 98 | |||
| 99 | |||
| 100 | # Unresolved questions (optional) | ||
| 101 | |||
| 102 | Ask any further questions you have. | ||
| 103 | ``` | ||
| 104 | |||
| 105 | |||
| 106 | #### Creating branches & committing changes | ||
| 107 | |||
| 108 | All changes made as part of an RFC should be made in an associated | ||
| 109 | branch. The branch should be named in the format `TYPE/#/TITLE`, where | ||
| 110 | TYPE is one of `RFC, BUG`, X is the Issue number, and TITLE is a short | ||
| 111 | summary of the RFC title. For example the branch for | ||
| 112 | `RFC: Start with sensible defaults` is named `RFC/2/sensible-defaults`. | ||
| 113 | Branch names should be short, with an absolute maximum of 72 characters | ||
| 114 | (preferrably shorter). | ||
| 115 | |||
| 116 | Commits should be small and nuclear. They should each do "one thing". | ||
| 117 | That said, multiple files could theoretically be affected by a single | ||
| 118 | commit. Commit messages should be brief, but not omit any necessary | ||
| 119 | detail. | ||
| 120 | |||
| 121 | |||
| 122 | #### Writing a Pull Request | ||
| 123 | |||
| 124 | Like RFCs, all major changes to MMOSMacs must have an associated Pull | ||
| 125 | Reqest, which explains in detail the changes that were made. Pull | ||
| 126 | Requests are reviewed before the changes are accepted into the stable | ||
| 127 | branch, and it is likely that the reviewer will reject your changes with | ||
| 128 | notes on what needs to be fixed. | ||
| 129 | |||
| 130 | Pull Requests should explain the specifics and nuances of the changes | ||
| 131 | contained therein. | ||
| @@ -5,12 +5,10 @@ idea I have for an Emacs-centric Linux distribution. MMOSMacs is the | |||
| 5 | core of my computing experience, and is designed to be a | 5 | core of my computing experience, and is designed to be a |
| 6 | jack-of-all-trades just like me. | 6 | jack-of-all-trades just like me. |
| 7 | 7 | ||
| 8 | MMOSMacs is currently in the planning phase. | ||
| 9 | |||
| 10 | 8 | ||
| 11 | ## Plans | 9 | ## Plans |
| 12 | 10 | ||
| 13 | - Modular non-literate configuration | 11 | - Non-literate configuration |
| 14 | - `straight.el` + `use-package` package management | 12 | - `straight.el` + `use-package` package management |
| 15 | - Emacs as a desktop environment (`EXWM`, `EDNC`) | 13 | - Emacs as a desktop environment (`EXWM`, `EDNC`) |
| 16 | - System & network administration suite | 14 | - System & network administration suite |
| @@ -26,7 +24,8 @@ MMOSMacs is currently in the planning phase. | |||
| 26 | - Games | 24 | - Games |
| 27 | - Custom modeline & anti-distraction features | 25 | - Custom modeline & anti-distraction features |
| 28 | - Custom theme deisnged to reduce eye-strain | 26 | - Custom theme deisnged to reduce eye-strain |
| 29 | - Custom keybinds, menus, & dialogs | 27 | - Custom keybind system, menus, & dialogs |
| 28 | |||
| 30 | 29 | ||
| 31 | ## Contributing | 30 | ## Contributing |
| 32 | 31 | ||