Skip to content

Commit d488dc7

Browse files
committed
Merge branch '5.0'
2 parents aa285e1 + cfc9246 commit d488dc7

File tree

127 files changed

+64196
-81990
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+64196
-81990
lines changed

.github/ISSUE_TEMPLATE/config.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,8 @@ contact_links:
55
about: Please ask and answer questions here.
66
- name: Motion Enhancements
77
url: https://github.com/Motion-Project/motion/discussions
8-
about: Please use the discussions page and tag as an enhancement request.
8+
<<<<<<< HEAD
9+
about: Please use the discussions page and tag as an enhancement request.
10+
=======
11+
about: Please use the discussions page and tag as an enhancement request.
12+
>>>>>>> 5.0

.github/ISSUE_TEMPLATE/issue.yml

+28
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,15 @@ body:
3030
- 4.5.x
3131
- 4.6.x
3232
- 4.7.x
33+
<<<<<<< HEAD
3334
- 4.8.x
3435
- 4.9.x
3536
- 4.10.x
37+
=======
38+
- 5.0.x
39+
- 5.1.x
40+
- 5.2.x
41+
>>>>>>> 5.0
3642
validations:
3743
required: true
3844
- type: dropdown
@@ -53,7 +59,11 @@ body:
5359
options:
5460
- ARM-32bit
5561
- ARM-64bit
62+
<<<<<<< HEAD
5663
- x86
64+
=======
65+
- x86/x64
66+
>>>>>>> 5.0
5767
- Other
5868
validations:
5969
required: true
@@ -80,6 +90,7 @@ body:
8090
- type: dropdown
8191
id: camtype
8292
attributes:
93+
<<<<<<< HEAD
8394
label: Camera type(s) being used?
8495
multiple: true
8596
options:
@@ -89,6 +100,18 @@ body:
89100
- PI cam via MMAL
90101
- Network camera with RTSP
91102
- Network camera with HTTP
103+
=======
104+
label: Camera/Sound type(s) being used?
105+
multiple: true
106+
options:
107+
- v4l2 camera
108+
- PI cam via libcamerify
109+
- PI camera via libcam
110+
- Network camera with RTSP
111+
- Network camera with HTTP
112+
- Sound via ALSA
113+
- Sound via PulseAudio
114+
>>>>>>> 5.0
92115
- Other
93116
validations:
94117
required: true
@@ -103,8 +126,13 @@ body:
103126
- type: textarea
104127
id: logs
105128
attributes:
129+
<<<<<<< HEAD
106130
label: Motion log output at log_level 8
107131
description: Provide the entire log output from Motion start up to when the issue occurs so we can see the parameters. This will be automatically formatted into code, so no need for backticks.
132+
=======
133+
label: Full Motion log output (at log_level 8)
134+
description: Please copy and paste the full log output. This will be automatically formatted into code, so no need for backticks.
135+
>>>>>>> 5.0
108136
render: shell
109137
validations:
110138
required: true

.github/workflows/ci.yml

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- .github/ISSUE_TEMPLATE/**
7+
- doc/**
8+
- man/**
9+
- '**/LICENCE'
10+
- '**/.gitignore'
11+
- '**.md'
12+
pull_request:
13+
paths-ignore:
14+
- .github/ISSUE_TEMPLATE/**
15+
- doc/**
16+
- man/**
17+
- '**/LICENCE'
18+
- '**/.gitignore'
19+
- '**.md'
20+
workflow_dispatch:
21+
22+
concurrency:
23+
group: ${{ github.workflow }}-${{ github.ref }}
24+
cancel-in-progress: true
25+
26+
jobs:
27+
build:
28+
runs-on: ubuntu-latest
29+
strategy:
30+
fail-fast: false
31+
matrix:
32+
cxx: [g++, clang++]
33+
libc: [glibc, musl]
34+
include:
35+
- cxx: g++
36+
cc: gcc
37+
- cxx: clang++
38+
cc: clang
39+
- libc: glibc
40+
shell: bash
41+
- libc: musl
42+
shell: alpine.sh {0}
43+
44+
defaults:
45+
run:
46+
shell: ${{ matrix.shell }}
47+
48+
steps:
49+
- name: Set up Ubuntu
50+
if: matrix.libc == 'glibc'
51+
run: |
52+
sudo apt-get update
53+
sudo apt-get install -y autopoint pkgconf gettext libcamera-dev libopencv-dev libavcodec-dev libavdevice-dev libavformat-dev libavutil-dev libswscale-dev libwebp-dev libmicrohttpd-dev libmariadb-dev libasound2-dev libpulse-dev libfftw3-dev
54+
55+
- name: Set up Alpine
56+
if: matrix.libc == 'musl'
57+
uses: jirutka/setup-alpine@master
58+
with:
59+
branch: edge
60+
packages: >
61+
build-base
62+
clang
63+
file
64+
autoconf
65+
automake
66+
gettext-dev
67+
libtool
68+
libzip-dev
69+
jpeg-dev
70+
v4l-utils-libs
71+
libcamera-dev
72+
opencv-dev
73+
ffmpeg-dev
74+
libmicrohttpd-dev
75+
sqlite-dev
76+
mariadb-dev
77+
alsa-lib-dev
78+
pulseaudio-dev
79+
fftw-dev
80+
81+
- name: Checkout source
82+
uses: actions/checkout@main
83+
84+
- name: Configure build
85+
run: |
86+
autoreconf -fiv
87+
./configure CC=${{ matrix.cc }} CXX=${{ matrix.cxx }}
88+
89+
- name: Build target
90+
run: |
91+
${{ matrix.CXX }} --version
92+
make -j $(($(nproc)+1))
93+
94+
- name: Run artifact
95+
run: |
96+
file ./src/motion
97+
./src/motion -h || true

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ Makefile.in
33
ABOUT-NLS
44
compile
55
config.guess
6+
<<<<<<< HEAD
67
config.h
78
config.h.in
89
config.h.in~
10+
=======
11+
config.hpp
12+
config.hpp.in
13+
config.hpp.in~
14+
>>>>>>> 5.0
915
config.log
1016
config.rpath
1117
config.status
@@ -20,12 +26,20 @@ missing
2026
stamp-h1
2127

2228
#data
29+
<<<<<<< HEAD
2330
data/motion.service
31+
=======
32+
data/motion-dist.service
33+
>>>>>>> 5.0
2434
data/motion-dist.conf
2535
data/camera1-dist.conf
2636
data/camera2-dist.conf
2737
data/camera3-dist.conf
38+
<<<<<<< HEAD
2839
data/camera4-dist.conf
40+
=======
41+
data/sound1-dist.conf
42+
>>>>>>> 5.0
2943

3044
#src
3145
src/*.o
@@ -35,9 +49,12 @@ src/Makefile.in
3549
src/.deps/
3650
src/Makefile
3751
src/Makefile.in
52+
<<<<<<< HEAD
3853
src/raspicam/*.o
3954
src/raspicam/.dirstamp
4055
src/raspicam/.deps/
56+
=======
57+
>>>>>>> 5.0
4158
*.log
4259
.depend
4360

CONTRIBUTING.md

+6-50
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,14 @@
11
# How to contribute
22

3-
Issues on the github site are intended to discuss code problems, crashes and application enhancements. If you are having an issue with the setup,
4-
configuration or use of Motion, we have the following additional resources which are better suited to meet these needs.
3+
Issues on the github site are intended to discuss code problems, crashes and application enhancements. The discussions is intended for questions after you have read the guide.
54

5+
<<<<<<< HEAD
66
* User guide: [Motion User Guide](https://motion-project.github.io/motion_guide.html)
77
* User Group List: Please sign-up and send your issue to the list [Motion User](https://lists.sourceforge.net/lists/listinfo/motion-user)
88
* IRC: [#motion](ircs://irc.libera.chat:6697/motion) on Libera Chat
9+
=======
10+
## Questions submitted as issues
11+
>>>>>>> 5.0
912
10-
It is very important to use these resources for non-code issues since it engages a much wider audience who may have experience resolving
11-
the particular issue you are trying to resolve.
13+
Questions that are submitted as a github issue will be transferred to the discussions section.
1214

13-
## Submitting Problems
14-
15-
Before submitting a issue, please make sure that you are using either the latest release as posted
16-
[here](https://github.com/Motion-Project/motion/releases) or that you have built the latest source code
17-
from the github master branch.
18-
19-
If the issue still remains with the current version, please validate that the issue has not already been reported
20-
by searching through the issue log.
21-
22-
Next, we must be provided the following in order to replicate and ultimately resolve the issue:
23-
24-
* A complete Motion log for a single run from startup to shutdown at the INF/7 log level.
25-
* The expected versus actual result
26-
27-
The preferred method of providing the log file is by posting it on [gist](https://gist.github.com/). Only provide
28-
the link to the gist file within the issue. The full configuration will be printed out to the log at the INF/7 level
29-
with the most common, sensitive information (URLs, usernames/passwords, etc) masked. It is recommended that you
30-
double check before posting the log file.
31-
For more information please read [privacy wiki article](https://github.com/Motion-Project/motion/wiki/Privacy)
32-
33-
Note that the developers do not use any front-end application to use Motion and we need the actual logs from the Motion
34-
application rather than logs from the front-end application.
35-
36-
37-
## Submitting an Enhancement Request
38-
39-
Motion has a extremely large number of configuration options. With so many options, it is important to include a description
40-
of how/why the enhancement will be used. It is possible that the existing options can be configured to address the need.
41-
(Which could then lead to a different enhancement than originally contemplated of making those options easier to use or documented
42-
better.)
43-
44-
45-
## Submitting changes
46-
47-
Generally, it is best to first submit a issue on the particular enhancement prior to a pull request. This allows the particular
48-
item to be discussed and determine how it would fit into the application.
49-
50-
As pull requests are prepared, in addition to the actual code, please also consider:
51-
52-
* Changes needed to the Motion_Guide.html which is our user guide.
53-
* Changes to the motion.1 file which is the manual
54-
* Changes to the configuration templates of motion.conf, camera1.conf, etc.
55-
56-
57-
Thanks,
58-
Motion-Project Team.

0 commit comments

Comments
 (0)