diff --git a/docs/_config.yml b/docs/_config.yml index e5df2367..23ab7155 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -13,7 +13,7 @@ author: # if you wish to integrate disqus on pages set your shortname here -disqus_shortname: '' +disqus_shortname: 'cameraview' # if you use google analytics, add your tracking id here google_analytics_id: '' diff --git a/docs/_posts/2018-12-20-camera-events.md b/docs/_posts/2018-12-20-camera-events.md index 27077196..1ade62eb 100644 --- a/docs/_posts/2018-12-20-camera-events.md +++ b/docs/_posts/2018-12-20-camera-events.md @@ -5,6 +5,7 @@ subtitle: "Events and lifecycle" category: docs date: 2018-12-20 20:02:08 order: 1 +disqus: 1 --- The camera engine will notify anyone about camera events that took place, either on their own or diff --git a/docs/_posts/2018-12-20-capture-size.md b/docs/_posts/2018-12-20-capture-size.md index 0d8d5b30..78435275 100644 --- a/docs/_posts/2018-12-20-capture-size.md +++ b/docs/_posts/2018-12-20-capture-size.md @@ -5,6 +5,7 @@ subtitle: "Set size of output media" category: docs order: 8 date: 2018-12-20 22:07:22 +disqus: 1 --- If you are planning to use the snapshot APIs, the size of the media output is that of the preview, diff --git a/docs/_posts/2018-12-20-capturing-media.md b/docs/_posts/2018-12-20-capturing-media.md index 38c25f41..792c8812 100644 --- a/docs/_posts/2018-12-20-capturing-media.md +++ b/docs/_posts/2018-12-20-capturing-media.md @@ -5,6 +5,7 @@ subtitle: "Taking pictures and videos" category: docs order: 3 date: 2018-12-20 20:53:17 +disqus: 1 --- This section introduces some key concepts about media capturing, and about the `Mode` control. diff --git a/docs/_posts/2018-12-20-controls.md b/docs/_posts/2018-12-20-controls.md index 76de7d01..6ec8ebfa 100644 --- a/docs/_posts/2018-12-20-controls.md +++ b/docs/_posts/2018-12-20-controls.md @@ -5,6 +5,7 @@ subtitle: "Output parameters and capture options" category: docs order: 2 date: 2018-12-20 21:08:53 +disqus: 1 --- CameraView supports a wide range of controls that will control the behavior of the sensor or the diff --git a/docs/_posts/2018-12-20-debugging.md b/docs/_posts/2018-12-20-debugging.md index d4f6dfe7..dc7e1ab4 100644 --- a/docs/_posts/2018-12-20-debugging.md +++ b/docs/_posts/2018-12-20-debugging.md @@ -4,6 +4,7 @@ title: "Debugging" category: docs order: 10 date: 2018-12-20 20:02:38 +disqus: 1 --- `CameraView` will log a lot of interesting events related to the camera lifecycle. These are important diff --git a/docs/_posts/2018-12-20-error-handling.md b/docs/_posts/2018-12-20-error-handling.md index 51b5fd85..72c98cb1 100644 --- a/docs/_posts/2018-12-20-error-handling.md +++ b/docs/_posts/2018-12-20-error-handling.md @@ -4,6 +4,7 @@ title: "Error Handling" category: docs order: 9 date: 2018-12-20 20:02:31 +disqus: 1 --- Errors are posted to the registered `CameraListener`s callback: diff --git a/docs/_posts/2018-12-20-frame-processing.md b/docs/_posts/2018-12-20-frame-processing.md index 21bc6e41..87cc12fb 100644 --- a/docs/_posts/2018-12-20-frame-processing.md +++ b/docs/_posts/2018-12-20-frame-processing.md @@ -5,6 +5,7 @@ subtitle: "Process each frame in real time" category: docs order: 5 date: 2018-12-20 20:45:42 +disqus: 1 --- We support frame processors that will receive data from the camera preview stream. This is a useful diff --git a/docs/_posts/2018-12-20-gestures.md b/docs/_posts/2018-12-20-gestures.md index c680a1ec..4e0009e0 100644 --- a/docs/_posts/2018-12-20-gestures.md +++ b/docs/_posts/2018-12-20-gestures.md @@ -5,6 +5,7 @@ subtitle: "Gestures control" category: docs order: 4 date: 2018-12-20 20:49:35 +disqus: 1 --- `CameraView` listen to lots of different gestures inside its bounds. You have the chance to map diff --git a/docs/_posts/2018-12-20-getting-started.md b/docs/_posts/2018-12-20-getting-started.md index a61a2a8a..39f4cb9c 100644 --- a/docs/_posts/2018-12-20-getting-started.md +++ b/docs/_posts/2018-12-20-getting-started.md @@ -5,6 +5,7 @@ subtitle: "Simple guide to take your first picture" category: about date: 2018-12-20 17:48:58 order: 2 +disqus: 1 --- To use the CameraView engine, simply add a `CameraView` to your layout: diff --git a/docs/_posts/2018-12-20-more-features.md b/docs/_posts/2018-12-20-more-features.md index 32831f18..45c9419d 100644 --- a/docs/_posts/2018-12-20-more-features.md +++ b/docs/_posts/2018-12-20-more-features.md @@ -5,6 +5,7 @@ subtitle: "Undocumented features & more" category: docs order: 11 date: 2018-12-20 20:41:20 +disqus: 1 --- ### Extra controls diff --git a/docs/_posts/2018-12-20-preview-size.md b/docs/_posts/2018-12-20-preview-size.md index 6fd20c1b..3df5e0f7 100644 --- a/docs/_posts/2018-12-20-preview-size.md +++ b/docs/_posts/2018-12-20-preview-size.md @@ -5,6 +5,7 @@ subtitle: "Measuring behavior" category: docs order: 7 date: 2018-12-20 22:07:17 +disqus: 1 --- `CameraView` has a smart measuring behavior that will let you do what you want with a few flags. diff --git a/docs/_posts/2018-12-20-previews.md b/docs/_posts/2018-12-20-previews.md index 0a519196..9dffbeee 100644 --- a/docs/_posts/2018-12-20-previews.md +++ b/docs/_posts/2018-12-20-previews.md @@ -5,6 +5,7 @@ subtitle: "Camera preview implementations" category: docs order: 6 date: 2018-12-20 21:58:16 +disqus: 1 --- CameraView supports different types of previews, configurable either through the `cameraPreview` diff --git a/docs/_posts/2018-12-20-runtime-permissions.md b/docs/_posts/2018-12-20-runtime-permissions.md index c9a40da0..1dd8739f 100644 --- a/docs/_posts/2018-12-20-runtime-permissions.md +++ b/docs/_posts/2018-12-20-runtime-permissions.md @@ -5,6 +5,7 @@ subtitle: "Permissions and Manifest setup" category: docs order: 8 date: 2018-12-20 20:03:03 +disqus: 1 --- `CameraView` needs two permissions: diff --git a/docs/_posts/2018-12-20-v1-migration-guide.md b/docs/_posts/2018-12-20-v1-migration-guide.md index fec83f3b..bdcf52fe 100644 --- a/docs/_posts/2018-12-20-v1-migration-guide.md +++ b/docs/_posts/2018-12-20-v1-migration-guide.md @@ -5,6 +5,7 @@ subtitle: "Breaking Changes & new concepts" category: extra date: 2018-12-20 19:01:55 order: 1 +disqus: 1 --- CameraView v2 introduces various breaking changes that will allow for more flexibility in the future,