Skip to content

Commit

Permalink
Merge pull request #833 from PopupMaker/release/1.11.0
Browse files Browse the repository at this point in the history
v1.11.0 Release
  • Loading branch information
fpcorso authored Jun 29, 2020
2 parents f6f2a77 + 1ead526 commit cf71d1c
Show file tree
Hide file tree
Showing 62 changed files with 2,836 additions and 664 deletions.
28 changes: 28 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module.exports = {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended",
],
'overrides': [
{
// Turns off some of esnext rules for our assets JS until we migrate to babel or other.
'files': ['assets/js/**/*.js'],
'rules': {
'arrow-parens': 'off',
'arrow-spacing': 'off',
'computed-property-spacing': 'off',
'constructor-super': 'off',
'no-const-assign': 'off',
'no-dupe-class-members': 'off',
'no-duplicate-imports': 'off',
'no-useless-computed-key': 'off',
'no-useless-constructor': 'off',
'no-var': 'off',
'object-shorthand': 'off',
}
}
],
'env': {
browser: true,
jquery: true,
}
};
15 changes: 15 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# Items to ignore when downloading a zip
/.* export-ignore
bin export-ignore
CODE_OF_CONDUCT.md export-ignore
CHANGELOG.txt export-ignore
composer.* export-ignore
Gruntfile.js export-ignore
package.json export-ignore
package-lock.json export-ignore
phpcs.xml export-ignore
phpunit.* export-ignore
README.md export-ignore
tests export-ignore
renovate.json export-ignore



.browserslistrc export-ignore
.editorconfig export-ignore
Expand Down
36 changes: 29 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
/build
/node_modules
/release
/vendor
/composer.lock
/package-lock.json
/yarn.lock
# Editors
project.xml
project.properties
/nbproject/private/
.buildpath
.project
.settings*
.idea
.vscode
*.sublime-project
*.sublime-workspace
.sublimelinterrc

# Gulp / Build
/build/
/node_modules/
/release/

# Logs
/logs

# Composer
/vendor/
contributors.md

# Packages
/packages/*
!/packages/README.md

/yarn-error.log
16 changes: 0 additions & 16 deletions .jshintrc

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
### v1.11.0 - 06/25/2020
* Feature: Add new floating bar theme.
* Feature: New guided tour of popup editor for first time users.
* Feature: New href attribute on the popup_close shortcode for when setting the shortcode to use the `a` tag.
* Fix: Shortcode popup_close tag attribute not functioning properly.
* Tweak: Change popup_close tag setting to use a drop-down for more easily selecting which tag to use.
* Tweak: Improve explanation of cookies in new trigger modal.
* Tweak: Ensure all admin pages have visible page headings.
* Tweak: Simplify name and title fields in popup editor.
* Tweak: Add popup ID to quick links on All Popups.
* Tweak: Move CSS and JS for our admin bar node to external file.
* Tweak: Add our new optional telemetry system.

### v1.10.2 - 06/09/2020
* Fix: Popup Settings not working when WP Forms is active without forms
* Fix: Missing closing div in new [popup_cookie] shortcode.
* Fix: Shortcode popup_close tag attribute not functioning properly.

### v1.10.1 - 04/21/2020
* Fix: Typo in filter name caused extra p tags.
Expand Down
18 changes: 18 additions & 0 deletions assets/css/pum-admin-bar-rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/css/pum-admin-bar-rtl.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/css/pum-admin-bar-rtl.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions assets/css/pum-admin-bar.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/css/pum-admin-bar.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/css/pum-admin-bar.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions assets/css/pum-site-rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/css/pum-site-rtl.css.map

Large diffs are not rendered by default.

Loading

0 comments on commit cf71d1c

Please sign in to comment.