-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmotion_support.html
68 lines (64 loc) · 3.2 KB
/
motion_support.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<link href="motion.png" rel="icon" type="image/png">
<title>Motion</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="motion_stylesheet.css" media="screen">
<script>
function fnc_topnav() {
var x = document.getElementById("id_topnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</head>
<body>
<div class="topnav" id="id_topnav">
<img class="logoimg" src="motion.gif">
<a class="topnav-d" href="https://motion-project.github.io/motion_support.html">Support</a>
<a class="topnav-d" href="https://motion-project.github.io/motion_news.html" >News</a>
<a class="topnav-d" href="https://motion-project.github.io/motion_guide.html" >Documentation</a>
<a class="topnav-d" href="https://motion-project.github.io/motion_download.html">Download</a>
<a class="topnav-d" href="https://motion-project.github.io/index.html">Home</a>
<a class="topnav-m" href="https://motion-project.github.io/index.html">Home</a>
<a class="topnav-m" href="https://motion-project.github.io/motion_download.html">Download</a>
<a class="topnav-m" href="https://motion-project.github.io/motion_guide.html" >Documentation</a>
<a class="topnav-m" href="https://motion-project.github.io/motion_news.html" >News</a>
<a class="topnav-m" href="https://motion-project.github.io/motion_support.html">Support</a>
<a href="javascript:void(0);" class="icon" onclick="fnc_topnav()">☰</a>
</div>
<section class="page-header">
<h1>
Support
</h1>
</section>
<section class="main-content">
<p></p>
If you are having an question or issue with the setup, configuration or use of Motion/MotionPlus, the following
resources are available to assist.
<ul>
<li> <a href="motion_guide.html">Motion/MotionPlus Guides</a> </li>
<li> <a href="https://github.com/Motion-Project/motion/discussions">Motion Discussions Page</a></li>
<li> <a href="https://github.com/Motion-Project/motionplus/discussions">MotionPlus Discussions Page</a></li>
<p></p>
<li> Join the <a href="https://lists.sourceforge.net/lists/listinfo/motion-user">motion-user mailing list</a>
and send an email including as much detail as possible with the question. (Use the same link to unsubscribe)
</li>
<li> <a href="ircs://irc.libera.chat:6697/motion">#motion on Libera Chat</a> </li>
</ul>
<p></p>
If you think you have found a bug, please make sure that you are using
the latest version. Note that the version installed via apt may not be the most recent. Check the
releases page and ensure the version being used is the most current.
<p></p>
The issues on the github site are to discuss code problems. Application enhancements are generally
only considered for MotionPlus and are documented on the discussions page.
<p></p>
</section>
</body>
</html>