This is a big release for Conan Stats mainly focusing on improving the plugin interface, improving the userinterface and a internal code cleanup ( also known as a refactor ). The updates to the plugin interface is mainly focused on helping plugin developers that want to provide custom parsers for other languages ( Currently someone has started on French and russian ). The improvements in the user interface is regarding publishing logs to conanstats.com
Download here
Changelog here
Plugin API here
EDIT: Minor update 1.9.0.2 has been released, this fixes a issue with time in combat not being calculated correctly.
Understanding stats like blocks and parries.
Since Age of Conan only logs this information from the person who is recording the logs, Conan Stats can only display it for the recording character. The stats are displayed in the main UI in the stats tab.

As you can see it displays the total number of Blocks, dodges and parries (When the number is above 0 ).
In the documentation is says the following way to allows for easy debuging of plugins:
Setting up Visual Studio
* Now go to the Debug tab, and select Start external program
Unfortunately, this option is not available in the Express version.
But a workaround exists:
Go to your project directory and edit (or create) the .csproj.user. e.g. Warnings.csproj.user in Sample Plugin\Sound Warning.
Add the following lines in the
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
section:
<StartAction>Program</StartAction>
<StartProgram>C:\aoc\Conan Stats Beta\Conan Stats.exe</StartProgram>
Your file should look like :
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<StartWorkingDirectory>C:\aoc\Conan Stats Beta\</StartWorkingDirectory>
<StartAction>Program</StartAction>
<StartProgram>C:\aoc\Conan Stats Beta\Conan Stats.exe</StartProgram>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<StartWorkingDirectory>C:\aoc\Conan Stats Beta\</StartWorkingDirectory>
</PropertyGroup>
</Project>
This work around was posted noted by Dalen and he found it here