Skip to content

Commit

Permalink
Merge branch 'release/1.7' into issue/176
Browse files Browse the repository at this point in the history
* release/1.7: (765 commits)
  Change log added for #922
  Change log item for #896 added
  Change log for #712 added
  a11y: add H1 heading to admin "Donor" screen
  Document filter hooks
  Fix issues #712
  a11y: progress bar accessibility
  a11y: table accessibility in about page
  a11y: table accessibility in export page
  a11y: table accessibility in reports page, and remove un-needed labels and classes
  a11y: table accessibility in donor profile page
  a11y: table accessibility for [give_receipt] shortcode
  a11y: table accessibility for [donation_history] shortcode
  a11y: fix label `for` attribute to focus on the texarea `id`
  a11y: replace `title` attributes with `aria-label`
  Improved Add-on banner style
  Docs: update functions phpDocs
  Docs: document template action hooks
  Fixed variable name
  Fix failing test for file that we removed
  ...

# Conflicts:
#	assets/css/give-admin.min.css
#	assets/js/admin/admin-forms.js
#	assets/js/admin/admin-forms.min.js
#	assets/js/frontend/give.js
#	assets/js/frontend/give.min.js
#	assets/sourcemaps/give-admin.css.map
#	assets/sourcemaps/give.css.map
#	includes/admin/forms/metabox.php
#	includes/admin/payments/actions.php
#	includes/admin/payments/view-order-details.php
#	includes/admin/upgrades/upgrade-functions.php
#	includes/admin/upgrades/upgrades.php
#	includes/class-give-customer.php
#	includes/class-give-db.php
#	includes/class-give-donate-form.php
#	includes/class-give-stats.php
#	includes/emails/class-give-email-tags.php
#	includes/forms/functions.php
#	includes/forms/template.php
#	includes/payments/actions.php
#	includes/payments/class-give-payment.php
#	includes/payments/class-payments-query.php
#	includes/payments/functions.php
#	includes/price-functions.php
#	includes/scripts.php
#	includes/user-functions.php
#	readme.txt
#	templates/give.min.css
#	templates/shortcode-receipt.php
#	tests/framework/helpers/class-helper-form.php
#	tests/framework/helpers/class-helper-payment.php
#	tests/unit-tests/tests-payment-class.php
  • Loading branch information
Devin Walker committed Aug 22, 2016
2 parents 9ac883d + 5deccbc commit 2c001e8
Show file tree
Hide file tree
Showing 466 changed files with 35,388 additions and 29,682 deletions.
28 changes: 10 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,33 @@ language: php
sudo: false

php:
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm

env:
- WP_VERSION=latest WP_MULTISITE=0
- WP_VERSION=4.1 WP_MULTISITE=0
- WP_VERSION=4.0 WP_MULTISITE=0
- WP_VERSION=3.9.2 WP_MULTISITE=0
- WP_VERSION=4.5 WP_MULTISITE=0
- WP_VERSION=4.4 WP_MULTISITE=0
- WP_VERSION=4.3 WP_MULTISITE=0

matrix:
include:
- php: 5.3
- php: 5.6
env: WP_VERSION=latest WP_MULTISITE=1
exclude:
- php: hhvm
env: WP_VERSION=3.9.2 WP_MULTISITE=0
- php: hhvm
env: WP_VERSION=4.0 WP_MULTISITE=0

before_script:
- bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
- bash tests/bin/install.sh wordpress_test root '' localhost $WP_VERSION
- bash tests/bin/travis.sh before

script:
- if [[ $TRAVIS_PHP_VERSION = '5.5' && $WP_VERSION = 'latest' && $WP_MULTISITE = '0'
]]; then phpunit --coverage-clover=coverage.clover; else phpunit; fi
script: phpunit -c phpunit.xml

after_script:
- if [[ $TRAVIS_PHP_VERSION = '5.5' && $WP_VERSION = 'latest' && $WP_MULTISITE = '0'
]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ $TRAVIS_PHP_VERSION = '5.5' && $WP_VERSION = 'latest' && $WP_MULTISITE = '0'
]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover;
fi
- bash tests/bin/travis.sh after

notifications:
slack: givewp:AgWxvdTjTkSjd8FHM5ndeSH5
113 changes: 0 additions & 113 deletions Gruntfile.js

This file was deleted.

12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,18 @@ Automatic updates should work like a charm; as always though, ensure you backup

## Frequently Asked Questions ##

### Where can I learn more about how to use Give? ###

We have extensive documentation on installing and configuring Give [on our website](https://givewp.com/documentation/). We suggest starting with the [Give 101 article](https://givewp.com/documentation/core/give-101/).

### Do you have live examples? ###

Yes! We have several live examples of Give with [popular WordPress Themes here](https://givewp.com/demos/).

### Do you have Case Studies of Nonprofits using Give? ###

Yes! We call them "Give Stories". [You can read them all here](https://givewp.com/give-stories/).

### How is Give better than *Gravity Forms* for accepting donations through WordPress? ###

First off, we love Gravity Forms. It's a great plugin and has a lot of good features for accepting donations. That being said, it lacks substantial reporting features many nonprofits find crucial to cause. In addition, there's a larger barrier to entry than Give. It's a premium only plugin and requires a developer license ($199/yr) to accept credit card and recurring payments on site.
Expand Down

0 comments on commit 2c001e8

Please sign in to comment.