+-> kill mjpgclients when not used
+-> add a loading progress when page loads
+-> order of the cams is a bit random
+-> disk usage at bottom
-> make camera frames positions configurable
-> add a view log functionality
-> add a previewer for snapshots
-> add a previewer for movies
+-> increase the maximal number of threshold pixels (maybe express it in % as well)
-> style scroll bars
-> hint text next to section titles
-> implement notifications
-> implement functionalities specific to raspberry pi: network settings, smb control
-> group @config rules at top
+-> chaining two or more remote motionEye cameras breaks updating configuration
-> browser compatibility test
-> requirements test
4. the `uv4l` daemon must be started at boot; add the following line to `/etc/rc.local`,
*before* the line that starts motionEye:
- test -x /usr/local/bin/motion && /usr/local/bin/motion -h > /dev/null 2>&1
+ test -x /usr/local/bin/motion && sudo -u pi /usr/local/bin/motion -h > /dev/null 2>&1 || false
5. if you wish to start motionEye at boot, add this to `/etc/rc.local` (assuming motionEye lives in pi's home directory):
ui['capture_mode'] = 'all-frames'
ui['image_file_name'] = jpeg_filename
- elif data.get('snapshot_interval'):
- ui['capture-mode'] = 'interval-snapshots'
+ elif snapshot_interval:
+ ui['capture_mode'] = 'interval-snapshots'
ui['image_file_name'] = snapshot_filename
ui['snapshot_interval'] = snapshot_interval
- elif data.get('output_normal'):
- ui['capture-mode'] = 'motion-triggered'
+ elif output_normal:
+ ui['capture_mode'] = 'motion-triggered'
ui['image_file_name'] = jpeg_filename
ui['image_quality'] = ui.get('quality', 85)
<tr class="settings-item advanced-setting">
<td class="settings-item-label"><span class="settings-item-label">Current Version</span></td>
<td class="settings-item-value"><span class="settings-item-label">{{VERSION}}</span></td>
- <td><span class="help-mark" title="checks for new versions and performs updates">?</span></td>
</tr>
<tr class="settings-item advanced-setting">
<td class="settings-item-label"><span class="settings-item-label">Software Update</span></td>