Skip to content

Commit 7ae4e4e

Browse files
author
Nikola Miljković
committed
Release 2.13.0
2 parents 9ca11a3 + bc6e55e commit 7ae4e4e

211 files changed

Lines changed: 7497 additions & 6105 deletions

File tree

Some content is hidden

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

.github/ISSUE_TEMPLATE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
### Expected Behaviour
2+
3+
1.
4+
5+
### Actual Behaviour
6+
7+
1.
8+
9+
### Steps To Reproduce
10+
11+
1.
12+
13+
### Platform
14+
**Sermon Manager Version:**
15+
**WordPress Version:**
16+
**PHP Version:**
17+
18+
### Any Additional Info
19+
<!--
20+
Use this section to record any additional info you think might be helpful (for example a proposed
21+
solution). Screenshots are also appreciated if applicable
22+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Types of changes
2+
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
3+
- [ ] Bug fix (non-breaking change which fixes an issue)
4+
- [ ] New feature (non-breaking change which adds functionality)
5+
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
6+
7+
## Checklist:
8+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
9+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
10+
- [ ] My code follows the code style of this project. (WPCS)
11+
- [ ] My change requires a change to the documentation.
12+
- [ ] I have read the **CONTRIBUTING** document.
13+
14+
<!--
15+
========== ATTRIBUTION ==========
16+
PR Template copied from: https://github.com/h5bp/html5-boilerplate/blob/master/.github/PULL_REQUEST_TEMPLATE.md
17+
-->

CODE_OF_CONDUCT.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
* Using welcoming and inclusive language
12+
* Being respectful of differing viewpoints and experiences
13+
* Gracefully accepting constructive criticism
14+
* Focusing on what is best for the community
15+
* Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
* Trolling, insulting/derogatory comments, and personal or political attacks
21+
* Public or private harassment
22+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at hello@wpforchurch.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44+
45+
[homepage]: http://contributor-covenant.org
46+
[version]: http://contributor-covenant.org/version/1/4/

LICENSE

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.

assets/css/admin-partials/_import-export.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,16 +95,15 @@
9595
margin-top: 1rem;
9696
}
9797
}
98-
98+
9999
.wp-upload-form {
100100
display: none;
101101
}
102-
102+
103103
.import-sniper {
104104
line-height: 1;
105105
vertical-align: middle;
106106
width: 13px;
107-
display: inline-block;
108107
position: relative;
109108
top: -1px;
110109
display: none;

assets/css/admin-partials/_settings.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
.settings-content {
1111
width: 100%;
1212

13+
//noinspection SpellCheckingInspection
1314
#mainform {
1415
border: 1px solid #e8e8e8;
1516
}

assets/css/admin.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/admin.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/partials/_archive.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@
1717

1818
&-header {
1919
display: grid;
20-
grid-template-columns: 70% 30%;
2120
align-items: center;
21+
22+
&.aside-exists {
23+
grid-template-columns: 70% 30%;
24+
}
2225
}
2326

2427
&-header-aside {

0 commit comments

Comments
 (0)