Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,15 @@ Community made feature requests, patches, localizations, bug reports, and contri

## Deployment

The plugin is automatically deployed to WordPress.org when a new GitHub release is created from the `main` branch. The deployment process:
The deployment process is mostly automated for deploying changes to WordPress.org using GitHub actions.

When a commit is pushed to `main`, it:
1. Minifies CSS and JavaScript files
2. Generates translation files
3. Creates a new SVN tag on WordPress.org
4. Updates the plugin assets and readme on WordPress.org

Then, when a new GitHub release is created from the `main` branch, it:
1. Creates a new SVN tag on WordPress.org
2. Updates the plugin assets and readme on WordPress.org

## Testing

Expand All @@ -65,12 +68,6 @@ The plugin includes comprehensive unit tests. Run them using:
composer test
```

For development with WordPress multisite, use:

```bash
composer test-multisite
```

## License

This project is licensed under the GPLv3 License - see the [LICENSE](LICENSE) file for details.
Expand Down
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
},
"scripts": {
"test": "phpunit --coverage-clover=coverage.xml",
"test-multisite": "phpunit --coverage-clover=coverage.xml -c phpunit-multisite.xml",
"phpcs": "phpcs --standard=WordPress",
"phpcs-fix": "phpcbf --standard=WordPress",
"phpcompat": "phpcs --standard=PHPCompatibilityWP --runtime-set testVersion 7.4-",
Expand Down
4 changes: 2 additions & 2 deletions litesurveys-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/**
* Plugin Name: LiteSurveys
* Description: Adds simple one-question surveys to your WordPress site
* Version: 2.1.0
* Requires at least: 6.2
* Version: 2.1.1
* Requires at least: 6.3
* Requires PHP: 8.0
* License: GPLv3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "litesurveys-wordpress-plugin",
"version": "2.1.0",
"version": "2.1.1",
"scripts": {
"build": "npm run minify-js && npm run minify-css",
"minify-js": "terser resources/js/admin.js -o resources/js/admin.min.js && terser resources/js/frontend.js -o resources/js/frontend.min.js",
Expand Down
19 changes: 16 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
=== LiteSurveys ===
Contributors: fpcorso
Tags: surveys, polls, sales, marketing, popup
Requires at least: 6.2
Tested up to: 6.7.1
Stable tag: 2.1.0
Requires at least: 6.3
Tested up to: 6.8.1
Stable tag: 2.1.1
Requires PHP: 8.0
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Expand Down Expand Up @@ -49,6 +49,14 @@ LiteSurveys is a lightweight WordPress plugin that helps you gather feedback fro
4. Click `Install Now`, then `Activate`
5. Go to `LiteSurveys` menu to create your surveys

== Frequently Asked Questions ==

= Will it slow down my site? =
No, LiteSurveys is designed to be lightweight and only loads its assets when needed. It won't impact your site's performance.

= Do I need a paid account? =
No! LiteSurveys is completely free and open source. There are no paid plans or limits on surveys or responses.

== Screenshots ==

1. An example LiteSurveys slide-in survey.
Expand All @@ -57,6 +65,11 @@ LiteSurveys is a lightweight WordPress plugin that helps you gather feedback fro

== Changelog ==

= 2.1.1 (May 4, 2025) =

* Make small design tweaks
* Bump tested to version to latest WordPress version

= 2.1.0 (January 13, 2025) =

* Add ability to search survey submissions
Expand Down