You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: how_to_release.txt
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -77,14 +77,25 @@ DO ANNOUNCEMENT
77
77
1. Copy previous announcement from forum and paste into Crimson Editor
78
78
2. Change version number (eg. 4.53 to 4.54) and executable file name: (eg. 453 to 454)
79
79
3. Near the end change the "git diff" and "git log" lines to update the *previous* version (eg. 4.52 to 4.53)
80
-
4. Run the updated "git diff" and "git log" commands, pasting the results into the announcement
80
+
4. Run the updated "git diff" and "git log" commands, pasting the results into the announcement (see below)
81
81
5. Update the size of the installer (eg. from 2.79 Mb to 2.80 Mb)
82
82
6. Update the MD5sum hex figure in the announcement
83
83
7. Amend the "improvements" lines in the announcement to reflect the major changes
84
84
8. Paste resulting message into a new forum message announcing the new release
85
85
9. Find the post number of that new message and amend forum database table bbsection, record 1 (MUSHclient section) to show the latest release and forum post to read about it.
86
86
87
87
88
+
Run this code in the Immediate window of MUSHclient to convert the "git log" lines to have hyperlinks:
89
+
----------------------
90
+
for x, desc in string.gmatch (GetClipboard (), "(%x+) ([^\n]+)") do
0 commit comments