diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rwxr-xr-x | control.sh | 2 | ||||
-rw-r--r-- | main.c | 2 |
4 files changed, 5 insertions, 3 deletions
@@ -8,4 +8,5 @@ out.bmp *.swp *~ .vscode -camlet.deb +*.deb +*.deb.asc @@ -66,6 +66,7 @@ You can try deleting/renaming your settings file as a temporary solution, to res <tr><td>0.0.0</td> <td>Initial release</td> <td>2025 Feb 26</td></tr> <tr><td>0.0.1</td> <td>Fix crash switching to video mode with no camera connected</td> <td>2025 Feb 26</td></tr> <tr><td>0.0.2</td> <td>Switch to ogg/vorbis/VP8 for videos</td> <td>2025 Feb 26</td></tr> +<tr><td>0.0.3</td> <td>Update to libvpx9</td> <td>2025 Aug 10</td></tr> </table> ## License @@ -11,7 +11,7 @@ Architecture: amd64 Essential: no Maintainer: pommicket <pommicket@gmail.com> Description: Take pictures and videos with a webcam -Depends: libsdl2-2.0-0, libv4l-0, libudev1, libsodium23, libfontconfig1, libsdl2-ttf-2.0-0, libjpeg62-turbo, libvpx7, libogg0, libvorbisenc2 +Depends: libsdl2-2.0-0, libv4l-0, libudev1, libsodium23, libfontconfig1, libsdl2-ttf-2.0-0, libjpeg62-turbo, libvpx9, libogg0, libvorbisenc2 Homepage: https://github.com/pommicket/camlet EOF echo 'Installed-Size: '$(expr $(wc -c release/camlet camlet.png camlet.desktop | tail -n1 | cut -d' ' -f1 || exit 1) / 1024) @@ -1,4 +1,4 @@ -#define VERSION "0.0.2" +#define VERSION "0.0.3" #define _GNU_SOURCE #include <stdio.h> |