-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
34 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,7 +86,7 @@ public function head(): void { | |
public function footer(): void { | ||
$development = isset( $_ENV['DEVELOPMENT'] ) && $_ENV['DEVELOPMENT']; | ||
$user = wp_get_current_user(); | ||
$github_url = 'https://wcpos.github.io/managed-expo/'; | ||
$github_url = 'https://cdn.jsdelivr.net/gh/wcpos/[email protected]/'; | ||
$auth_service = Auth::instance(); | ||
$stores = array_map( | ||
function ( $store ) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
* Plugin Name: WooCommerce POS | ||
* Plugin URI: https://wordpress.org/plugins/woocommerce-pos/ | ||
* Description: A simple front-end for taking WooCommerce orders at the Point of Sale. Requires <a href="http://wordpress.org/plugins/woocommerce/">WooCommerce</a>. | ||
* Version: 1.4.0-beta.5 | ||
* Version: 1.4.0 | ||
* Author: kilbot | ||
* Author URI: http://wcpos.com | ||
* Text Domain: woocommerce-pos | ||
* License: GPL-3.0+ | ||
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt | ||
* Domain Path: /languages | ||
* WC tested up to: 8.1 | ||
* WC tested up to: 8.4 | ||
* WC requires at least: 5.3. | ||
* | ||
* @author Paul Kilmurray <[email protected]> | ||
|
@@ -22,7 +22,7 @@ | |
namespace WCPOS\WooCommercePOS; | ||
|
||
// Define plugin constants. | ||
const VERSION = '1.4.0-beta.5'; | ||
const VERSION = '1.4.0'; | ||
const PLUGIN_NAME = 'woocommerce-pos'; | ||
const SHORT_NAME = 'wcpos'; | ||
\define( __NAMESPACE__ . '\PLUGIN_FILE', plugin_basename( __FILE__ ) ); // 'woocommerce-pos/woocommerce-pos.php' | ||
|
@@ -32,7 +32,7 @@ | |
// minimum requirements. | ||
const WC_MIN_VERSION = '5.3'; | ||
const PHP_MIN_VERSION = '7.4'; | ||
const MIN_PRO_VERSION = '1.4.0-beta.3'; | ||
const MIN_PRO_VERSION = '1.4.0'; | ||
|
||
// load .env flags (for development). | ||
function load_env( $file ) { | ||
|