Merge pull request #601 from UnknownShadow200/develop

Update bugs/issues urls to point to OpenTK github issues instead of defunct OpenTK.com
This commit is contained in:
Fraser Waters 2017-07-26 08:58:52 +01:00 committed by GitHub
commit d9f40330e6
7 changed files with 9 additions and 9 deletions

View file

@ -233,7 +233,7 @@ namespace OpenTK
case null:
case "":
throw new PlatformNotSupportedException(
"Unknown platform. Please file a bug report at http://www.opentk.com");
"Unknown platform. Please file a bug report at https://github.com/opentk/opentk/issues");
case "Linux":
linux = unix = true;

View file

@ -678,17 +678,17 @@ namespace OpenTK.Platform.MacOS
if (axis_elements.Count >= JoystickState.MaxAxes)
{
Debug.Print("[Mac] JoystickAxis limit reached ({0} > {1}), please report a bug at http://www.opentk.com",
Debug.Print("[Mac] JoystickAxis limit reached ({0} > {1}), please report a bug at https://github.com/opentk/opentk/issues",
axis_elements.Count, JoystickState.MaxAxes);
}
if (button_elements.Count > JoystickState.MaxButtons)
{
Debug.Print("[Mac] JoystickButton limit reached ({0} > {1}), please report a bug at http://www.opentk.com",
Debug.Print("[Mac] JoystickButton limit reached ({0} > {1}), please report a bug at https://github.com/opentk/opentk/issues",
button_elements.Count, JoystickState.MaxButtons);
}
if (hat_elements.Count > JoystickState.MaxHats)
{
Debug.Print("[Mac] JoystickHat limit reached ({0} > {1}), please report a bug at http://www.opentk.com",
Debug.Print("[Mac] JoystickHat limit reached ({0} > {1}), please report a bug at https://github.com/opentk/opentk/issues",
hat_elements.Count, JoystickState.MaxHats);
}

View file

@ -182,7 +182,7 @@ namespace OpenTK.Platform.Windows
if (mode.BitsPerPel == 0)
{
Debug.Print(
"[Warning] DisplayDevice '{0}' reported a mode with 0 bpp. Please create a bug report at http://www.opentk.com",
"[Warning] DisplayDevice '{0}' reported a mode with 0 bpp. Please create a bug report at https://github.com/opentk/opentk/issues",
device.DeviceName.ToString());
mode.BitsPerPel = 32;
}

View file

@ -446,7 +446,7 @@ namespace OpenTK.Platform.Windows
}
catch (AccessViolationException e)
{
Debug.WriteLine("An access violation occured while destroying the OpenGL context. Please report at http://www.opentk.com.");
Debug.WriteLine("An access violation occured while destroying the OpenGL context. Please report at https://github.com/opentk/opentk/issues");
Debug.Indent();
Debug.Print("Marshal.GetLastWin32Error(): {0}", Marshal.GetLastWin32Error().ToString());
Debug.WriteLine(e.ToString());

View file

@ -393,7 +393,7 @@ namespace OpenTK.Platform.Windows
{
if (stick.AxisCaps[i].IsRange)
{
Debug.Print("[{0}] Axis range collections not implemented. Please report your controller type at http://www.opentk.com",
Debug.Print("[{0}] Axis range collections not implemented. Please report your controller type at https://github.com/opentk/opentk/issues",
GetType().Name);
continue;
}

View file

@ -1591,7 +1591,7 @@ XF86VidModeGetGammaRampSize(
{
if (_display == IntPtr.Zero)
{
throw new InvalidOperationException("Internal error (XLockDisplay with IntPtr.Zero). Please report this at http://www.opentk.com/node/add/project-issue/opentk");
throw new InvalidOperationException("Internal error (XLockDisplay with IntPtr.Zero). Please report this at https://github.com/opentk/opentk/issues");
}
return _display;
}

View file

@ -121,7 +121,7 @@ namespace OpenTK.Platform.X11
}
}
throw new InvalidOperationException("No primary display found. Please file a bug at http://www.opentk.com");
throw new InvalidOperationException("No primary display found. Please file a bug at https://github.com/opentk/opentk/issues");
}
private bool QueryXinerama(List<DisplayDevice> devices)