diff --git a/comiceasel.php b/comiceasel.php index 31850b6..160263e 100644 --- a/comiceasel.php +++ b/comiceasel.php @@ -3,7 +3,7 @@ Plugin Name: Comic Easel Plugin URI: http://comiceasel.com Description: Comic Easel allows you to incorporate a WebComic using the WordPress Media Library functionality with Navigation into almost all WordPress themes. With just a few modifications of adding injection do_action locations into a theme, you can have the theme of your choice display and manage a webcomic. -Version: 1.8.1 +Version: 1.8.2 Author: Philip M. Hofer (Frumph) Author URI: http://frumph.net/ @@ -544,7 +544,7 @@ function ceo_pluginfo($whichinfo = null) { // comic-easel plugin directory/url 'plugin_url' => plugin_dir_url(__FILE__), 'plugin_path' => plugin_dir_path(__FILE__), - 'version' => '1.8.1' + 'version' => '1.8.2' ); // Combine em. $ceo_pluginfo = array_merge($ceo_pluginfo, $ceo_addinfo); diff --git a/images/nav/npc/archive.png b/images/nav/npc/archive.png new file mode 100644 index 0000000..9c6050a Binary files /dev/null and b/images/nav/npc/archive.png differ diff --git a/images/nav/npc/buycomic.png b/images/nav/npc/buycomic.png new file mode 100644 index 0000000..4764974 Binary files /dev/null and b/images/nav/npc/buycomic.png differ diff --git a/images/nav/npc/comments.png b/images/nav/npc/comments.png new file mode 100644 index 0000000..fc5a8cc Binary files /dev/null and b/images/nav/npc/comments.png differ diff --git a/images/nav/npc/first.png b/images/nav/npc/first.png new file mode 100644 index 0000000..c667a23 Binary files /dev/null and b/images/nav/npc/first.png differ diff --git a/images/nav/npc/firstin.png b/images/nav/npc/firstin.png new file mode 100644 index 0000000..d8d0667 Binary files /dev/null and b/images/nav/npc/firstin.png differ diff --git a/images/nav/npc/last.png b/images/nav/npc/last.png new file mode 100644 index 0000000..4d7be9a Binary files /dev/null and b/images/nav/npc/last.png differ diff --git a/images/nav/npc/lastin.png b/images/nav/npc/lastin.png new file mode 100644 index 0000000..9a2b286 Binary files /dev/null and b/images/nav/npc/lastin.png differ diff --git a/images/nav/npc/navstyle.css b/images/nav/npc/navstyle.css new file mode 100644 index 0000000..6624d93 --- /dev/null +++ b/images/nav/npc/navstyle.css @@ -0,0 +1,132 @@ +/* COMIC NAVIGATION +Author: Mary Varn npccomic.com +Style: npc_2014 +*/ + +.comic_navi_wrapper { + margin: 0 auto; + width: 100%; + font-size: 10px; + vertical-align:text-top; +} + +.comic_navi { + display: inline-block; + border-collapse: collapse; + text-align: center; + margin: 0 auto; +} + +.comic_navi_left, .comic_navi_center, .comic_navi_right { + vertical-align: text-top; +} + +.navi-comictitle { + padding-top: 26px; + font-size: 14px; + font-weight: bold; +} + +.navi-comicchapter{ + padding-top: 26px; + font-size: 14px; + font-weight: bold; +} + +.navi { + width: 44px; + padding-top: 44px; + margin: 0 0px; + font-size: 0.9em; + color: #555; + display: inline-block; + vertical-align:text-top; +} + +.navi:hover { + background-position: -44px 0; +} + +.navi-first { + background: url('first.png') no-repeat; +} + +.navi-first-in { + background: url('firstin.png') no-repeat; +} + +.navi-prev { + /*margin-right: 10px;*/ + background: url('prev.png') no-repeat; +} + +.navi-prev-in { + background: url('prev.png') no-repeat; +} + +.navi-prev-chap { + background: url('prevchap.png') no-repeat; +} + +.navi-archive, .navi-archives { + background: url('archive.png') no-repeat; +} + +.navi-buycomic { + background: url('buycomic.png') no-repeat; +} + +.navi-random { + background: url('random.png') no-repeat; +} + +.navi-subscribe { + background: url('subscribe.png') no-repeat; +} + +.navi-comments { + padding: 0; + background: url('comments.png') no-repeat; +} + +a.navi-comments span { + display: inline-block; + width: 44px; + height: 39px; + font-size: 12px; + font-weight: bold; + line-height: 24px; + color: #fff; + text-indent: 0; + margin-top:5px; +} + +a.navi-comments span:hover { + color: #333; +} + +.navi-next { + /*margin-left: 10px;*/ + background: url('next.png') no-repeat; +} + +.navi-next-in { + background: url('next.png') no-repeat; +} + +.navi-next-chap { + background: url('nextchap.png') no-repeat; +} + +.navi-last-in { + background: url('lastin.png') no-repeat; +} + +.navi-last { + background: url('last.png') no-repeat; +} + +.navi-void, .navi-void:hover { + color: #999; + background-position: -88px 0; +} diff --git a/images/nav/npc/next-in.png b/images/nav/npc/next-in.png new file mode 100644 index 0000000..b49b9a9 Binary files /dev/null and b/images/nav/npc/next-in.png differ diff --git a/images/nav/npc/next.png b/images/nav/npc/next.png new file mode 100644 index 0000000..95d0783 Binary files /dev/null and b/images/nav/npc/next.png differ diff --git a/images/nav/npc/nextchap.png b/images/nav/npc/nextchap.png new file mode 100644 index 0000000..7e20baa Binary files /dev/null and b/images/nav/npc/nextchap.png differ diff --git a/images/nav/npc/prev-in.png b/images/nav/npc/prev-in.png new file mode 100644 index 0000000..71daa07 Binary files /dev/null and b/images/nav/npc/prev-in.png differ diff --git a/images/nav/npc/prev.png b/images/nav/npc/prev.png new file mode 100644 index 0000000..07c7566 Binary files /dev/null and b/images/nav/npc/prev.png differ diff --git a/images/nav/npc/prevchap.png b/images/nav/npc/prevchap.png new file mode 100644 index 0000000..8a98824 Binary files /dev/null and b/images/nav/npc/prevchap.png differ diff --git a/images/nav/npc/random.png b/images/nav/npc/random.png new file mode 100644 index 0000000..cedf635 Binary files /dev/null and b/images/nav/npc/random.png differ diff --git a/images/nav/npc/share.png b/images/nav/npc/share.png new file mode 100644 index 0000000..a6df059 Binary files /dev/null and b/images/nav/npc/share.png differ diff --git a/images/nav/npc/sharebox.png b/images/nav/npc/sharebox.png new file mode 100644 index 0000000..89ddc3d Binary files /dev/null and b/images/nav/npc/sharebox.png differ diff --git a/images/nav/npc/subscribe.png b/images/nav/npc/subscribe.png new file mode 100644 index 0000000..61249da Binary files /dev/null and b/images/nav/npc/subscribe.png differ diff --git a/readme.txt b/readme.txt index 0225af5..ca0fa11 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: Frumph Tags: comiceasel, easel, webcomic, comic, webcomic Requires at least: 3.2 Tested up to: 4.0 -Stable tag: 1.8.1 +Stable tag: 1.8.2 Donate link: http://frumph.net License: GPLv3 or later License URI: http://www.gnu.org/licenses/gpl-3.0.html