Skip to content

Commit

Permalink
Update README.txt, minor other adjustments.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmacarthur committed May 28, 2020
1 parent 961056c commit 2ba8cc1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 85 deletions.
71 changes: 0 additions & 71 deletions README.md

This file was deleted.

26 changes: 16 additions & 10 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,29 +1,35 @@
=== 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.
* *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...
= 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.

Expand Down Expand Up @@ -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!

2 changes: 1 addition & 1 deletion src/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
);
Expand Down
6 changes: 3 additions & 3 deletions typeit.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
/**
* Plugin Name: WP TypeIt
* Plugin Name: WP TypeIt Lite
* Plugin URI: https://typeitjs.com
* Description: Easily create and manage typewriter effects using the JavaScript utility, TypeIt.
* Version: 1.0.2
* Version: 1.0.3
* Author: Alex MacArthur
* Author URI: https://macarthur.me
* License: GPLv2 or later
Expand Down Expand Up @@ -43,4 +43,4 @@ public function __construct() {

App::go();

}
}

0 comments on commit 2ba8cc1

Please sign in to comment.