Skip to content

Commit e4629d4

Browse files
authored
v1.2.3 - Merge pull request #6 from JoryHogeveen/dev
v1.2.3
2 parents f34d869 + 90b9e38 commit e4629d4

15 files changed

+240
-69
lines changed

.editorconfig

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
4+
5+
# WordPress Coding Standards
6+
# http://make.wordpress.org/core/handbook/coding-standards/
7+
8+
root = true
9+
10+
[*]
11+
charset = utf-8
12+
# end_of_line = crlf
13+
indent_style = tab
14+
indent_size = 4
15+
tab_width = 4
16+
insert_final_newline = true
17+
trim_trailing_whitespace = true
18+
# spaces_around_operators = true
19+
# spaces_around_brackets = both
20+
21+
[*.txt]
22+
trim_trailing_whitespace = false
23+
24+
[*.yml]
25+
indent_style = space
26+
indent_size = 2

.github/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, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
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 [email protected]. 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/

.github/CONTRIBUTING.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Contribute to Genesis Widget Column Classes
2+
3+
Community made patches, localizations, bug reports, and contributions are always welcome and are crucial to ensure that this plugin remains alive and strong.
4+
5+
When contributing please ensure you follow the guidelines below so that we can keep on top of things.
6+
7+
## Getting Started
8+
9+
* Submit a ticket for your issue, assuming one does not already exist.
10+
* https://github.com/JoryHogeveen/genesis-widget-column-classes/issues
11+
* Clearly describe the issue including steps to reproduce the bug.
12+
* Make sure you fill in the earliest version that you know has the issue as well as the version of WordPress you're using.
13+
14+
## Making Changes
15+
16+
* Fork the repository on GitHub
17+
* Create a new branch, named with a issue prefix (if present) and some keywords on what is changed.
18+
* Example: `#123-what-is-changed`.
19+
* Make the changes to your forked repository's code
20+
* When committing, reference your issue (if present) and include a note about the fix.
21+
* Ensure you stick to the [WordPress Coding Standards](http://codex.wordpress.org/WordPress_Coding_Standards)
22+
* This repository contains all files needed to properly configure your IDE with the correct coding standards and code style configuration.
23+
* [PHP MD](https://github.com/JoryHogeveen/genesis-widget-column-classes/blob/master/tests/phpmd.xml)
24+
* [PHP CS](https://github.com/JoryHogeveen/genesis-widget-column-classes/blob/master/tests/phpcs.xml)
25+
* If the changes are a new feature make sure you add PHP Unit tests or at least contribute in creating tests.
26+
* Push the changes to the branch you created and submit a pull request for the `dev` branch.
27+
28+
At this point you're waiting on us to merge your pull request. We'll review all pull requests, and make suggestions and changes if necessary.
29+
30+
# Additional Resources
31+
* [General GitHub documentation](http://help.github.com/)
32+
* [GitHub pull request documentation](http://help.github.com/send-pull-requests/)

.github/ISSUE_TEMPLATE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## Expected Behavior
2+
3+
4+
## Actual Behavior
5+
6+
7+
## Steps to Reproduce the Problem
8+
9+
1.
10+
1.
11+
1.
12+
13+
## Specifications
14+
15+
- Plugin Version:
16+
- WordPress Version:
17+
- Other plugins installed:
18+
- Theme:
19+
- Browser:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Fixes #
2+
3+
## Proposed Changes
4+
5+
-
6+
-
7+
-

README.md renamed to .github/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Adds Genesis (old bootstrap) column classes to widgets.
1010
[![License](https://img.shields.io/badge/license-GPL--2.0%2B-green.svg)](https://github.com/JoryHogeveen/genesis-widget-column-classes/blob/master/license.txt)
1111
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=YGPLMLU7XQ9E8&lc=NL&item_name=Genesis%20Widget%20Column%20Classes&item_number=JWPP%2dGWCC&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
1212

13+
![Genesis Widget Column Classes](https://raw.githubusercontent.com/JoryHogeveen/genesis-widget-column-classes/master/.github/assets/banner-1544x500.jpg)
14+
1315
## Description
1416

1517
As easy as it gets. Add column classes to widgets with a select box, check wether the widget is the first, and save!

.github/assets/banner-1544x500.png

59.8 KB
Loading

.github/assets/banner-772x250.png

38.8 KB
Loading

.github/assets/icon-128x128.png

2.2 KB
Loading

.github/assets/icon-256x256.png

1.75 KB
Loading

0 commit comments

Comments
 (0)