Skip to content

Instantly share code, notes, and snippets.

@neillmcshea
neillmcshea / ReleaseProcess.txt
Last active May 3, 2016 11:37
Central Ready Release Process
h2. Release Checklist
# *QA* will hit smoketest for the tickets (https://central.tri.be/projects/premium-plugins/issues?query_id=924) and confirm that they are working-
# If either of the smoketest tickets fail, *QA** updates the ticket and confirms that the *lead dev* saw those updates/has what they need to proceed-
# *PM* will make sure changelog entries (with appropriate credits to users who reported issues on the forums, following our existing format) are in place-
# *PM* will check that the following changes have been made to the readme.txt file:-
** Version numbers are up to date-
** Latest required version of WP/TEC is up to date-
** Latest WP version tested is current-
** The upgrade notice has the appropriate version number. *Important! this should only be added when it genuinely tells the user something useful* as the same text may then appear in a prominent red alert box on the user's plugin update screen-
@neillmcshea
neillmcshea / gist:6254480
Created August 16, 2013 23:49
Hook for tribe_events_single_event_meta_templates - to be used in functions.php in conjunction with TEC plugin.
$meta_group_templates = apply_filters('tribe_events_single_event_meta_group_templates', array(
'before'=>'<div class="%s">',
'after'=>'</div>',
'label_before'=>'<h3 class="%s">',
'label_after'=>'</h3>',
'meta_before'=>'<dl>',
'meta_after'=>'</dl>'
));