-
Update jquery-tmpl and any other appscd apps/jquery-tmpl
git fetch upstream
git merge upstream/master
git push origin master
- Update the php/override functions to have the latest wordpress code...
- Run build script:
make
- compiles & minifies css/js
- concatenates into one file
- builds the .pot translation file
- Update post-thumbnail-editor.php
- Change the version information in 2 places
- Modify README.txt
- Update the requires/tested version information
- Update the Upgrade Notice
- Update the Changelog
- Update screenshots (max-width: 532px)
- Test README
- Fix any translation changes
- gvim -d new-pot-file old-po-file
- Rebuild .mo from .po files (msgfmt po-file -o mo-file)
find * -iname '*.po' |
while read file; do
echo "$file --> ${file%.po}"; msgfmt$file -o $ {file%.po}.mo;
done
- Test on Firefox, Chrome, Safari, IE7/8/9 & Linux/Windows/Mac
- Do the rows change color on selection?
- Test changing from debug to normal
- How does post-thumbnails work with spaces in the name?
- Tag the git release
git commit -a -m "Commit msg"
git tag [-a -m 'annotated tag'] version
git push --tags
- Push to wordpress
-
gitk
Use diff utility to see changes from last version - Manually update the svn tree
- Tag release:
svn cp trunk tag/-version-
- Check in all changes:
svn ci -m "message"
-