Skip to content

Commit

Permalink
1.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mutendebrian committed Feb 10, 2020
1 parent 44d5291 commit 89e88e6
Show file tree
Hide file tree
Showing 31 changed files with 469 additions and 4,072 deletions.
29 changes: 0 additions & 29 deletions .distignore

This file was deleted.

18 changes: 18 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/tests/ export-ignore
/.github/ export-ignore
/.wordpress-org/ export-ignore
/bin export-ignore
/node_modules export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.distignore export-ignore
.editorconfig export-ignore
.travis.yml export-ignore
CODE_OF_CONDUCT.md export-ignore
Gruntfile.js export-ignore
package-lock.json export-ignore
package.json export-ignore
phpcs.xml.dist export-ignore
phpunit.xml.dist export-ignore
postcss.config.js export-ignore
webpack.config.js export-ignore
17 changes: 17 additions & 0 deletions .github/workflows/assets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Plugin asset/readme update
on:
push:
branches:
- stable
jobs:
stable:
name: Push to stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: WordPress.org plugin asset/readme update
uses: 10up/action-wordpress-plugin-asset-update@master
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: newsletter-optin-box
17 changes: 17 additions & 0 deletions .github/workflows/wordpress.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deploy to WordPress.org
on:
push:
tags:
- "*"
jobs:
tag:
name: New tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@master
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: newsletter-optin-box
8 changes: 0 additions & 8 deletions includes/admin/class-noptin-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,6 @@ public static function get_settings() {
'description' => __( 'Notify the site admin every time a new subscriber signs up for the newsletter.', 'newsletter-optin-box' ),
),

'double_optin' => array(
'el' => 'input',
'type' => 'checkbox_alt',
'section' => 'general',
'label' => __( 'Double Optin', 'newsletter-optin-box' ),
'description' => __( 'Require new subscribers to confirm their email addresses.', 'newsletter-optin-box' ),
),

'comment_form' => array(
'el' => 'input',
'type' => 'checkbox_alt',
Expand Down
2 changes: 1 addition & 1 deletion includes/admin/welcome.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="noptin-welcome">
<div class="noptin-main-header">
<h1>Noptin v1.2.2</h1>
<h1>Noptin v1.2.3</h1>
<a href="https://github.com/hizzle-co/noptin/issues/new/choose" target="_blank"><?php _e( 'Report a bug or request a feature', 'newsletter-optin-box' ); ?></a>
</div>

Expand Down
Loading

0 comments on commit 89e88e6

Please sign in to comment.