Plugin Directory

Changeset 404595


Ignore:
Timestamp:
07/04/2011 11:20:15 PM (15 years ago)
Author:
sproject
Message:

release 0.1.2

Location:
readability/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • readability/trunk/readability.php

    r404191 r404595  
    44Plugin URI: http://www.sproject.name/download/wp-readability/
    55Description: Plugin which lets you to show posts in stylish, legible pop-up window, like in Safari.
    6 Version: 0.1.1
     6Version: 0.1.2
    77Author: Piotr Sochalewski
    88Author URI: http://www.sproject.name/
  • readability/trunk/readme.txt

    r404191 r404595  
    44Tags: reader, reader, legible, elegant, clear, safari
    55Requires at least: 2.9
    6 Tested up to: 3.2-RC3
    7 Stable tag: 0.1.1
     6Tested up to: 3.2
     7Stable tag: 0.1.2
    88
    99== Description ==
     
    2424== Changelog ==
    2525
     26= 0.1.2 =
     27* Headers are aligned to left instead of justified
     28* Stylish lists (ordered and unordered)
     29* More "normalize" hacks
     30
    2631= 0.1.1 =
    27 * Quotations are nice now (and looks like quotations instead of just para).
    28 * Updated style for anchors too.
     32* Quotations are nice now (and looks like quotations instead of just para)
     33* Updated style for anchors too
    2934
    3035= 0.1 =
    31 * First stable release with implemented settings.
     36* First stable release with implemented settings
    3237
    3338= 0.1-beta9 =
    34 * Stylish headings.
     39* Stylish headings
    3540
    3641= 0.1-beta8 =
    37 * Minor fix, but it could be important.
     42* Minor fix, but it could be important
    3843
    3944= 0.1-beta7 =
    40 * Better CSS for pictures.
     45* Better CSS for pictures
    4146
    4247= 0.1-beta6 =
    43 * Everything works even if you have wp-Typography installed.
     48* Everything works even if you have wp-Typography installed
    4449
    4550= 0.1-beta5 =
    46 * Better typography thanks to PHP Typography,
    47 * Fixed CSS.
     51* Better typography thanks to PHP Typography
     52* Fixed CSS
    4853
    4954= 0.1-beta4 =
    50 * Added simple space control, which prevents single character words from residing at the end of a line.
     55* Added simple space control, which prevents single character words from residing at the end of a line
    5156
    5257= 0.1-beta3 =
    53 * Fixed CSS from beta2 wasn't exactly fixed.
     58* Fixed CSS from beta2 wasn't exactly fixed
    5459
    5560= 0.1-beta2 =
    56 * Fixed width in some weird cases.
     61* Fixed width in some weird cases
    5762
    5863= 0.1-beta =
     
    6065
    6166= 0.1-alpha4 =
    62 * No conflict with another jQuery plugins.
     67* No conflict with another jQuery plugins
    6368
    6469= 0.1-alpha3 =
    65 * Pop-up window is really nice now.
     70* Pop-up window is really nice now
    6671
    6772= 0.1-alpha2 =
  • readability/trunk/style.css

    r404191 r404595  
    2222#readability p, #readability h1, #readability h2, #readability h3, #readability h4, #readability h5, #readability h6 {
    2323    width: 650px;
    24     text-align: justify !important;
    2524    font-weight: normal;
    2625    font-style: normal;
     26}
     27
     28#readability p {
     29    text-align: justify !important;
     30}
     31
     32#readability h1, #readability h2, #readability h3, #readability h4, #readability h5, #readability h6 {
     33    text-align: left !important;
     34    text-transform: none;
     35    letter-spacing: normal;
     36    text-rendering: auto;
    2737}
    2838
     
    7484}
    7585
     86/* Hack for The Erudite theme */
     87#readability span.before.quote, #readability span.after.quote {
     88    display: none;
     89}
     90
     91#readability ul li {
     92    list-style: disc inside;
     93}
     94
     95#readability ol li {
     96    list-style: decimal inside;
     97}
     98
     99#readability ul li, #readability ol li {
     100    text-indent: -.5em;
     101    padding-left: .5em;
     102}
     103
     104#readability ol, #readability ul {
     105    margin-bottom: 1em;
     106}
     107
    76108#readability img {
    77109    padding: 4px;
Note: See TracChangeset for help on using the changeset viewer.