Linux 软件免费装
Banner图

FV Flowplayer Video Player

开发者 FolioVision
更新时间 2024年5月20日 20:18
捐献地址: 去捐款
PHP版本: 3.5 及以上
WordPress版本: 6.3
版权: GPLv3 or later
版权网址: 版权信息

标签

Vimeo video player video playlist youtube playlist HLS html5 player youtube player flowplayer mobile video html5 video RTMP Cloudfront

下载

6.6.6 7.4.2.727 7.4.0.727 7.4.14.727 7.4.17.727 7.4.33.727 7.4.34.727 7.4.36.727 7.4.37.727 7.4.38.727 7.4.39.727 7.4.6.727 7.4.8.727 7.4.40.727 7.4.46.727 7.4.9.727 7.4.21.727 7.4.24.727 7.4.45.727 0.9.17 7.5.5.727 7.5.7.727 7.5.13.727 7.5.3.727 7.1.15.727 7.2.8.727 7.5.22.728 6.0.5.24 7.3.19.727 7.5.10.727 7.5.15.727 7.5.29.7210 2.4.2 7.5.12.727 7.5.26.7210 7.5.36.7212 7.5.39.7212 7.5.21.727 7.5.41.7212 7.5.14.727 1.2.17 7.4.47.727

详情介绍:

Custom HTML 5 video on your own site with Flash fallback for legacy browsers is here. FV Player is a free, easy-to-use, and complete solution for embedding FLV or MP4 videos into your posts or pages. With MP4 videos, FV Player offers 98% coverage even on mobile devices. To remove our branding and add your own branding and get access to additional pro support, you can buy your own license here. Back to school special 25% off pro licenses until end of September. Additional Technical information Additional Documentation at Foliovision.com Support | Change Log | Installation| User Guide | Detailed FAQ

安装:

There aren't any special requirements for FV Player to work, and you don't need to install any additional plugins.
  1. Download and unpack zip archive containing the plugin.
  2. Upload the fv-wordpress-flowplayer directory into wp-content/plugins/ directory of your wordpress installation.
  3. Go into WordPress plugins setup in WordPress administration interface and activate FV Player plugin.
  4. If you want to embed videos denoted just by their filename, you can create the /videos/ directory located directly in the root of your domain and place your videos there(you use complete URL of video files).
  5. Go to plugin Settings screen and click both "Check template" and "Check videos" buttons to check your template and videos mime type.
Visit our site for a fully featured guide with screenshots and more!

屏幕截图:

  • FV Player shortcode in post content
  • It's easy to use our shortcode editor to add videos
  • Plugin settings screen
  • Video checker helps you find issues with your video encoding

其他记录:

This new version uses Flowplayer 5 running on HTML5, so we recommend you read first two questions of FAQ first. Once the plugin is uploaded and activated, there will be a submenu of settings menu called FV Player. In that submenu, you can modify following settings: On the right side of this screen, you can see the current visual configuration of flowplayer. If you click Apply Changes button, this player’s looks refreshes.

常见问题:

  1. My video doesn't play in some browsers.

This should be related to your video format or mime type issues. Each browser supports different video format, MP4 is the recommended format. In general, it's recommended to use constant frame rate. Detailed instructions about video encoding for HTML 5. HTML5 is pickier about what video it can play than Flash. Please note that MP4 is just a container, it might contain various streams for audio and video. You should check what audio and video stream are you using. Read next question to find out how.

  1. Player buttons are gone - there are only square symbols.

  1. This can happen if your site is at www.domain.com, but the CSS is loaded from your CDN at cdn.domain.com. Based on CSS3 and HTML5 specs not all the resources can be shared between domains.
So you need to set the following on your CDN for web fonts (woff, eot, ttf, svg): Access-Control-Allow-Origin: * Or you can allow your domain only (but in that case it might be good to also allow it with https): Access-Control-Allow-Origin: http://www.domain.com Or you can exclude wp-content/plugins/fv-wordpress-flowplayer/css/flowplayer.css from CDN.
  1. Second cause might be that your webfonts are served with bad mimetype
AddType application/x-font-woff woff AddType application/x-font-ttf ttf AddType application/vnd.ms-fontobject eot AddType image/svg+xml svg

  1. I want to align my player (left/right/middle).

By default the player is positioned in the middle. To change alignment of the player to either left or right: Go to FV Player settings > scroll down to post interface options > tick "Align". Now you can insert your video. In the interface you can now choose you alignment from the drop down menu: default (middle), left, or right. You can check demo in here.

  1. How to check my video properties using the built-in checker and how to report video not playing

The video checker works automatically when you're logged in as admin. You'll see a text in upper left corner of any video on your site. All the necessary info can be found in this guide.

  1. My video doesn't play in Internet Explorer 9 and 10.

Most of the issues is caused by bad mime type on the server which serves your video files. Our plugin contains an automated checked for this - just click the "Check Videos" button on the plugin Settings screen. Here's how to fix the mime type: If your videos are hosted on a standard server: You need to put the following into your .htaccess: AddType video/mp4 .mp4 AddType video/webm .webm AddType video/ogg .ogv AddType application/x-mpegurl .m3u8 AddType video/x-m4v .m4v AddType video/mp2t .ts If you use Microsoft IIS, add following into web.config (one should be in your root website folder) into configuration/system.webServer/staticContent section: <remove fileExtension=".mp4" /> <mimeMap fileExtension=".mp4" mimeType="video/mp4" /> <remove fileExtension=".webm" /> <mimeMap fileExtension=".webm" mimeType="video/webm" /> <remove fileExtension=".ogg" /> <mimeMap fileExtension=".ogg" mimeType="video/ogg" /> <remove fileExtension=".m4v" /> <mimeMap fileExtension=".m4v" mimeType="video/x-m4v" /> <remove fileExtension=".ts" /> <mimeMap fileExtension=".ts" mimeType="video/mp2t" /> This can be also done in the Apache configuration. If you are on Microsoft IIS, you need to use the IIS manager. If you host videos on Amazon AWS: They might be served with bad mime type too - "application/octet-stream". This largely depends on the tool which you use to upload your videos. Using your Amazon AWS Management Console, you can go though your videos and find file content type under the "Metadata" tab in an object's "Properties" pane and fix it to "video/mp4" (without the quotes, of course different video formats need different mime type, this one is for MP4). There are also tools for this, like S3 Browser Freeware, good place for start is here: https://forums.aws.amazon.com/thread.jspa?messageID=224446 Good example can be seen in our support forum: https://foliovision.com/support/fv-wordpress-flowplayer/how-to/how-to-set-correct-mime-type-on-videos-hosted-by-amazon Also for Internet Explorer, it's not recommended to use MPEG-4 Visual or MPEG-4 Part 2 video stream codecs.

  1. How do I fix the bad metadata (moov) position?

This means that the video information (such as what codecs are used) is not stored at the beginning of the file. In our experience, video with bad meta data position might be slow to load in Flash engine (check some browser which doesn't play MP4 format in Flash - like Opera) and Firefox. Although Safary and iOS (iPAd, iPhone) may play it just fine. In general we recommend you to re-encode your video as per our instructions, but here are some quick tools: If you are using Mac, try Lillipot (just remember to rename the file back to .mp4 extension): http://www.qtbridge.com/lillipot/lillipot.html If you have Quick Time Pro, just open the video and in the Movie Properties -> Video Track -> Other Settings turn on the "Cache (hint)" - screenshot. If you are using Windows, try MP4 FastStart: http://www.datagoround.com/lab/ There are also server-side tools for fixing of this written in Python and there one for PHP, but it fails on videos bigger than the PHP memory limit.

  1. I'm getting error about 'HTTP range requests'.

Please check with your technical support if your web server supports HTTP range requests. Most of the modern web servers support this feature (Apache, Nginx, Lighttpd, Litespeed...). It's important for fast seeking in HTML5 video playback. Other possible cause is that you are using some membership plugin to protect downloading of your videos (Premise and others). While this might seem like a good solution, we don't recommend it as it increases the load of your server and it won't allow seeking in the videos. You can use Amazon S3 with privacy settings, just hit the link to read our illustrated guide.

  1. Are there any known compatibility issues?.

We heard about problems when using some fancy pro templates like OptimizePress (read below for fixing instructions) or Gantry framework. These templates often break the WordPress conventions (probably as they often try to add too many non-template functions, like video support built-in into the template). We can debug the issues for you, just head over to our website and order the pro support. Full list of conflicting plugins is available here: https://foliovision.com/player/compatibility

  1. I'm using OptimizePress version 1 template.

First click the "Check template" button on the pluging settings screen. It will likely report an issue like: It appears there are multiple Flowplayer scripts on your site, your videos might not be playing, please check. There might be some other plugin adding the script. Flowplayer script http://site.com/wp-content/themes/OptimizePress/js/flowplayer-3.2.4.min.js is old version and won't play. You need to get rid of this script. The problem with this template is that it includes that old Flowplayer library without using the proper WordPress function to add a new script (wp_enqueue_script). You need to go through the template and make sure the script is not loading. Typically it will be in any of the header.php files - including header-myheader.php, header-singleheader.php or similar files. There is also a workaround - on each page what is using one of the OptimizePress custom templates, check Launch Page & Sales Letter Options --> Video Options --> "Activate Video" and enter "<!-- FV Flowplayer -->" into Launch Page & Sales Letter Options --> Video Options --> "External Player Code" field. That way the template thinks the video is external and will not try to put in the Flowplayer library and the video will play.

  1. I'm using OptimizePress version 2 template.

FV Flowplayer will handle all the videos inserted by the Live Edit.

  1. Does this plugin support Shoutcast?.

Unfortunatelly HTML5 does not support live broadcasting. Please read about it here under "Flash. The good parts": http://flowplayer.org/docs/#flash

  1. I get an error message like this when activating the plugin: Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /wp-content/plugins/fv-wordpress-flowplayer/models/flowplayer.php on line 4.

You need to use at least PHP 5, your site is probably still running on old PHP 4.

  1. I get "Can't create temporary file for video analysis" in admin video checker.

This temporary file is required as our plugin contains a video checker for admin users - it checks the video format and other information and warns you about potential issues why your video might not play for everybody. The error message means the WordPress media uploads directory (by default wp-content/uploads) is not writable by PHP. We use this standard WordPress path as it should work for nearly all the websites. Most of people use the standard WordPress Media Library, so this should really work. You can try to set the permissions of that folder to allow writing for everybody and see if that helps. If you are not sure, ask your web host support about what PHP permission model you use.

  1. I installed the plugin, inserted the video, but it's not working - there is no control bar or only a gray box appears.

Go to plugin Settings screen and hit "Check template" button. It will check if both jQuery library and Flowplayer JavaScript is loading properly. Also, check "I'm using OptimizePress template" question above.

  1. Your player works just fine, but there are some weird display issues.

Please check if these issues also appear when using the default WordPress template. There seems to be some sort of conflict between the Flowplayer CSS and your theme CSS.

  1. Fullscreen is not working properly for me.

Are you using some old lightbox plugin like http://www.4mj.it/slimbox-wordpress-plugin/ ? Or are you putting the video into Iframe? Also, the video should not be placed in an HTML element with lowered z-index.

  1. How to make this plugin WPMU compatible?.

Just copy the plugin into wp-content/plugins and then activate it on each blog where you want to use it.

  1. Is there a way to force pre-buffering to load a chunk of the video before the splash screen appears?.

This option is not available. With autobuffer, it means every visitor on every visit to your page will be downloading the video. This means that you use a lot more bandwidth than on demand. I know that I actually watch the video on only about 1/3 of the pages with video that I visit. That saves you money (no bandwidth overages) and means that people who do want to watch the video and other visitors to your site get faster performance. If you want to autobuffer, you can turn that on in the options (we turn it off by default and recommend that it stays off).

  1. My videos are hosted with Amazon S3 service. How can I fill the details into shortcode?.

Just enter the URL of your video hosted on Amazon S3 as the video source.

  1. I would like to localize the play again button.

Currently there is no support for other languages.

  1. Where can I change the default directory for videos?.

You can change this manually in the the models/flowplayer.php in the flowplayer_head function. It you use videos in widgets you might need to edit the function flowplayer_content in controller/frontend.php as well. Please be carefull when editing source codes.

  1. How do I insert flowplayer object outside the post, for example to a sidebar?

You need to use following code to include the shortcode into a sidebar: echo apply_filters('the_content', '[flowplayer src=yourvideo.mp4 width=240 height=320]'); Fill the Flowplayer shortcode part according to your needs. The apply filter needs to be called because the flowplayer shortcodes are not parsen outside posts automatically. Also, please do not forget to add the echo at the beginning.

  1. How can I style the popup or ad?

Check out .wpfp_custom_popup and .wpfp_custom_ad in /fv-wordpress-flowplayer/css/flowplayer.css. You might want to move your changes to your template CSS - make sure you use ID of container element, so your declarations will work even when the flowplayer.css is loaded later in the head section of your webpage.

  1. Is there a way to remove the share (embed) button?

Yes, there's a global option in settings to disable sharing/embed. We plan to add an individual flag on a per video basis to allow sharing when sharing is turned off globally and vice versa.

  1. My videos are taking long time to load.

  1. Check your hosting for download speed.
  2. Try to use different settings when encoding the videos, try to turn on the cache when encoding with Quick Time

  1. How can I change the play icon?

You need to copy the CSS from the Flowplayer CSS (default theme) and put it into your theme CSS. Also add some element ID in front of it to make sure it overrides the default Flowplayer CSS: #content .is-paused.flowplayer .fp-ui{background-image:url({PATH TO YOUR IMAGE}.png)} #content .is-rtl.is-splash.flowplayer .fp-ui, #content .is-rtl.is-paused.flowplayer .fp-ui{background-image:url({PATH TO YOUR IMAGE-rtl}.png)} @media (-webkit-min-device-pixel-ratio: 2){ #content .is-splash.flowplayer .fp-ui, #content .is-paused.flowplayer .fp-ui{background-image:url({PATH TO YOUR IMAGE@2x}.png)} #content .is-rtl.is-splash.flowplayer .fp-ui, #content .is-rtl.is-paused.flowplayer .fp-ui{background-image:url({PATH TO YOUR IMAGE-rtl@2x}.png)} } The image needs to be 100x106px normal version nad 200x212px hi res version. You only have to include the RTL version if your site runs in such language.

  1. How can I change position of my custom logo?

Check out Settings -> FV Player -> Sitewide Flowplayer Defaults -> Logo.

  1. Volume control in player looks weird.

Make sure you are not using obsolete tags like <center> to wrap the video. Such tag is not supported in HTML5, you have to use CSS to center elements.

  1. How do I get rid of the 'Hit ? for help' tooltip on the player box?

You can put this into your template's functions.php file, if you know a bit of PHP. It will disable the tooltip. add_filter( 'fv_flowplayer_attributes', 'tweak_fv_flowplayer_attributes', 10, 2 ); function tweak_fv_flowplayer_attributes( $attrs ) { $attrs['data-tooltip'] = 'false'; return $attrs; }

  1. How can I customized the player control bar? I want to add a play/pause button.

Just put this code into the template's functions.php file. If you know a bit of PHP, it should not be a problem for you: add_filter( 'fv_flowplayer_attributes', 'tweak_controlbar_fv_flowplayer_attributes', 10, 2 ); function tweak_controlbar_fv_flowplayer_attributes( $attrs ) { $attrs['class'] .= ' play-button'; return $attrs; } It simply adds a class "play-button" to the player DIV element and then it knows to use the play button. The other options are: no-mute no-time no-volume

  1. Minify plugins are interfering with FV Player

Read our guide Using FV Player with Minify Plugins. There you'll find how to set up plugins such as Autoptimize or WP Rocket so they work properly with the FV Player.

  1. What if the FV Player doesn't work for me?

No worries.

  1. You can always downgrade to version the Flash version (delete the plugin then grab older version here and install from the ZIP file). If you downgrade to version 1.x you do lose a lot of mobile and iOS capability but you didn't have it in the first place.
  2. Contact us via support. We are actively investigating and fixing people's sites now during the initial release period. We will help you to get FV Player 7 working in your environment.

  1. I can't see overlay ads on my videos

The problem is probably in AdBlock. If it's active, the overlay ads will be blocked. Once AdBlock is deactivated for the particular domain where the video is played, the overlay ads will be displayed (page refresh needed).

  1. My YouTube video doesn't show properly in fullscreen

There is an possible issue with some themes: YouTube video opens in fullscreen, but after minimizing and opening fullscreen again, the video is shrinked in the left part of the screen (as in this example). You need to copy this CSS into your theme style sheet: iframe.fvyoutube-engine { width: 100% !important; } You can optionally edit your theme's JS to prevent the shrinking. FV Player Pro comes with a money back guarantee so you can even try the commercial no-branding version risk free. Or make it work first with the free versions. Thank you for being part of the HMTL 5 mobile video revolution!

更新日志:

7.5.41.7212 - 2023/10/04 7.5.40.7212 - 2023/09/29 7.5.39.7212 - 2023/08/23 7.5.37.7212 - 2023/08/02 7.5.36.7212 - 2023/05/03 7.5.35.7212 - 2023/04/26 7.5.32.7212 - 2023/03/31 7.5.31.7212 - 2023/01/30 7.5.30.7210 - 2022/12/23 7.5.29.7210 - 2022/09/23 7.5.27.7210 - 2022/08/22 7.5.26.7210 - 2022/07/06 7.5.22.727 - 2022/05/11 7.5.21.727 - 2022/04/07 7.5.20.727 - 2022/03/25 7.5.19.727 - 2022/03/24 7.5.18.727 - 2022/03/18 7.5.15.727 - 2022/01/27 7.5.14.727 - 2021/01/06 7.5.13.727 - 2021/12/20 7.5.12.727 - 2021/11/25 7.5.11.727 - 2021/10/14 7.5.10.727 - 2021/10/06 7.5.7.727 - 2021/09/27 7.5.5.727 - 2021/09/09 7.5.4.727 - 2021/08/18 7.5.3.727 - 2021/08/10 7.5.2.727 - 2021/07/28 7.5.1.727 - 2021/07/21 7.5.0.727 - 2021/06/21 7.4.47.727 - 2021/05/18 7.4.46.727 - 2021/04/09 7.4.45.727 - 2021/03/24 7.4.44.727 - 2021/03/23 7.4.42.727 - 2021/03/10 7.4.41.727 - 2021/03/08 7.4.40.727 - 2021/02/18 7.4.39.727 - 2021/01/21 7.4.38.727 - 2021/01/14 7.4.37.727 - 2020/11/20 7.4.36.727 - 2020/10/28 7.4.35.727 - 2020/10/22 7.4.34.727 - 2020/09/23 7.4.33.727 - 2020/08/24 7.4.32.727 - 2020/08/14 7.4.31.727 - 2020/08/12 7.4.24.727 - 2020/06/09 7.4.21.727 - 2020/05/07 7.4.17.727 - 2020/04/08 7.4.14.727 - 2020/01/28 7.4.9.727 - 2019/12/12 7.4.8.727 - 2019/10/23 7.4.7.727 - 2019/10/22 7.4.6.727 - 2019/09/17 7.4.2.727 - 2019/08/28 7.4.0.727 - 2019/07/30 7.3.19.727 - 2019/07/11 7.3.18.727 - 2019/07/10 7.3.16.727 - 2019/05/31 7.3.15.727 - 2019/05/16 7.3.14.727 - 2019/05/14 7.3.13.727 - 2019/04/30 7.3.12.727 - 2019/02/26 7.3.9.727 - 2019/02/05 7.3.7.727 - 2019/01/24 7.3.6.727 - 2019/01/08 7.3.4.727 - 2018/12/14 7.3.3.727 - 2018/12/05 7.3.1.727 - 2018/11/16 7.3.0.727 - 2018/11/15 7.2.8.727 - 2018/10/22 7.2.7.727 - 2018/10/18 7.2.6.727 - 2018/10/18 7.2.5.727 - 2018/10/16 7.2.4.727 - 2018/10/11 7.2.3.727 - 2018/10/03 7.2.2.727 - 2018/09/28 7.2.1.727 - 2018/09/20 7.2.0.727 - 2018/09/18 7.1.15.727 - 2018/09/11 7.1.14.727 - 2018/09/04 7.1.13.727.beta 7.1.12.726.beta 7.1.11.726.beta 7.1.10.726.beta 7.1.7.726 7.1.6.726 7.1.5.726 7.1.4.726 7.1.3.726 7.1.2.726 7.1.1.726 7.0.726 6.6.6 - 2018/07/10 New users get FV Player 7 Beta (7.1.6.726.beta) automatically! 6.6.5 - 2018/07/02 6.6.4 - 2018/06/27 6.6.3 - 2018/06/19 6.6.2 - 2018/06/04 6.6.1 - 2018/05/15 6.6 - 2018/05/10 6.5.2 - 2018/04/11 6.5.1 - 2018/04/04 6.5 - 2018/03/14 6.4.2 - 2018/02/23 6.4.1 - 2018/02/08 6.4 - 2018/01/22 6.3.11 - 2017/11/20 6.3.10 - 2017/11/13 6.3.9 - 2017/11/08 6.3.8 - 2017/11/06 6.3.7 - 2017/10/17 6.3.6 - 2017/10/12 6.3.5 - 2017/10/11 6.3.4 - 2017/10/09 6.3.3 - 2017/09/26 6.3.2 - 2017/09/18 6.3.1 - 2017/09/11 6.3 - 2017/09/07 6.2.10 - 2017/09/04 6.2.9 - 2017/08/28 6.2.8 - 2017/08/25 6.2.7 - 2017/08/25 6.2.6 - 2017/07/26 6.2.5 - 2017/07/21 6.2.4 - 2017/07/20 6.2.3 - 2017/07/14 6.2.2 - 2017/07/13 6.2 - 2017/07/12 6.1.5 - 2017/06/29 6.1.4 - 2017/06/22 6.1.3 - 2017/06/12 6.1.2 - 2017/06/09 6.1.1 - 2017/06/05 6.1 - 2017/05/31 6.0.5.27 - 2017/05/25 6.0.5.26 - 2017/05/25 6.0.5.25 - 2017/05/23 6.0.5.24 - 2017/05/09 6.0.5.23 - 2017/04/04 6.0.5.22 - 2017/03/29 6.0.5.21 - 2017/03/15 6.0.5.20 - 2017/02/22 6.0.5.19 - 2017/02/09 6.0.5.18 - 2017/02/07 6.0.5.17 - 2017/01/30 6.0.5.16 - 2017/01/13 6.0.5.15 - 2017/01/05 6.0.5.14 - 2016/12/23 6.0.5.13 - 2016/12/13 6.0.5.12 - 2016/12/08 6.0.5.11 - 2016/12/02 6.0.5.10 - 2016/12/01 6.0.5.9 - 2016/11/30 6.0.5.8 - 2016/10/19 6.0.5.7 - 2016/10/17 6.0.5.6 - 2016/10/06 6.0.5.5 - 2016/07/28 6.0.5.4 - 2016/07/26 6.0.5.3 - 2016/06/23 6.0.5.2 - 2016/06/21 6.0.5.1 - 2016/06/20 6.0.5 - 2016/06/17 6.0.4.25 - 2016/06/08 6.0.4.24 - 2016/06/03 6.0.4.22 - 2016/06/01 6.0.4.21 - 2016/05/23 6.0.4.20 - 2016/05/16 6.0.4.19 - 2016/05/13 6.0.4.18 - 2016/04/29 6.0.4.17 - 2016/04/26 6.0.4.16 - 2016/04/26 6.0.4.15 - 2016/04/22 6.0.4.14 - 2016/04/05 6.0.4.13 - 2016/03/23 6.0.4.12 - 2016/02/26 6.0.4.11 - 2016/02/17 6.0.4.10 - 2016/02/10 6.0.4.9 - 2016/02/08 6.0.4.8 - 2016/02/05 6.0.4.7 - 2016/01/27 6.0.4.6 - 2016/01/22 6.0.4.5 - 2016/01/12 6.0.4.4 - 2016/01/05 6.0.4.3 - 2015/12/23 6.0.4.2 - 2015/12/15 6.0.4.1 - 2015/12/09 6.0.4 - 2015/12/07 6.0.3.10 - 2015/11/16 6.0.3.9 - 2015/11/04 6.0.3.8 - 2015/10/15 6.0.3.7 - 2015/10/08 6.0.3.6 - 2015/09/10 6.0.3.5 - 2015/09/08 6.0.3.4 - 2015/08/28 6.0.3.3 - 2015/08/20 6.0.3.2 - 2015/08/18 6.0.3.1 - 2015/08/11 6.0.3 - 2015/08/11 6.0.2.2 - 2015/07/30 6.0.2.1 - 2015/07/15 6.0.2 - 2015/07/09 2.4.2 - 2015/07/22 2.4.1 - 2015/07/20 2.4 - 2015/07/15 2.3.17 - 2015/07/07 2.3.16 - 2015/05/28 2.3.15 - 2015/04/24 2.3.14 - 2015/04/20 2.3.13 - 2015/04/17 2.3.12 - 2015/02/13 2.3.11 - 2015/01/30 2.3.10 - 2015/01/21 2.3.9 - 2015/01/07 2.3.8 - 2014/12/09 2.3.7 - 2014/12/01 2.3.6 - 2014/11/20 2.3.5 - 2014/10/30 2.3.4 - 2014/10/16 2.3.3 - 2014/10/13 2.3.2 - 2014/10/06 2.3.1 - 2014/10/06 2.3 - 2014/09/23 2.2.22 - 2014/09/05 2.2.21 - 2014/08/07 2.2.20 - 2014/08/05 2.2.19 - 2014/07/21 2.2.18 - 2014/07/16 2.2.17 - 2014/07/11 2.2.16 - 2014/07/07 2.2.15 - 2014/07/03 2.2.14 - 2014/06/24 2.2.13 - 2014/06/23 2.2.12 - 2014/06/19 2.2.11 - 2014/06/17 2.2.10 - 2014/06/13 2.2.9 - 2014/06/05 2.2.8 - 2014/05/30 2.2.7 - 2014/05/15 2.2.6 - 2014/04/17 2.2.5 - 2014/04/16 2.2.4 - 2014/04/11 2.2.3 - 2014/03/28 2.2.2 - 2014/03/13 2.2.1 - 2014/02/25 2.2 - 2014/02/24 2.1.52 - 2014/01/10 2.1.51 - 2014/01/09 2.1.50 - 2013/12/06 2.1.49 - 2013/11/21 2.1.48 - 2013/11/14 2.1.47 - 2013/11/05 2.1.46 - 2013/11/04 2.1.45 - 2013/10/31 2.1.44 - 2013/10/22 2.1.43 - 2013/10/22 2.1.42 - 2013/10/18 2.1.41 - 2013/10/11 2.1.40 - 2013/10/09 2.1.39 - 2013/09/30 2.1.38 - 2013/09/26 2.1.37 - 2013/09/25 2.1.36 - 2013/09/23 2.1.35 - 2013/09/17 2.1.34 - 2013/08/23 2.1.33 - 2013/08/22 2.1.32 - 2013/08/21 2.1.31 - 2013/08/09 2.1.30 - 2013/08/08 2.1.29 - 2013/08/02 2.1.28 - 2013/08/01 2.1.27 - 2013/07/31 2.1.26 - 2013/07/26 2.1.25 - 2013/07/18 2.1.24 - 2013/07/17 2.1.23 - 2013/07/11 2.1.22 - 2013/07/10 2.1.20 - 2013/07/03 2.1.19 - 2013/07/02 2.1.18 - 2013/06/29 2.1.17 - 2013/06/28 2.1.16 - 2013/06/25 2.1.15 - 2013/06/24 2.1.14 - 2013/06/12 2.1.13 - 2013/06/05 2.1.12 - 2013/05/31 2.1.11 - 2013/05/28 2.1.10 - 2013/05/28 2.1.9 - 2013/05/27 2.1.8 - 2013/05/23 2.1.7 - 2013/05/22 2.1.6 - 2013/05/21 2.1.5 - 2013/05/17 2.1.4 - 2013/05/16 2.1.3 - 2013/05/15 2.1.2 - 2013/05/10 2.1.1 - 2013/05/08 2.1 - 2013/05/02 2.0 - 2013/05/02 1.2.17 1.2.16 1.2.14 1.2.14 1.2.13 1.2.12 1.2.11 1.2.10 1.2.9 1.2.8 1.2.7 1.2.6 1.2.5 1.2.4 1.2.3 1.2.2 1.2.1 1.2.0 1.1.0 1.0.6 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 1.0 0.9.18 0.9.16 0.9.15 0.9.14 0.9.13 0.9.12