Skip to content

Commit

Permalink
Merge tag 'v0.13.2'
Browse files Browse the repository at this point in the history
Released 0.13.2
  • Loading branch information
vicamo committed Sep 8, 2024
2 parents 3dd03b8 + 2d44c2f commit f530a8c
Show file tree
Hide file tree
Showing 12 changed files with 191 additions and 126 deletions.
96 changes: 96 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
---
name: Report a bug
description: Create a report to help us improve (but make sure to read all the documentation first).
title: "[Bug]: <title>"
labels: ['needs triage','kind:bug']
assignees: 'umlaeute'
body:
- type: markdown
attributes:
value: |
Thanks for your feedback. It is invaluable for making `v4l2loopback` a better software.
To help us making the most of your feedback (so we can e.g. fix bugs more quickly), please make sure to provide the information requested in this template.
Please keep in mind that the development of `v4l2loopback` is done by volunteers.
They are spending their spare time to give you a hopefully nice product and to help you if you have troubles - for free.
If you are experiencing interoperability problems with a commercial product, contact *their* support first.
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: |
Please search to see if an (open or closed) issue already exists for the bug you encountered.
If so, consider adding more information to the existing issue, rather than creating a new one.
options:
- label: I have searched the existing issues
required: true

- id: details
type: textarea
attributes:
label: Detail
description: |
What went wrong?
If you are using additional software (e.g. `obs-studio`, `ffmpeg`, ...) please make sure to include full version information (and - if it is not a very common product - a link to their webpage).
placeholder: |
What did you do (step by step)? What did you expect? What happened?
render: markdown
validations:
required: true

- id: version
type: input
attributes:
label: v4l2loopback version
description: |
What is the exact version of v4l2loopback you are using? (e.g. as reported by `sudo dmesg | grep -i "v4l2loopback driver version"` or `git describe`)
placeholder: |
e.g. v0.13.1-10-g2014627
validations:
required: true

- id: kernelversion
type: input
attributes:
label: kernel version
description: |
What is the exact version of the linux kernel you are using? (reported via `uname -a`)
placeholder: |
e.g. Linux umlautT 6.7.9-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.7.9-2 (2024-03-13) x86_64 GNU/Linux
validations:
required: true


# - type: dropdown
# id: OS
# attributes:
# label: Operating System
# description: Which OS are you using?
# multiple: true
# options:
# - Linux
# - macOS
# - Windows
# - other
- id: osversion
type: input
attributes:
label: OS Version
description: |
Which distribution/version are you using? (numeric versions are much preferred over codenames)
placeholder: |
e.g. Ubuntu/4.10 "Warty"
- id: arch
type: dropdown
attributes:
label: Which CPU are you using?
multiple: true
options:
- amd64/x86_64 ("64bit Intel")
- i386 ("32bit Intel")
- arm64 ("64bit ARM"; e.g. Apple Silicon,...)
- arm ("32bit ARM"; e.g. Raspberry Pi,...)
- other
101 changes: 0 additions & 101 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
blank_issues_enabled: false
contact_links:
- name: Ask a Question
Expand Down
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Request a new feature
about: Suggest some new great functionality (but make sure to read all the documentation first).
title: ''
labels: ['needs triage', 'kind: feature request']
assignees: 'umlaeute'

---
16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
v4l2loopback (0.13.2) unstable; urgency=medium

* Fix compilation on 32bit architectures (i386, armhf,...)
* Replace (s64 % u32) with our own v4l2l_mod64() wrapper
* Fix mod64 warnings on arm
* utils buildsystem
+ Don't fail 'clean' target if 'make -C utils clean' fails
+ clean objectfiles
* v4l2loopback-ctl
+ mention the special caps 'any' in help
+ improve error-reporting and return errcodes where appropriate
+ avoid unused variable warning
+ explicitly return the fd from open_controldevice()

-- IOhannes m zmölnig (Debian/GNU) <[email protected]> Fri, 24 May 2024 11:30:51 +0200

v4l2loopback (0.13.1) unstable; urgency=medium

[ Max Harmathy ]
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ clean:
rm -f *~
rm -f Module.symvers Module.markers modules.order
$(MAKE) -C $(KERNEL_DIR) M=$(PWD) clean
$(MAKE) -C utils clean
-$(MAKE) -C utils clean

distclean: clean
rm -f man/v4l2loopback-ctl.1
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v4l2loopback-0.13.2

* Fix compilation on 32bit architectures (i386, armhf,...)

-- IOhannes m zmölnig (Debian/GNU) <[email protected]> Fri, 24 May 2024 11:30:51 +0200

v4l2loopback-0.13.1

* Avoid building utils with dkms
Expand Down
2 changes: 1 addition & 1 deletion dkms.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="v4l2loopback"
PACKAGE_VERSION="0.13.1"
PACKAGE_VERSION="0.13.2"

if [ -f $kernel_source_dir/.config ]; then
. $kernel_source_dir/.config
Expand Down
1 change: 1 addition & 0 deletions utils/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ default: $(programs)

clean:
-rm $(programs)
-rm $(programs:%=%.o)

install:
$(MKDIR_P) $(DESTDIR)$(bindir)
Expand Down
Loading

0 comments on commit f530a8c

Please sign in to comment.