1. Actionstream 0.45

    body

    I have updated wp-diso-actionstream to 0.45, changes include:

    • Fully tested WP2.5 support
    • Fixes for Last.fm support
    • Better microformats output
    Creative Commons Licence © 2006-2008 Stephen Paul Weber. Some Rights Reserved.
  2. ActionStream 0.40 and DiSo Profile 0.25

    body

    I have updated two of my DiSo plugins: Profile and ActionStream.

    The profile updates mostly involve some code cleanup, a page here documenting it, and a new API to add permissions options to the permissions page.

    The ActionStream update is a bit more extensive:

    • Support for coComment
    • Code cleanup, of course
    • RSS2 output option, linked from the stream output (add &full for a different view)
    • Reportedly working in WP2.5 with a patch I accepted
    • Better Safari support
    • If you disable showing your service usernames they are also hidden in the collapsed items
    • Abitily to set permissions on updates from each service (if wp-diso-profile0.25 is installed)
    Creative Commons Licence © 2006-2008 Stephen Paul Weber. Some Rights Reserved.
  3. Actionstream 0.35

    body

    I'm updating too fast.  This release brings some improvements to the UI for adding services.  There are also now options to use the plugin as a sidebar widget or with at easy-to-include post/page tag.  This release also brings the recognition of a requirement of PHP5.2.0 or higher (after much debugging with James Kirk).

    And, as always, bug fixes!

    See the plugin page for more information /download. 

    Creative Commons Licence © 2006-2008 Stephen Paul Weber. Some Rights Reserved.
  4. Actionstream 0.30

    body

    Some significant improvements to my ActionStream plugin. The plugin can always be downloaded from that page.  The changes are:

    1. Bugfix in how some feeds were handled (notably google reader)
    2. If nicknames are being displayed, they are hcards with links to your profile at that service
    3.  Including updates from your own blog is now optional
    4. There is now an option to remove services you have added
    5. Collapsed (5 more… et al) nodes may now be expanded on link click
    Creative Commons Licence © 2006-2008 Stephen Paul Weber. Some Rights Reserved.
  5. Actionstream Plugin Update

    body

    I am pleased to announce version 0.2 of my Wordpress Actionstream plugin!

    It can be downloaded from the normal place.

    New this release:

    1. Better microformats support in the output
    2. Some architecture improvements and bug fixes
    3. There is now a sanity check for zero items or less items than requested
    4. Posts on the host blog are now added to the actionstream
    5. There is a well defined way to add stream items (say, from another plugin). Just create an array with the fields you need (be sure to specify identifier and created_on - GUID and unix time of publish, respectively) - usually includes title and url. Then instantiate an object of class ActionStreamItem and save in like so: (new ActionStreamItem($array_data, 'service', 'data_type', $user_id))->save();
    6. There is now a hook for other plugins to add available services. Example:
      actionstream_service_register('feed',
      
            array(
      
               'name' => 'Feed',
      
               'url' => '%s'
      
            ),
      
            array(
      
               'entries' => array(
      
                     'html_form' => '[_1] posted <a href="[_2]" rel="bookmark" class="entry-title">[_3]</a>',
      
                     'html_fields' => array('url', 'title'),
      
                     'url' => '{{ident}}',
      
                  )
      
            ));
      
      
    Creative Commons Licence © 2006-2008 Stephen Paul Weber. Some Rights Reserved.
Stephen Paul Weber