Răsfoiți Sursa

Update email address

Camilla Berglund 9 ani în urmă
părinte
comite
757eea2779
65 a modificat fișierele cu 65 adăugiri și 65 ștergeri
  1. 1 1
      COPYING.txt
  2. 1 1
      deps/tinycthread.c
  3. 1 1
      examples/particles.c
  4. 1 1
      examples/simple.c
  5. 1 1
      include/GLFW/glfw3.h
  6. 1 1
      include/GLFW/glfw3native.h
  7. 1 1
      src/cocoa_init.m
  8. 1 1
      src/cocoa_joystick.h
  9. 1 1
      src/cocoa_joystick.m
  10. 1 1
      src/cocoa_monitor.m
  11. 1 1
      src/cocoa_platform.h
  12. 1 1
      src/cocoa_time.c
  13. 1 1
      src/cocoa_window.m
  14. 1 1
      src/context.c
  15. 1 1
      src/egl_context.c
  16. 1 1
      src/egl_context.h
  17. 1 1
      src/glfw_config.h.in
  18. 1 1
      src/glx_context.c
  19. 1 1
      src/glx_context.h
  20. 1 1
      src/init.c
  21. 1 1
      src/input.c
  22. 1 1
      src/internal.h
  23. 1 1
      src/linux_joystick.c
  24. 1 1
      src/monitor.c
  25. 1 1
      src/nsgl_context.h
  26. 1 1
      src/nsgl_context.m
  27. 1 1
      src/posix_time.c
  28. 1 1
      src/posix_time.h
  29. 1 1
      src/posix_tls.c
  30. 1 1
      src/posix_tls.h
  31. 1 1
      src/vulkan.c
  32. 1 1
      src/wgl_context.c
  33. 1 1
      src/wgl_context.h
  34. 1 1
      src/win32_init.c
  35. 1 1
      src/win32_joystick.c
  36. 1 1
      src/win32_joystick.h
  37. 1 1
      src/win32_monitor.c
  38. 1 1
      src/win32_platform.h
  39. 1 1
      src/win32_time.c
  40. 1 1
      src/win32_tls.c
  41. 1 1
      src/win32_window.c
  42. 1 1
      src/window.c
  43. 1 1
      src/x11_init.c
  44. 1 1
      src/x11_monitor.c
  45. 1 1
      src/x11_platform.h
  46. 1 1
      src/x11_window.c
  47. 1 1
      src/xkb_unicode.c
  48. 1 1
      tests/clipboard.c
  49. 1 1
      tests/cursor.c
  50. 1 1
      tests/empty.c
  51. 1 1
      tests/events.c
  52. 1 1
      tests/gamma.c
  53. 1 1
      tests/glfwinfo.c
  54. 1 1
      tests/icon.c
  55. 1 1
      tests/iconify.c
  56. 1 1
      tests/joysticks.c
  57. 1 1
      tests/monitors.c
  58. 1 1
      tests/msaa.c
  59. 1 1
      tests/reopen.c
  60. 1 1
      tests/sharing.c
  61. 1 1
      tests/tearing.c
  62. 1 1
      tests/threads.c
  63. 1 1
      tests/timeout.c
  64. 1 1
      tests/title.c
  65. 1 1
      tests/windows.c

+ 1 - 1
COPYING.txt

@@ -1,5 +1,5 @@
 Copyright (c) 2002-2006 Marcus Geelnard
 Copyright (c) 2002-2006 Marcus Geelnard
-Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 
 
 This software is provided 'as-is', without any express or implied
 This software is provided 'as-is', without any express or implied
 warranty. In no event will the authors be held liable for any damages
 warranty. In no event will the authors be held liable for any damages

+ 1 - 1
deps/tinycthread.c

@@ -21,7 +21,7 @@ freely, subject to the following restrictions:
     distribution.
     distribution.
 */
 */
 
 
-/* 2013-01-06 Camilla Berglund <elmindreda@elmindreda.org>
+/* 2013-01-06 Camilla Berglund <elmindreda@glfw.org>
  *
  *
  * Added casts from time_t to DWORD to avoid warnings on VC++.
  * Added casts from time_t to DWORD to avoid warnings on VC++.
  * Fixed time retrieval on POSIX systems.
  * Fixed time retrieval on POSIX systems.

+ 1 - 1
examples/particles.c

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // A simple particle engine with threaded physics
 // A simple particle engine with threaded physics
 // Copyright (c) Marcus Geelnard
 // Copyright (c) Marcus Geelnard
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
examples/simple.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Simple GLFW example
 // Simple GLFW example
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
include/GLFW/glfw3.h

@@ -3,7 +3,7 @@
  * A library for OpenGL, window and input
  * A library for OpenGL, window and input
  *------------------------------------------------------------------------
  *------------------------------------------------------------------------
  * Copyright (c) 2002-2006 Marcus Geelnard
  * Copyright (c) 2002-2006 Marcus Geelnard
- * Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+ * Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
  *
  *
  * This software is provided 'as-is', without any express or implied
  * This software is provided 'as-is', without any express or implied
  * warranty. In no event will the authors be held liable for any damages
  * warranty. In no event will the authors be held liable for any damages

+ 1 - 1
include/GLFW/glfw3native.h

@@ -3,7 +3,7 @@
  * A library for OpenGL, window and input
  * A library for OpenGL, window and input
  *------------------------------------------------------------------------
  *------------------------------------------------------------------------
  * Copyright (c) 2002-2006 Marcus Geelnard
  * Copyright (c) 2002-2006 Marcus Geelnard
- * Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+ * Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
  *
  *
  * This software is provided 'as-is', without any express or implied
  * This software is provided 'as-is', without any express or implied
  * warranty. In no event will the authors be held liable for any damages
  * warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_init.m

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 OS X - www.glfw.org
 // GLFW 3.2 OS X - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_joystick.h

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 Cocoa - www.glfw.org
 // GLFW 3.2 Cocoa - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_joystick.m

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 Cocoa - www.glfw.org
 // GLFW 3.2 Cocoa - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@glfw.org>
 // Copyright (c) 2012 Torsten Walluhn <[email protected]>
 // Copyright (c) 2012 Torsten Walluhn <[email protected]>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied

+ 1 - 1
src/cocoa_monitor.m

@@ -2,7 +2,7 @@
 // GLFW 3.2 OS X - www.glfw.org
 // GLFW 3.2 OS X - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_platform.h

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 OS X - www.glfw.org
 // GLFW 3.2 OS X - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_time.c

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 OS X - www.glfw.org
 // GLFW 3.2 OS X - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_window.m

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 OS X - www.glfw.org
 // GLFW 3.2 OS X - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/context.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 - www.glfw.org
 // GLFW 3.2 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/egl_context.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 EGL - www.glfw.org
 // GLFW 3.2 EGL - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/egl_context.h

@@ -2,7 +2,7 @@
 // GLFW 3.2 EGL - www.glfw.org
 // GLFW 3.2 EGL - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/glfw_config.h.in

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 - www.glfw.org
 // GLFW 3.2 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2010-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2010-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/glx_context.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 GLX - www.glfw.org
 // GLFW 3.2 GLX - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/glx_context.h

@@ -2,7 +2,7 @@
 // GLFW 3.2 GLX - www.glfw.org
 // GLFW 3.2 GLX - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/init.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 - www.glfw.org
 // GLFW 3.2 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/input.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 - www.glfw.org
 // GLFW 3.2 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/internal.h

@@ -2,7 +2,7 @@
 // GLFW 3.2 - www.glfw.org
 // GLFW 3.2 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/linux_joystick.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 Linux - www.glfw.org
 // GLFW 3.2 Linux - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/monitor.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 - www.glfw.org
 // GLFW 3.2 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/nsgl_context.h

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 OS X - www.glfw.org
 // GLFW 3.2 OS X - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/nsgl_context.m

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 OS X - www.glfw.org
 // GLFW 3.2 OS X - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2009-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/posix_time.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 POSIX - www.glfw.org
 // GLFW 3.2 POSIX - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/posix_time.h

@@ -2,7 +2,7 @@
 // GLFW 3.2 POSIX - www.glfw.org
 // GLFW 3.2 POSIX - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/posix_tls.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 POSIX - www.glfw.org
 // GLFW 3.2 POSIX - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/posix_tls.h

@@ -2,7 +2,7 @@
 // GLFW 3.2 POSIX - www.glfw.org
 // GLFW 3.2 POSIX - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/vulkan.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 - www.glfw.org
 // GLFW 3.2 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/wgl_context.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 WGL - www.glfw.org
 // GLFW 3.2 WGL - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/wgl_context.h

@@ -2,7 +2,7 @@
 // GLFW 3.2 WGL - www.glfw.org
 // GLFW 3.2 WGL - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_init.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 Win32 - www.glfw.org
 // GLFW 3.2 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_joystick.c

@@ -2,7 +2,7 @@
 // GLFW 3.1 Win32 - www.glfw.org
 // GLFW 3.1 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_joystick.h

@@ -1,7 +1,7 @@
 //========================================================================
 //========================================================================
 // GLFW 3.2 Win32 - www.glfw.org
 // GLFW 3.2 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_monitor.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 Win32 - www.glfw.org
 // GLFW 3.2 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_platform.h

@@ -2,7 +2,7 @@
 // GLFW 3.2 Win32 - www.glfw.org
 // GLFW 3.2 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_time.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 Win32 - www.glfw.org
 // GLFW 3.2 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_tls.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 Win32 - www.glfw.org
 // GLFW 3.2 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_window.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 Win32 - www.glfw.org
 // GLFW 3.2 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/window.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 - www.glfw.org
 // GLFW 3.2 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 // Copyright (c) 2012 Torsten Walluhn <[email protected]>
 // Copyright (c) 2012 Torsten Walluhn <[email protected]>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied

+ 1 - 1
src/x11_init.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 X11 - www.glfw.org
 // GLFW 3.2 X11 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/x11_monitor.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 X11 - www.glfw.org
 // GLFW 3.2 X11 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/x11_platform.h

@@ -2,7 +2,7 @@
 // GLFW 3.2 X11 - www.glfw.org
 // GLFW 3.2 X11 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/x11_window.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 X11 - www.glfw.org
 // GLFW 3.2 X11 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/xkb_unicode.c

@@ -2,7 +2,7 @@
 // GLFW 3.2 X11 - www.glfw.org
 // GLFW 3.2 X11 - www.glfw.org
 //------------------------------------------------------------------------
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/clipboard.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Clipboard test program
 // Clipboard test program
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/cursor.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Cursor & input mode tests
 // Cursor & input mode tests
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/empty.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Empty event test
 // Empty event test
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/events.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Event linter (event spewer)
 // Event linter (event spewer)
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/gamma.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Gamma correction test program
 // Gamma correction test program
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/glfwinfo.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Context creation and information tool
 // Context creation and information tool
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/icon.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Window icon test program
 // Window icon test program
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/iconify.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Iconify/restore test program
 // Iconify/restore test program
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/joysticks.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Joystick input test
 // Joystick input test
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/monitors.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Monitor information tool
 // Monitor information tool
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/msaa.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Multisample anti-aliasing test
 // Multisample anti-aliasing test
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/reopen.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Window re-opener (open/close stress test)
 // Window re-opener (open/close stress test)
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/sharing.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Context sharing test program
 // Context sharing test program
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/tearing.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Vsync enabling test
 // Vsync enabling test
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/threads.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Multi-threading test
 // Multi-threading test
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/timeout.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Event wait timeout test
 // Event wait timeout test
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/title.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // UTF-8 window title test
 // UTF-8 window title test
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/windows.c

@@ -1,6 +1,6 @@
 //========================================================================
 //========================================================================
 // Simple multi-window test
 // Simple multi-window test
-// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
+// Copyright (c) Camilla Berglund <elmindreda@glfw.org>
 //
 //
 // This software is provided 'as-is', without any express or implied
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages
 // warranty. In no event will the authors be held liable for any damages