forked from pool/scrcpy
Accepting request 826835 from home:dirkmueller:branches:hardware
- Update to version 1.16: * Bump version to 1.16 * Add pinch-to-zoom simulation * Add reference of the translations in README * Add Traditional Chinese translation for README * Fix clipboard paste condition * Revert "Inject WAKEUP instead of POWER" * Fix missing change of Ctrl key in README * Add packaging status * Update links to v1.15.1 in README and BUILD * Bump version to 1.15.1 * Fix uninitialized repeat count in key events * Update links to v1.15 in README and BUILD * Bump version to 1.15 * Upgrade FFmpeg (4.3.1) for Windows * Upgrade platform-tools (30.0.4) for Windows * Keep the screen off on powering on * Add --no-key-repeat cli option * Pass full options struct to static functions * Copy the options used in input manager init * Mention that MENU unlocks screen * Use <kbd> HTML tag for keys * Mention in README that Ctrl is forwarded * Update copy-paste section in README * Swap paste shortcuts * Add shortcuts for COPY and CUT * Change "resize to fit" shortcut to MOD+w * Remove "get clipboard" call * Set computer clipboard only if necessary * Set device clipboard only if necessary OBS-URL: https://build.opensuse.org/request/show/826835 OBS-URL: https://build.opensuse.org/package/show/hardware/scrcpy?expand=0&rev=69
This commit is contained in:
parent
fd4ca4b5e2
commit
0b59405256
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -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-v1.14 filter=lfs diff=lfs merge=lfs -text
|
||||
scrcpy-server-v1.16 filter=lfs diff=lfs merge=lfs -text
|
||||
|
2
_service
2
_service
@ -5,7 +5,7 @@
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="revision">release</param>
|
||||
<param name="revision">v1.16</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">*.tar</param>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/Genymobile/scrcpy.git</param>
|
||||
<param name="changesrevision">8b73c90427e5f31d031357c2b319512b57ef78f5</param></service></servicedata>
|
||||
<param name="changesrevision">d7779d08e8f9004ec44197cd8eb7fdec0e1d4dd1</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b0c02ef8b6797c83aa64b88ddf4aabecec1c596232ce16bc637ad30a21d02580
|
||||
size 210188
|
3
scrcpy-1.16.tar.xz
Normal file
3
scrcpy-1.16.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9acfd5404834ddeed6cb846372a60dcc77b4c25f7fdb74510ba5ba34d0665bab
|
||||
size 219776
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d1b18a2b80e956771fd63b99b414d2d028713a8f12ddfa5a369709ad4295620
|
||||
size 33142
|
3
scrcpy-server-v1.16
Normal file
3
scrcpy-server-v1.16
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94a79e05b4498d0460ab7bd9d12cbf05156e3a47bf0c5d1420cee1d4493b3832
|
||||
size 33622
|
@ -1,3 +1,79 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 15 12:50:10 UTC 2020 - dmueller@suse.com
|
||||
|
||||
- Update to version 1.16:
|
||||
* Bump version to 1.16
|
||||
* Add pinch-to-zoom simulation
|
||||
* Add reference of the translations in README
|
||||
* Add Traditional Chinese translation for README
|
||||
* Fix clipboard paste condition
|
||||
* Revert "Inject WAKEUP instead of POWER"
|
||||
* Fix missing change of Ctrl key in README
|
||||
* Add packaging status
|
||||
* Update links to v1.15.1 in README and BUILD
|
||||
* Bump version to 1.15.1
|
||||
* Fix uninitialized repeat count in key events
|
||||
* Update links to v1.15 in README and BUILD
|
||||
* Bump version to 1.15
|
||||
* Upgrade FFmpeg (4.3.1) for Windows
|
||||
* Upgrade platform-tools (30.0.4) for Windows
|
||||
* Keep the screen off on powering on
|
||||
* Add --no-key-repeat cli option
|
||||
* Pass full options struct to static functions
|
||||
* Copy the options used in input manager init
|
||||
* Mention that MENU unlocks screen
|
||||
* Use <kbd> HTML tag for keys
|
||||
* Mention in README that Ctrl is forwarded
|
||||
* Update copy-paste section in README
|
||||
* Swap paste shortcuts
|
||||
* Add shortcuts for COPY and CUT
|
||||
* Change "resize to fit" shortcut to MOD+w
|
||||
* Remove "get clipboard" call
|
||||
* Set computer clipboard only if necessary
|
||||
* Set device clipboard only if necessary
|
||||
* Synchronize clipboard on Ctrl+v
|
||||
* Forward Shift to the device
|
||||
* Forward Ctrl to the device
|
||||
* Ignore text events for shortcuts
|
||||
* Accept Super as shortcut modifier
|
||||
* Customize shortcut modifier
|
||||
* Use Ctrl for all shortcuts
|
||||
* Make expression order consistent
|
||||
* Simplify PASTE option for "set clipboard"
|
||||
* Declare main() with argc/argv params in tests
|
||||
* Inject WAKEUP instead of POWER
|
||||
* Restore power mode to normal on cleanup
|
||||
* Warn on ignored touch event
|
||||
* Send touch event without pressure on button up
|
||||
* Update BUILD.md
|
||||
* Fix constants name in comment
|
||||
* Make setScreenPowerMode() method static
|
||||
* Do not crash on missing clipboard manager
|
||||
* README: Add Fedora install instructions
|
||||
* Fix touch events HiDPI-scaling
|
||||
* Improve linguistic
|
||||
* Handle repeating keycodes
|
||||
* Make scrcpy.h independant of other headers
|
||||
* Remove fprintf() call in tests
|
||||
* Add option for disabling screensaver
|
||||
* Fix typo in README.md
|
||||
* Make message buffer static
|
||||
* Increase clipboard size from 4k to 256k
|
||||
* Fix receiver on partial device messages
|
||||
* Serialize text size on 4 bytes
|
||||
* Rename MSG_SERIALIZED_MAX_SIZE to MSG_MAX_SIZE
|
||||
* Add unit test for big clipboard device message
|
||||
* Rename test names from "event" to "msg"
|
||||
* Avoid additional copy on Java text parsing
|
||||
* Reorganize message size constants
|
||||
* Mention sndcpy
|
||||
* Add missing file in build_without_gradle.sh
|
||||
* Configure log level for application only
|
||||
* Fix incorrect log return value
|
||||
* Git-ignore release directories
|
||||
* Avoid repetition for some shortcuts
|
||||
* Mention stay awake limitation
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 02 15:55:49 UTC 2020 - pousaduarte@gmail.com
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: scrcpy
|
||||
Version: 1.14
|
||||
Version: 1.16
|
||||
Release: 0
|
||||
Summary: Display and control your Android device
|
||||
License: Apache-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user