Skip to content

Commit

Permalink
release candidate 1
Browse files Browse the repository at this point in the history
  • Loading branch information
kilbot committed May 1, 2023
1 parent 675f2b8 commit f79704b
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wcpos/woocommerce-pos",
"version": "1.0.0-beta.4",
"version": "1.0.0-rc.1",
"description": "A simple front-end for taking WooCommerce orders at the Point of Sale.",
"main": "index.js",
"workspaces": {
Expand Down
1 change: 1 addition & 0 deletions packages/settings/assets/book.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/settings/assets/comment-question.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/settings/assets/discord.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/settings/assets/email.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 16 additions & 6 deletions packages/settings/src/screens/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import * as React from 'react';

import { Icon } from '@wordpress/components';

import Book from '../../assets/book.svg';
import Question from '../../assets/comment-question.svg';
import Discord from '../../assets/discord.svg';
import Email from '../../assets/email.svg';
import { t } from '../translations';

const Footer = () => {
Expand All @@ -12,25 +14,33 @@ const Footer = () => {
</div>
<div className="wcpos-mt-1 sm:wcpos-mt-0 wcpos-space-y-2">
<p className="wcpos-flex wcpos-items-center wcpos-mt-0">
<Icon icon="book" className="wcpos-mr-2 wcpos-text-gray-500" />
<span className="wcpos-mr-2 wcpos-h-4 wcpos-w-4">
<Book fill="#3c434a" />
</span>
<a href="https://docs.wcpos.com" target="_blank" rel="noreferrer">
{t('Documentation', { _tags: 'wp-admin-settings' })}
</a>
</p>
<p className="wcpos-flex wcpos-items-center">
<Icon icon="feedback" className="wcpos-mr-2 wcpos-text-gray-500" />
<span className="wcpos-mr-2 wcpos-h-4 wcpos-w-4">
<Question fill="#3c434a" />
</span>
<a href="https://faq.wcpos.com" target="_blank" rel="noreferrer">
{t('Frequently Asked Questions', { _tags: 'wp-admin-settings' })}
</a>
</p>
<p className="wcpos-flex wcpos-items-center">
<Icon icon="email" className="wcpos-mr-2 wcpos-text-gray-500" />
<span className="wcpos-mr-2 wcpos-h-4 wcpos-w-4">
<Email fill="#3c434a" />
</span>
<a href="mailto:[email protected]" target="_blank" rel="noreferrer">
[email protected]
</a>
</p>
<p className="wcpos-flex wcpos-items-center">
<Icon icon="testimonial" className="wcpos-mr-2 wcpos-text-gray-500" />
<span className="wcpos-mr-2 wcpos-h-4 wcpos-w-4">
<Discord fill="#3c434a" />
</span>
<a href="https://wcpos.com/discord" target="_blank" rel="noreferrer">
<img
id="discord-badge"
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-pos.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* 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.0.0-beta.4
* Version: 1.0.0-rc.1
* Author: kilbot
* Author URI: http://wcpos.com
* Text Domain: woocommerce-pos
Expand All @@ -23,7 +23,7 @@
use Dotenv\Dotenv;

// Define plugin constants.
const VERSION = '1.0.0-beta.4';
const VERSION = '1.0.0-rc.1';
const PLUGIN_NAME = 'woocommerce-pos';
const SHORT_NAME = 'wcpos';
\define( __NAMESPACE__ . '\PLUGIN_FILE', plugin_basename( __FILE__ ) ); // 'woocommerce-pos/woocommerce-pos.php'
Expand Down

0 comments on commit f79704b

Please sign in to comment.