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:
commit
d9f40330e6
7 changed files with 9 additions and 9 deletions
|
@ -233,7 +233,7 @@ namespace OpenTK
|
||||||
case null:
|
case null:
|
||||||
case "":
|
case "":
|
||||||
throw new PlatformNotSupportedException(
|
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":
|
case "Linux":
|
||||||
linux = unix = true;
|
linux = unix = true;
|
||||||
|
|
|
@ -678,17 +678,17 @@ namespace OpenTK.Platform.MacOS
|
||||||
|
|
||||||
if (axis_elements.Count >= JoystickState.MaxAxes)
|
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);
|
axis_elements.Count, JoystickState.MaxAxes);
|
||||||
}
|
}
|
||||||
if (button_elements.Count > JoystickState.MaxButtons)
|
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);
|
button_elements.Count, JoystickState.MaxButtons);
|
||||||
}
|
}
|
||||||
if (hat_elements.Count > JoystickState.MaxHats)
|
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);
|
hat_elements.Count, JoystickState.MaxHats);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -182,7 +182,7 @@ namespace OpenTK.Platform.Windows
|
||||||
if (mode.BitsPerPel == 0)
|
if (mode.BitsPerPel == 0)
|
||||||
{
|
{
|
||||||
Debug.Print(
|
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());
|
device.DeviceName.ToString());
|
||||||
mode.BitsPerPel = 32;
|
mode.BitsPerPel = 32;
|
||||||
}
|
}
|
||||||
|
|
|
@ -446,7 +446,7 @@ namespace OpenTK.Platform.Windows
|
||||||
}
|
}
|
||||||
catch (AccessViolationException e)
|
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.Indent();
|
||||||
Debug.Print("Marshal.GetLastWin32Error(): {0}", Marshal.GetLastWin32Error().ToString());
|
Debug.Print("Marshal.GetLastWin32Error(): {0}", Marshal.GetLastWin32Error().ToString());
|
||||||
Debug.WriteLine(e.ToString());
|
Debug.WriteLine(e.ToString());
|
||||||
|
|
|
@ -393,7 +393,7 @@ namespace OpenTK.Platform.Windows
|
||||||
{
|
{
|
||||||
if (stick.AxisCaps[i].IsRange)
|
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);
|
GetType().Name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1591,7 +1591,7 @@ XF86VidModeGetGammaRampSize(
|
||||||
{
|
{
|
||||||
if (_display == IntPtr.Zero)
|
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;
|
return _display;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)
|
private bool QueryXinerama(List<DisplayDevice> devices)
|
||||||
|
|
Loading…
Reference in a new issue