-
Notifications
You must be signed in to change notification settings - Fork 529
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Released 0.13.2
- Loading branch information
Showing
12 changed files
with
191 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Ask a Question | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.