diff --git a/doc/release-process.md b/doc/release-process.md index 20055c3..74ffbdc 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -23,3 +23,21 @@ The last command uses the "theirs" merge strategy option to the "recursive" merg If you have a messed up merge or you don't want to deal with conflicts right now, you can do `git merge --abort` to cancel a merge. +## Git Issues + +Look for Git issues that should be fixed in the next release: https://git.hush.is/hush/SilentDragon/issues Especially low-risk and simple things and like documentation changes, improvements to error messages. Take note that changing strings in the source code, such as adding a new string or changing an existing one, will affect translations. + +## Translations + +... + +``` +# update generated translation data +./build.sh linguist +git commit -am "update translations" +git push +``` + +## Release process + +...