Skip to content

Commit

Permalink
Update bug tracker URLs
Browse files Browse the repository at this point in the history
Trac's bug tracker has been dropped in favor of GitHub's issue tracker.

Refs #374
Fixes #427
  • Loading branch information
psypherium authored and KJeff01 committed Jul 5, 2019
1 parent 66322c9 commit 06503bb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -44,8 +44,8 @@ Latest development builds
Reporting bugs
--------------

This game still has bugs and if you run into one, please use the bugtracker
(http://developer.wz2100.net/) to report this bug. In order to faster fix
This game still has bugs and if you run into one, please use the GitHub bugtracker
(https://github.com/Warzone2100/warzone2100/issues) to report this bug. In order to faster fix
those bugs we require that you follow these rules:

1. If the game crashes you may save a memory dump. Please do so and upload it
Expand Down
9 changes: 0 additions & 9 deletions doc/Release.md
Expand Up @@ -150,8 +150,6 @@ Additionally:

Then you should revert the changes you made to `configure.ac`, so that git master again becomes git master.

Go to [trac](http://developer.wz2100.net/admin/ticket/versions) to add the new version to the bug tracker.

Time to publish the release!
----------------------------
* Add new version to the Bug Tracker, just in case people find bugs and want to report them.
Expand All @@ -166,13 +164,6 @@ Time to publish the release!
And, I am sure that people will spread the word about this new release at the following sites & others.
* [ModDb](http://www.moddb.com/games/275/warzone-2100), [Softonic](http://warzone-2100.en.softonic.com/), [Gamershell](http://www.gamershell.com/news), [Gamedev](http://www.gamedev.net/community/forums/forum.asp?forum_id=6), [Reddit](www.reddit.com/r/warzone2100)

### Update version numbers in Trac

Add the new release, mark previous release as "(unsupported)" and update the new release as latest version in resolution dropdown:

http://developer.wz2100.net/admin/ticket/versions
http://developer.wz2100.net/admin/ticket/resolution

### Updating the version numbers on the server

sudo su - lobby
Expand Down
2 changes: 1 addition & 1 deletion icons/warzone2100.appdata.xml
Expand Up @@ -17,7 +17,7 @@
</p>
</description>
<url type="homepage">https://wz2100.net/</url>
<url type="bugtracker">http://developer.wz2100.net/newticket</url>
<url type="bugtracker">https://github.com/Warzone2100/warzone2100/issues/new</url>
<url type="faq">http://developer.wz2100.net/wiki/NewFAQ</url>
<url type="translate">http://developer.wz2100.net/wiki/Translation</url>
<url type="help">http://betaguide.wz2100.net/</url>
Expand Down
6 changes: 3 additions & 3 deletions lib/framework/debug.cpp
Expand Up @@ -528,7 +528,7 @@ void _debug(int line, code_part part, const char *function, const char *str, ...
#if defined(WZ_OS_WIN)
char wbuf[512];
ssprintf(wbuf, "%s\n\nPlease check the file (%s) in your configuration directory for more details. \
\nDo not forget to upload the %s file, WZdebuginfo.txt and the warzone2100.rpt files in your bug reports at http://developer.wz2100.net/newticket!", useInputBuffer1 ? inputBuffer[1] : inputBuffer[0], WZ_DBGFile, WZ_DBGFile);
\nDo not forget to upload the %s file, WZdebuginfo.txt and the warzone2100.rpt files in your bug reports at https://github.com/Warzone2100/warzone2100/issues/new!", useInputBuffer1 ? inputBuffer[1] : inputBuffer[0], WZ_DBGFile, WZ_DBGFile);
MessageBoxA(NULL, wbuf, "Warzone has terminated unexpectedly", MB_OK | MB_ICONERROR);
#elif defined(WZ_OS_MAC)
int clickedIndex = \
Expand All @@ -537,10 +537,10 @@ void _debug(int line, code_part part, const char *function, const char *str, ...
2, "Show Log Files & Open Bug Reporter", "Ignore", NULL);
if (clickedIndex == 0)
{
if (!cocoaOpenURL("http://developer.wz2100.net/newticket"))
if (!cocoaOpenURL("https://github.com/Warzone2100/warzone2100/issues/new"))
{
cocoaShowAlert("Failed to open URL",
"Could not open URL: http://developer.wz2100.net/newticket\nPlease open this URL manually in your web browser.",
"Could not open URL: https://github.com/Warzone2100/warzone2100/issues/new\nPlease open this URL manually in your web browser.",
2, "Continue", NULL);
}
if (strnlen(WZ_DBGFile, sizeof(WZ_DBGFile)/sizeof(WZ_DBGFile[0])) <= 0)
Expand Down

0 comments on commit 06503bb

Please sign in to comment.