Accepting request 1121675 from home:munix9

- Update to version 2.2:
  * Bump version to v2.2
  * Upgrade SDL (2.28.4) for Windows
  * Upgrade platform-tools (34.0.5) for Windows
  * Shutdown connection before joining threads
  * Disable default stdout/stderr
  * Improve manpage formatting
  * Simplify URLs in manpage
  * Always print device model and version
  * Add camera documentation
  * Add support for high frame rate camera capture
  * Add --camera-fps
  * Do not arbitrary limit --max-fps to 1000
  * Fail-fast camera mirroring on Android 11 and older
  * Support camera size selection using -m/--camera-ar
  * Add --camera-facing
  * Make camera id optional
  * Handle camera disconnection
  * Automatically select audio source
  * Add camera mirroring
  * Add --list-camera-sizes
  * Add --list-cameras
  * Factorize --list- options handling
  * Extract SurfaceCapture from ScreenEncoder
  * Force server exit at the end of main()
  * Rename --display to --display-id
  * Make separator configurable for parsing integers
  * Fix incorrect comment about AV1 constant
  * Move empty string test for crop option parsing
  * Replace raw number by its name
  * Replace sprintf() with safer snprintf()
  * Use `char *` for pointer arithmetic
  * Enable missing-prototypes warning
  * Declare local functions as static
  * Wrap macros in do-while(0)
  * Fix --pause-on-exit parsing
  * Add missing `void`s for empty parameter list
  * Make sc_usb_devices_destroy() static
  * Remove redundant `;`
  * Use `void` for empty function parameter list
  * Add scrcpy-server to .gitignore
  * Use --pause-on-exit from launchers
  * Add --pause-on-exit
  * Make fillBaseContext() method private
  * Add missing 'final' in Java classes
  * Fix warning typo
  * Report device disconnection on audio EOS
  * Do not disable controls without video playback
  * Fix TCP/IP link in README
  * Add missing syntax highlighting in audio doc
  * Add Encoder section
  * Extract device connection to a separate doc page
  * Move display section to video documentation
  * Update links to v2.1.1

OBS-URL: https://build.opensuse.org/request/show/1121675
OBS-URL: https://build.opensuse.org/package/show/hardware/scrcpy?expand=0&rev=81
This commit is contained in:
Paolo Panto 2023-11-01 18:40:09 +00:00 committed by Git OBS Bridge
parent f660cebf1f
commit 589fc5fda9
9 changed files with 73 additions and 15 deletions

2
.gitattributes vendored
View File

@ -22,4 +22,4 @@
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
## Specific LFS patterns
scrcpy-server-v2.1.1 filter=lfs diff=lfs merge=lfs -text
scrcpy-server-v2.2 filter=lfs diff=lfs merge=lfs -text

View File

@ -1,19 +1,19 @@
<services>
<service name="tar_scm" mode="disabled">
<service name="tar_scm" mode="manual">
<param name="scm">git</param>
<param name="url">https://github.com/Genymobile/scrcpy.git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="changesgenerate">enable</param>
<param name="revision">v2.1.1</param>
<param name="revision">v2.2</param>
</service>
<service name="recompress" mode="disabled">
<service name="recompress" mode="manual">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service name="download_files" mode="disabled">
<service name="download_files" mode="manual">
<param name="enforceupstream">yes</param>
</service>
<service name="set_version" mode="disabled"/>
<service name="download_files" mode="disabled"/>
<service name="set_version" mode="manual"/>
<service name="download_files" mode="manual"/>
</services>

View File

@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/Genymobile/scrcpy.git</param>
<param name="changesrevision">d391fc3b695679f4770ed2e3950b135ebbda2f27</param></service></servicedata>
<param name="changesrevision">c3c7bf7af329c8a5fd9f0310eae3b4e0a5f86207</param></service></servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b19dc379e457192a8a86f1511c111b613eac987b9bc2a66d04d37d80c6998069
size 317352

3
scrcpy-2.2.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ac75a0b99e886a15e1d2b25fc234a2bef319e46f0213c45c9b7ea67af08facac
size 325244

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9558db6c56743a1dc03b38f59801fb40e91cc891f8fc0c89e5b0b067761f148e
size 56995

3
scrcpy-server-v2.2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c85c4aa84305efb69115cd497a120ebdd10258993b4cf123a8245b3d99d49874
size 64363

View File

@ -1,3 +1,61 @@
-------------------------------------------------------------------
Wed Nov 01 18:30:29 UTC 2023 - munix9@googlemail.com
- Update to version 2.2:
* Bump version to v2.2
* Upgrade SDL (2.28.4) for Windows
* Upgrade platform-tools (34.0.5) for Windows
* Shutdown connection before joining threads
* Disable default stdout/stderr
* Improve manpage formatting
* Simplify URLs in manpage
* Always print device model and version
* Add camera documentation
* Add support for high frame rate camera capture
* Add --camera-fps
* Do not arbitrary limit --max-fps to 1000
* Fail-fast camera mirroring on Android 11 and older
* Support camera size selection using -m/--camera-ar
* Add --camera-facing
* Make camera id optional
* Handle camera disconnection
* Automatically select audio source
* Add camera mirroring
* Add --list-camera-sizes
* Add --list-cameras
* Factorize --list- options handling
* Extract SurfaceCapture from ScreenEncoder
* Force server exit at the end of main()
* Rename --display to --display-id
* Make separator configurable for parsing integers
* Fix incorrect comment about AV1 constant
* Move empty string test for crop option parsing
* Replace raw number by its name
* Replace sprintf() with safer snprintf()
* Use `char *` for pointer arithmetic
* Enable missing-prototypes warning
* Declare local functions as static
* Wrap macros in do-while(0)
* Fix --pause-on-exit parsing
* Add missing `void`s for empty parameter list
* Make sc_usb_devices_destroy() static
* Remove redundant `;`
* Use `void` for empty function parameter list
* Add scrcpy-server to .gitignore
* Use --pause-on-exit from launchers
* Add --pause-on-exit
* Make fillBaseContext() method private
* Add missing 'final' in Java classes
* Fix warning typo
* Report device disconnection on audio EOS
* Do not disable controls without video playback
* Fix TCP/IP link in README
* Add missing syntax highlighting in audio doc
* Add Encoder section
* Extract device connection to a separate doc page
* Move display section to video documentation
* Update links to v2.1.1
-------------------------------------------------------------------
Sat Jul 15 06:07:48 UTC 2023 - munix9@googlemail.com

View File

@ -17,7 +17,7 @@
Name: scrcpy
Version: 2.1.1
Version: 2.2
Release: 0
Summary: Display and control your Android device
License: Apache-2.0