ToDo list:
https://gist.github.com/marc1706/cad165 ... 01b21c43ef
Releasing 3.2.2
Forum rules
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.
If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.
If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
Re: Releasing 3.2.2
me and nicofuma discussed this in Budapest, but what about changing
so that we diff the style changes by focus ie...
CSS:
HTML:
JS:
IMGs:
It might make it somewhat easier to understand all the changes and where they happened. Not all of these would end up being needed of course if we made no js changes for example.
git diff release-3.2.1 release-3.2.2-RC1 phpBB/styles/prosilver/ > prosilver_changes_3.2.1_to_3.2.2-RC1.diff
so that we diff the style changes by focus ie...
CSS:
Code: Select all
git diff release-3.2.1..release-3.2.2-RC1 -w -- phpBB/styles/prosilver/theme/*.css > prosilver_changes_3.2.1_to_3.2.2-RC1-css.diff
Code: Select all
git diff release-3.2.1..release-3.2.2-RC1 -w -- phpBB/styles/prosilver/template/*.html > prosilver_changes_3.2.1_to_3.2.2-RC1-html.diff
Code: Select all
git diff release-3.2.1..release-3.2.2.RC1 -w -- phpBB/styles/prosilver/template/*.js > prosilver_changes_3.2.1_to_3.2.2-RC1-js.diff
Code: Select all
git diff release-3.2.1..release-3.2.2.RC1 -w -- phpBB/styles/prosilver/theme/images/ > prosilver_changes_3.2.1_to_3.2.2-RC1-imgs.diff
Re: Releasing 3.2.2
Sure, we can extend that. Also, I'm thinking of creating a short script that will automatically create this today. Right now I always have to go through the markdown and update it by hand which is quite annoying tbh.
Re: Releasing 3.2.2
I would duplicate the above to include the previous minor version as well ie 3.1.11 -> 3.2.1 or w/e at the time should be two for each essentially.