diff --git a/README.md b/README.md
deleted file mode 100755
index b963f5a..0000000
--- a/README.md
+++ /dev/null
@@ -1,71 +0,0 @@
-# WP TypeIt
-
-## Description
-This is the official free WordPress plugin for [TypeIt](https://typeitjs.com), the most versatile animated typing utility on the planet. WP TypeIt allows you to easily generate typewriter effects for your website using an easy-to-configure shortcode. Place this shortcode on any post or page, and the effect will be live.
-
-### The Perks
-* *Unobtrusive* - All this plugin does is register a shortcode you can use in your posts.
-* *Lightweight* - TypeIt is 100% vanilla JavaScript, so it won't load any dependencies like jQuery.
-* *Performance in Mind* - TypeIt will only be enqueued if it's actually needed on the page.
-* *The Real Deal* - This plugin is created and maintained by the creator of TypeIt itself.
-
-### Heads Up for WP TypeIt Pro
-If you're looking to generate more advanced typewriter effects, keep an eye out for WP TypeIt Pro, which will allow you to write multiple strings per instance, build effects with a custom post type and friendly UI, and more. Stay tuned...
-
-## Installation
-1. Download the plugin and upload to your plugins directory, or install the plugin through the WordPress plugins page.
-2. Activate the plugin on the 'Plugins' page.
-
-## Using the Plugin
-
-### Make an Effect Using Shortcode Attributes
-You can generate a typewriter effect by using a variation of the following shortcode in a post or page, passing each setting as a shortcode attribute.
-
-At bare minimum, you need to pass a `strings` attribute:
-
-```
-[typeit strings="Look, I'm typing a string!"]
-```
-
-There also exists a wide set of attributes you may use to customize the typing effects. For example, setting speed (in milliseconds):
-
-```
-
[typeit strings="Look, I'm typing a string!" speed="500"]
-```
-
-Or, making an effect continuously loop:
-
-```
-[typeit strings="This is a string that will loop!" speed="100" loop="true"]
-```
-
-### Define Strings in an SEO-Friendly Way
-As demonstrated, you can define a string to be typed by passing it in as a "strings" attribute. However, you may also define them by passing them inside of two enclosing shortcode tags:
-
-```
-[typeit speed="300"]This string will exist in your HTML, and when the page is loaded, TypeIt will take over and animate it.[/typeit]
-```
-
-When the tag is rendered, that string will be hard-coded on the page, rather than stored in memory on page load. The advantage to this approach is that web crawlers will be able to parse the text without JavaScript, making the content a bit more SEO-friendly.
-
-### View All Available Options
-For the full list of options you may pass, refer to the documentation at [typeitjs.com/docs#options](https://typeitjs.com/docs#options).
-
-### Changelog
-
-## 1.0.0
-* Initial release.
-
-## 1.0.1
-* Improve documentation.
-* Add unit testing for increased code reliability.
-* Fix bug causing camel-cased shortcode attributes to work improperly.
-
-## 1.0.2
-* Improve code structure.
-* Make code more easily hookable for developers.
-
-## Feedback
-You like it? [Email](mailto:alex@macarthur.me) or [tweet](http://www.twitter.com/amacarthur) me. You hate it? [Email](mailto:alex@macarthur.me) or [tweet](http://www.twitter.com/amacarthur) me.
-
-Regardless of how you feel, your review would be greatly appreciated!
diff --git a/readme.txt b/readme.txt
index ac5f0de..ee8c07e 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,17 +1,17 @@
-=== WP TypeIt ===
+=== WP TypeIt Lite ===
Contributors: alexmacarthur
Donate link: paypal.me/alexmacarthur
Tags: typewriter effect, text effect, text animation
Requires PHP: 5.6
Requires at least: 4.0
-Tested up to: 4.9.7
-Stable tag: 1.0.2
+Tested up to: 5.4.1
+Stable tag: 1.0.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
== Description ==
-This is the official free WordPress plugin for [TypeIt](https://typeitjs.com), the most versatile animated typing utility on the planet. WP TypeIt allows you to easily generate typewriter effects for your website by use of a single easy-to-configure shortcode. Place this shortcode on any post or page, and the effect will be live.
+This is the official free WordPress plugin for [TypeIt](https://typeitjs.com), the most versatile animated typing utility on the planet. WP TypeIt Lite allows you to easily generate typewriter effects for your website by use of a single easy-to-configure shortcode. Place this shortcode on any post or page, and the effect will be live.
= The Perks =
* *Unobtrusive* - All this plugin does is register a shortcode you can use in your posts.
@@ -19,11 +19,17 @@ This is the official free WordPress plugin for [TypeIt](https://typeitjs.com), t
* *Performance in Mind* - TypeIt will only be enqueued if it's actually needed on the page.
* *The Real Deal* - This plugin is created and maintained by the creator of TypeIt itself.
-= Heads Up for WP TypeIt Pro =
-If you're looking to generate more advanced typewriter effects, keep an eye out for WP TypeIt Pro, which will allow you to write multiple strings per instance, build effects with a custom post type and friendly UI, and more. Stay tuned...
+= Want More Features & Active Development? =
+Being a "lite" version, this plugin largely receives maintenance updates and will probably not gain any more features than what's currently here. By purchasing a license for the fully-featured version of the plugin, you'll get the following:
+
+* Access to a Gutenberg block for creating highly customizable, dynamic effects.
+* More features for the shortcode provided by the plugin.
+* More frequent TypeIt source updates.
+
+For more information, [see here](https://typeitjs.com/docs/wordpress).
== Installation ==
-s
+
1. Download the plugin and upload to your plugins directory, or install the plugin through the WordPress plugins page.
2. Activate the plugin through the 'Plugins' page.
@@ -86,9 +92,9 @@ Nope! TypeIt uses vanilla JavaScript with no external dependencies, so you're go
* Improve code structure.
* Make code more easily hookable for developers.
+= 1.0.3 =
+* Update TypeIt's source to v7.0.4.
+
== Feedback ==
You like it? [Email](mailto:alex@macarthur.me) or [tweet](http://www.twitter.com/amacarthur) me. You hate it? [Email](mailto:alex@macarthur.me) or [tweet](http://www.twitter.com/amacarthur) me.
-
-Regardless of how you feel, your review would be greatly appreciated!
-
diff --git a/src/Store.php b/src/Store.php
index 2f09236..855bdd5 100644
--- a/src/Store.php
+++ b/src/Store.php
@@ -5,7 +5,7 @@
class Store {
private static $data = array(
- 'typeit_version' => '7.0.0',
+ 'typeit_version' => '7.0.4',
'option_defaults' => array(),
'option_default_values' => array()
);
diff --git a/typeit.php b/typeit.php
index d27a04c..ea018c7 100644
--- a/typeit.php
+++ b/typeit.php
@@ -1,9 +1,9 @@