Good to hear. I made my own patch in the mean time – probably not the best way to do it but it works.
Updated googleCalendarLink() function starring line 397:
[code]// Hack to load correct reocurrence dates
$postStartDate = tribe_get_start_date( $post->ID, true, ‘F j, Y’ );
$postEndDate = tribe_get_end_date( $post->ID, true, ‘F j, Y’ );
// $start_date = strtotime( get_post_meta( $postId, ‘_EventStartDate’, true ) );
$start_date = strtotime( $postStartDate );
//$end_date = strtotime( get_post_meta( $postId, ‘_EventEndDate’, true ) . ( get_post_meta( $postId, ‘_EventAllDay’, true ) ? ‘ + 1 day’ : ”) );
$end_date = strtotime( $postEndDate . ( get_post_meta( $postId, ‘_EventAllDay’, true ) ? ‘ + 1 day’ : ”) );
[/code]