Skip to content

Commit

Permalink
1.0.3 Updates. Closes gh-1
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmmartin committed Dec 3, 2010
1 parent 6855e0b commit 14ca1cf
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 32 deletions.
1 change: 0 additions & 1 deletion css/default.css
@@ -1,7 +1,6 @@
/*
* SimpleModal Login - WordPress Modal Ajax Login
* Theme: default
* Revision:$Id$
* Copyright (c) 2010 Eric Martin http://www.ericmmartin.com
*/

Expand Down
1 change: 0 additions & 1 deletion css/osx.css
@@ -1,7 +1,6 @@
/*
* SimpleModal Login - WordPress Modal Ajax Login
* Theme: osx
* Revision:$Id$
* Copyright (c) 2010 Eric Martin http://www.ericmmartin.com
*/

Expand Down
2 changes: 0 additions & 2 deletions js/default.js
@@ -1,7 +1,6 @@
/*
* SimpleModal Login
* Theme: default
* Revision: $Id$
* Copyright (c) 2010 Eric Martin http://www.ericmmartin.com
*/
jQuery(function ($) {
Expand Down Expand Up @@ -107,7 +106,6 @@ jQuery(function ($) {
form = s.login;
s.lostpw.hide(); s.register.hide();
s.login.show();
s.modal.update();
}
$('p:first', form[0]).before(message);
activity.hide(); fields.show();
Expand Down
39 changes: 20 additions & 19 deletions js/jquery.simplemodal.js

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions js/osx.js
@@ -1,7 +1,6 @@
/*
* SimpleModal Login
* Theme: osx
* Revision: $Id$
* Copyright (c) 2010 Eric Martin http://www.ericmmartin.com
*/
jQuery(function ($) {
Expand Down Expand Up @@ -123,7 +122,6 @@ jQuery(function ($) {
form = s.login;
s.lostpw.hide(); s.register.hide();
s.login.show();
s.modal.update();
}
$('p:first', form[0]).before(message);
activity.hide(); fields.show();
Expand Down
9 changes: 7 additions & 2 deletions readme.txt
Expand Up @@ -3,8 +3,8 @@ Contributors: emartin24
Donate link: http://www.ericmmartin.com/donate/
Tags: ajax, login, modal, admin, password, username, register, manage, redirect, widget, plugin
Requires at least: 2.5.0
Tested up to: 3.0.1
Stable tag: 1.0.2
Tested up to: 3.0.2
Stable tag: 1.0.3

SimpleModal Login provides a modal Ajax login, registration, and password reset feature for WordPress which utilizes jQuery and the SimpleModal jQuery

Expand Down Expand Up @@ -174,6 +174,11 @@ Just add the following to your `style.css` file:

== Changelog ==

= 1.0.3 =
* Upgraded to SimpleModal 1.4.1
* Updated add_options_page() arguments to prevent deprecation warning. Thanks to DanHarrison for reporting and providing a fix.
* Removed s.modal.update(); from both osx.js and default.js. It was causing issues with the dialog height.

= 1.0.2 =
* Changed language domain name from simplemodal_login to simplemodal-login (this will affect translation file names)
* Updated pastebin.com link with language domain name updates
Expand Down
10 changes: 5 additions & 5 deletions simplemodal-login.php
Expand Up @@ -3,10 +3,9 @@
Plugin Name: SimpleModal Login
Plugin URI: http://www.ericmmartin.com/projects/simplemodal-login/
Description: A modal Ajax login, registration, and password reset feature for WordPress which utilizes jQuery and the SimpleModal jQuery plugin.
Version: 1.0.2
Version: 1.0.3
Author: Eric Martin
Author URI: http://www.ericmmartin.com
Revision: $Id$
*/

/* Copyright 2010 Eric Martin (eric@ericmmartin.com)
Expand Down Expand Up @@ -43,12 +42,12 @@ class SimpleModalLogin {
/**
* @var string The plugin version
*/
var $version = '1.0.2';
var $version = '1.0.3';

/**
* @var string The plugin version
*/
var $simplemodalVersion = '1.4';
var $simplemodalVersion = '1.4.1';

/**
* @var string The options string name for this plugin
Expand Down Expand Up @@ -118,7 +117,7 @@ function __construct() {
* @desc Adds the options subpanel
*/
function admin_menu_link() {
add_options_page('SimpleModal Login', 'SimpleModal Login', 10, basename(__FILE__), array(&$this, 'admin_options_page'));
add_options_page('SimpleModal Login', 'SimpleModal Login', 'manage_options', basename(__FILE__), array(&$this, 'admin_options_page'));
add_filter('plugin_action_links_' . plugin_basename(__FILE__), array(&$this, 'filter_plugin_actions'), 10, 2 );
}

Expand Down Expand Up @@ -205,6 +204,7 @@ function admin_options_page() {
</ul>
<h2><?php _e('Other Links', 'simplemodal-login'); ?></h2>
<ul>
<li>&raquo; <a href='https://github.com/ericmmartin/simplemodal-login'>SimpleModal Login</a> on GitHub</li>
<li>&raquo; <a href='http://twitter.com/ericmmartin'>@ericmmartin</a> on Twitter</li>
<li>&raquo; <a href='http://www.ericmmartin.com'>ericmmartin.com</a></li>
<li>&raquo; <a href='http://www.ericmmartin.com/projects/smcf/'>SimpleModal Contact Form (SMCF)</a> - an Ajax powered modal contact form built on jQuery and SimpleModal</li>
Expand Down

0 comments on commit 14ca1cf

Please sign in to comment.