You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3.3 KiB
3.3 KiB
| layout | title | category | date | order |
|---|---|---|---|---|
| page | Changelog | about | 2018-12-20 17:49:29 | 3 |
New versions are released through GitHub, so the reference page is the GitHub Releases page.
v2.0.0-beta06
- New: Full featured Camera2 integration! Use
cameraExperimental="true"andcameraEngine="camera2"to test this out. (#490) - Improvement: we now choose a video recording profile that is compatible with the chosen size. Should fix some video recording issues. (#477)
- Improvement: most internals are now open to be accessed by subclassing. Feel free to open PRs with more protected methods to be overriden. ([#494][494])
- Breaking change: some public classes have been moved to different packages. See table here. (#482)
- Breaking change: the listener methods
onFocusStartandonFocusEndare now calledonAutoFocusStartandonAutoFocusEnd. (#484) - Breaking change: the gesture actions
focusandfocusWithMarkerhave been removed and replaced byautoFocus, which shows no marker. (#484) - New: new API called
setAutoFocusMarker()lets you choose your own marker. (#484)
If you were using focus, just switch to autoFocus.
If you were using focusWithMarker, you can add back the old marker.
v2.0.0-beta05
- Fixed
FrameProcessorfreeze and release behavior, was broken (#431) - New: new api
setAutoFocusResetDelayto control the delay to reset the focus after autofocus was performed, thanks to @cneuwirt (#435) - Faster camera preview on layout changes (#403)
- A few bug fixes (#471)
v2.0.0-beta04
- Renames setPreviewSize to setPreviewStreamSize (previewSize suggests it is related to the view size but it's not) (#393)
- Added new APIs
setSnapshotMaxWidthandsetSnapshotMaxHeight(#393). You can now have a good looking preview but still take low-res snapshots using these snapshot constraints. Before this, the two sizes were coupled.
v2.0.0-beta03
v2.0.0-beta02
- Fixed important bugs (#356)
- Picture snapshots are now flipped when front camera is used (#360)
- Added
PictureResult.getFacing()andVideoResult.getFacing()(#360)
v2.0.0-beta01
This is the first beta release. For changes with respect to v1, please take a look at the migration guide.