Skip to content

Commit e3c4fdc

Browse files
committed
Merge branch 'dev'
2 parents aaefeaa + 1301dfb commit e3c4fdc

20 files changed

+939
-12685
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
.editorconfig export-ignore
55
.gitattributes export-ignore
66
.gitignore export-ignore
7+
.github export-ignore
78
package-lock.json export-ignore
89
package.json export-ignore
910
webpack.config.js export-ignore
11+
src export-ignore
12+
scss export-ignore
13+
README.MD export-ignore
14+
pmpro-goals-banner.jpg export-ignore
15+
.github export-ignore
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Generate Translations
2+
on: workflow_dispatch
3+
jobs:
4+
generate-translations:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: WordPress POT/PO/MO Generator
9+
uses: strangerstudios/action-wp-pot-po-mo-generator@main
10+
with:
11+
generate_pot: 1
12+
generate_po: 1
13+
generate_mo: 1
14+
generate_lang_packs: 1
15+
merge_changes: 1
16+
headers: '{"Report-Msgid-Bugs-To":"info@paidmembershipspro.com","Last-Translator":"Paid Memberships Pro <info@paidmembershipspro.com>","Language-Team":"Paid Memberships Pro <info@paidmembershipspro.com>"}'
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/sync-labels.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Sync labels
2+
on:
3+
# You can run this with every type of event, but it's better to run it only when you actually need it.
4+
workflow_dispatch:
5+
6+
jobs:
7+
labels:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: strangerstudios/label-sync@v2
12+
with:
13+
# If you want to use a source repo, you can put is name here (only the owner/repo format is accepted)
14+
source-repo: strangerstudios/paid-memberships-pro
15+
16+
# If you want to delete any additional label, set this to true
17+
delete-other-labels: true
18+
19+
#If you want the action just to show you the preview of the changes, without actually editing the labels, set this to tru
20+
dry-run: false
21+
22+
# You can change the token used to change the labels, this is the default one
23+
token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,13 @@ node_modules
2424
# Log files
2525
log/*.log
2626
log/*.txt
27+
28+
#ignore the build asset file as we don't use it right now.
2729
build/index.asset.php
28-
build/index.js.map
30+
31+
#NPM
32+
package-lock.json
33+
34+
#Sass map file
35+
css/pmpro-goals.css.map
36+

README.MD

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
![](pmpro-goals-banner.jpg)
2+
3+
# [Paid Memberships Pro - Goals Progress Bar](https://www.paidmembershipspro.com/add-ons/pmpro-goals/) #
4+
5+
![License](https://img.shields.io/badge/license-GPL--2.0%2B-red.svg?style=flat-square)
6+
7+
### Welcome to the Paid Memberships Pro - Goals Progress Bar GitHub Repository
8+
Create a dynamic progress bar that can be used in your posts, pages or widgets. Each progress bar offers unique settings to customize the appearance and the target, including which membership levels to count in the total goal progress calculation.
9+
10+
After installing and activating the plugin, you will be able to add a new Goal Progress Bar via a shortcode or Block (if you are using the Block Editor as part of WordPress v5.0+).
11+
12+
For more information please visit [paidmembershipspro.com/add-ons/pmpro-goals/](https://www.paidmembershipspro.com/add-ons/pmpro-goals/)
13+
14+
## Installation ##
15+
For detailed installation steps, visit the [documentation](https://www.paidmembershipspro.com/add-ons/pmpro-goals/) page.
16+
17+
1. Download the current development ZIP file directly: `https://github.com/strangerstudios/pmpro-goals/archive/dev.zip`
18+
19+
**Please ensure that once installing this version of the plugin to remove `-dev` from the plugin's folder name.**
20+
21+
## Bugs ##
22+
If you find an issue/bug, let us know by [creating a detailed GitHub issue](https://github.com/strangerstudios/pmpro-goals/issues/new).
23+
24+
## Support ##
25+
This is a developer's portal for Paid Memberships Pro - Goals Progress Bar. We do not offer support on this channel. **Any support related questions should be directed to [paidmembershipspro.com/add-ons/pmpro-goals/](https://www.paidmembershipspro.com/add-ons/pmpro-goals/).**
26+
27+
## Contributing to Paid Memberships Pro - Goals Progress Bar ##
28+
We encourage and welcome any contribution to Paid Memberships Pro - Goals Progress Bar. Please read the [guidelines for contributing](https://github.com/strangerstudios/pmpro-goals/blob/dev/.github/CONTRIBUTING.md) to this repository.
29+
30+
There are various **ways to the help development** of Paid Memberships Pro - Goals Progress Bar:
31+
32+
1. Report [bugs/issues](https://github.com/strangerstudios/pmpro-goals/issues/new) on GitHub.
33+
2. Work on any issues by submitting a Pull Request.
34+
35+
Here are some ways for **non-developers to contribute** to Paid Memberships Pro - Goals Progress Bar:
36+
37+
1. Translate Paid Memberships Pro - Goals Progress Bar into your own [language](https://www.paidmembershipspro.com/paid-memberships-pro-in-your-language/).
38+
2. [Purchase a paid membership](https://paidmembershipspro.com/pricing) to help fund ongoing development and bug fixes.

0 commit comments

Comments
 (0)