diff options
author | pommicket <pommicket@gmail.com> | 2025-08-10 10:46:58 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-08-10 10:46:58 -0400 |
commit | d8aac06e9c78646ddfa94ad8d2edb13ffe316845 (patch) | |
tree | 5c2023771c7fa212e2c4e6530287b48f58e7969c | |
parent | 146355c5f86f155601cfd0c63781cf299ef7bd12 (diff) |
-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> |