Skip to content

Commit 7ad5b80

Browse files
committed
Merge branch '2.3' of [email protected]:mixxxdj/mixxx.git
# Conflicts: # res/controllers/mixco/README.md # res/controllers/novation-launchpad/README.md
2 parents 8aea341 + 89b742c commit 7ad5b80

File tree

5 files changed

+72
-47
lines changed

5 files changed

+72
-47
lines changed

.markdownlint-cli2.yaml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#
2+
# An example .markdownlint-cli2.yaml file
3+
#
4+
5+
# Disable some built-in rules
6+
config:
7+
default: true
8+
9+
# The same headline in different nested sections is okay (and necessary for
10+
# CHANGELOG.md).
11+
no-duplicate-header:
12+
allow_different_nesting: true
13+
14+
# We use ordered lists to make stuff easier to read in a text editor.
15+
ol-prefix:
16+
style: ordered
17+
18+
# Not wrapping long lines makes diffs easier to read, especially for prose.
19+
# Instead, we should follow the "one sentence per line" pattern.
20+
line-length: false
21+
22+
# Dollar signs are useful to indicate shell commands/type and help
23+
# distinguishing wrapped lines from new commands.
24+
commands-show-output: false
25+
26+
# Indented code blocks are easier to read in a text editor, but don't allow
27+
# specifying a language for syntax highlighting. Therefore both indented and
28+
# fenced code block should be allowed depending on the use case.
29+
code-block-style: false
30+
31+
# Fix any fixable errors
32+
fix: true
33+
34+
# Disable inline config comments
35+
noInlineConfig: true
36+
37+
# Disable progress on stdout (only valid at root)
38+
noProgress: true

.pre-commit-config.yaml

+4-15
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,6 @@
22
# to manage, install and run git hooks to catch common problems early on.
33
# See https://pre-commit.com/ for details.
44
#
5-
# This adds the following hooks:
6-
#
7-
# - check-case-conflict
8-
# - check-byte-order-marker
9-
# - check-yaml
10-
# - check-json
11-
# - check-xml
12-
# - mixed-line-ending
13-
# - end-of-file-fixer
14-
# - trailing-whitespace
15-
# - no-commit-to-branch
16-
# - eslint
17-
# - clang-format
18-
# - qsscheck
19-
#
205
# If you have Python >= 3.7 and python-pip installed, just run:
216
#
227
# $ pip install --user pre-commit
@@ -110,6 +95,10 @@ repos:
11095
rev: v0.7.2.1
11196
hooks:
11297
- id: shellcheck
98+
- repo: https://github.com/DavidAnson/markdownlint-cli2
99+
rev: v0.2.0
100+
hooks:
101+
- id: markdownlint-cli2
113102
- repo: local
114103
hooks:
115104
- id: qsscheck

CODE_OF_CONDUCT.md

+26-24
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ communication initiated in the context of these spaces.
99

1010
Simply put, community discussions should be
1111

12-
* respectful and kind;
13-
* about Mixxx;
14-
* about features and code, not the individuals involved.
12+
* respectful and kind;
13+
* about Mixxx;
14+
* about features and code, not the individuals involved.
1515

16-
## Be respectful and constructive.
16+
## Be respectful and constructive
1717

1818
Treat everyone with respect. Build on each other's ideas. Each of us has the
1919
right to enjoy our experience and participate without fear of harassment,
@@ -23,7 +23,7 @@ communicating with someone in their primary language. We all get frustrated
2323
when working on hard problems, but we cannot allow that frustration to turn
2424
into personal attacks.
2525

26-
## Speak up if you see or hear something.
26+
## Speak up if you see or hear something
2727

2828
You are empowered to politely engage when you feel that you or others are
2929
disrespected. The person making you feel uncomfortable may not be aware of what
@@ -42,32 +42,34 @@ While all reports will be taken seriously, the Mixxx community managers may
4242
not act on complaints that they feel are not violations of this code of
4343
conduct.
4444

45-
## We will not tolerate harassment of any kind, including but not limited to:
45+
## No Tolerance for Harassment
4646

47-
* Harassing comments
48-
* Intimidation
49-
* Encouraging a person to engage in self-harm.
50-
* Sustained disruption or derailing of threads, channels, lists, etc.
51-
* Offensive or violent comments, jokes or otherwise
52-
* Inappropriate sexual content
53-
* Unwelcome sexual or otherwise aggressive attention
54-
* Continued one-on-one communication after requests to cease
55-
* Distribution or threat of distribution of people's personally identifying
56-
information, AKA “doxing”
47+
We will not tolerate harassment of any kind, including but not limited to:
48+
49+
* Harassing comments
50+
* Intimidation
51+
* Encouraging a person to engage in self-harm.
52+
* Sustained disruption or derailing of threads, channels, lists, etc.
53+
* Offensive or violent comments, jokes or otherwise
54+
* Inappropriate sexual content
55+
* Unwelcome sexual or otherwise aggressive attention
56+
* Continued one-on-one communication after requests to cease
57+
* Distribution or threat of distribution of people's personally identifying
58+
information, AKA “doxing”
5759

5860
## Consequences for failing to comply with this policy
5961

6062
Consequences for failing to comply with this policy may include, at the sole
6163
discretion of the Mixxx community managers:
6264

63-
* a request for an apology;
64-
* a private or public warning or reprimand;
65-
* a temporary ban from the mailing list, blog, Mixxx repository or
66-
organization, or other Mixxx-supported communication group, including
67-
loss of committer status;
68-
* a permanent ban from any of the above, or from all current and future
69-
Mixxx-supported communities, including loss of
70-
committer status.
65+
* a request for an apology;
66+
* a private or public warning or reprimand;
67+
* a temporary ban from the mailing list, blog, Mixxx repository or
68+
organization, or other Mixxx-supported communication group, including
69+
loss of committer status;
70+
* a permanent ban from any of the above, or from all current and future
71+
Mixxx-supported communities, including loss of
72+
committer status.
7173

7274
Participants warned to stop any harassing behavior are expected to comply
7375
immediately; failure to do so will result in an escalation of consequences.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Mixxx
2+
23
[![GitHub latest tag](https://img.shields.io/github/tag/mixxxdj/mixxx.svg)](https://mixxx.org/download)
34
[![Packaging status](https://repology.org/badge/tiny-repos/mixxx.svg)](https://repology.org/metapackage/mixxx/versions)
45
[![Build status](https://github.com/mixxxdj/mixxx/actions/workflows/build.yml/badge.svg)](https://github.com/mixxxdj/mixxx/actions/workflows/build.yml)

packaging/certificates/README.md

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
1-
21
# Key Rotation
32

4-
# downloads-hostgator.mixxx.org
3+
## downloads-hostgator.mixxx.org
54

65
SSH access is granted via an RSA key stored in `build/certificates/downloads-hostgator.mixxx.org.key`.
76

87
To rotate this key, generate a new RSA key with a strong password (e.g. 32 character randomly generated).
98

10-
```
11-
ssh-keygen -t rsa -b 4096 -f downloads-hostgator.mixxx.org.key
12-
```
9+
ssh-keygen -t rsa -b 4096 -f downloads-hostgator.mixxx.org.key
1310

1411
Copy the **public** key to `$HOME/.ssh/authorized_keys`, replacing the old file to remove access for the current key.
1512

1613
Encrypt the password using `travis encrypt` and update `.travis.yml`.
1714

18-
```
19-
travis encrypt DOWNLOADS_HOSTGATOR_DOT_MIXXX_DOT_ORG_KEY_PASSWORD=hunter2 -r mixxxdj/mixxx
20-
```
15+
travis encrypt DOWNLOADS_HOSTGATOR_DOT_MIXXX_DOT_ORG_KEY_PASSWORD=hunter2 -r mixxxdj/mixxx

0 commit comments

Comments
 (0)