Skip to content

Commit

Permalink
v1.2.2 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmigf authored Jan 28, 2025
1 parent ec592ca commit 95b280d
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 19 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,26 @@
# Changelog

### v1.2.2 (2025-01-28)

- Adds Github updater
- Fixes email selector style issues
- WooCommerce tested up to version 9.6

### v1.2.1 (2024-07-30)

- Loads JS from separated file
- Creates class property `$plugin_dir_path`
- Checks if at least 1 order is selected
- Few WPCS style tweaks

### v1.2.0 (2023-05-29)

- WooCommerce HPOS compatibilit

### v1.1.0 (2023-01-16)

- Add smart reminder emails

### v1.0.0 (2022-06-23)

- First release
6 changes: 3 additions & 3 deletions bulk-emails-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Requires Plugins: woocommerce
* Plugin URI: https://github.com/wpovernight/bulk-emails-for-woocommerce
* Description: Send emails in bulk for selected orders in WooCommerce
* Version: 1.2.1
* Version: 1.2.2
* Update URI: https://github.com/wpovernight/bulk-emails-for-woocommerce
* Author: WP Overnight
* Author URI: https://wpovernight.com
Expand All @@ -13,14 +13,14 @@
* Text Domain: bulk-emails-for-woocommerce
* Domain Path: /languages
* WC requires at least: 3.3
* WC tested up to: 9.1
* WC tested up to: 9.6
*/

defined( 'ABSPATH' ) || exit;

class WPO_BEWC {

public $version = '1.2.1';
public $version = '1.2.2';
public $plugin_dir_url = false;
public $plugin_dir_path = false;
protected static $_instance = null;
Expand Down
37 changes: 21 additions & 16 deletions languages/bulk-emails-for-woocommerce.pot
Original file line number Diff line number Diff line change
@@ -1,74 +1,79 @@
# Copyright (C) 2024 WP Overnight
# This file is distributed under the GPLv2 or later.
# Copyright (C) 2025 WP Overnight
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: Bulk Emails for WooCommerce 1.2.0\n"
"Project-Id-Version: Bulk Emails for WooCommerce 1.2.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bulk-emails-for-woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-07-30T09:57:26+02:00\n"
"POT-Creation-Date: 2025-01-28T12:59:16+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Generator: WP-CLI 2.11.0\n"
"X-Domain: bulk-emails-for-woocommerce\n"

#. Plugin Name of the plugin
#: bulk-emails-for-woocommerce.php
msgid "Bulk Emails for WooCommerce"
msgstr ""

#. Plugin URI of the plugin
msgid "https://wpovernight.com/"
#: bulk-emails-for-woocommerce.php
msgid "https://github.com/wpovernight/bulk-emails-for-woocommerce"
msgstr ""

#. Description of the plugin
msgid "Send emails in bulk for selected order in WooCommerce"
#: bulk-emails-for-woocommerce.php
msgid "Send emails in bulk for selected orders in WooCommerce"
msgstr ""

#. Author of the plugin
#: bulk-emails-for-woocommerce.php
msgid "WP Overnight"
msgstr ""

#. Author URI of the plugin
#: bulk-emails-for-woocommerce.php
msgid "https://wpovernight.com"
msgstr ""

#: bulk-emails-for-woocommerce.php:77
#: bulk-emails-for-woocommerce.php:101
msgid "Please select an email to send."
msgstr ""

#: bulk-emails-for-woocommerce.php:78
#: bulk-emails-for-woocommerce.php:102
msgid "Please select at least one order."
msgstr ""

#: bulk-emails-for-woocommerce.php:86
#: bulk-emails-for-woocommerce.php:110
msgid "Send email"
msgstr ""

#: bulk-emails-for-woocommerce.php:96
#: bulk-emails-for-woocommerce.php:120
msgid "Choose an email to send"
msgstr ""

#. translators: email ID
#: bulk-emails-for-woocommerce.php:113
#: bulk-emails-for-woocommerce.php:137
msgid "Untitled reminder (#%s)"
msgstr ""

#. translators: %s: email title
#: bulk-emails-for-woocommerce.php:191
#: bulk-emails-for-woocommerce.php:215
msgid "%s email notification manually sent from bulk actions."
msgstr ""

#: bulk-emails-for-woocommerce.php:207
#: bulk-emails-for-woocommerce.php:231
msgid "An error occurred while processing your bulk email sending request!"
msgstr ""

#: bulk-emails-for-woocommerce.php:210
#: bulk-emails-for-woocommerce.php:234
msgid "Your bulk emails are now scheduled to be delivered as soon as possible!"
msgstr ""

#. translators: %1$s: opening link tag, %2$s: closing link tag
#: bulk-emails-for-woocommerce.php:245
#: bulk-emails-for-woocommerce.php:269
msgid "Bulk Emails for WooCommerce requires %1$sWooCommerce%2$s to be installed & activated!"
msgstr ""

0 comments on commit 95b280d

Please sign in to comment.