Merge branch 'master' of https://github.com/osmandapp/Osmand
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 6.6 KiB |
|
@ -1,4 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?><resources>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
|
||||
<string name="local_indexes_cat_av">زانیاری دەنگ/ڤیدیۆ</string>
|
||||
<string name="stop_routing_confirm">دڵنیای له وەی که ئه ته وێت ناڤیگێشن راگریت</string>
|
||||
|
@ -34,7 +35,7 @@
|
|||
<string name="search_on_the_map_item">Lêgerîn Nexşa</string>
|
||||
<string name="other_menu_group">Adin</string>
|
||||
<string name="route_distance">:Dûrahî</string>
|
||||
<string name="route_duration">:Wexte Rêwîtî</string>
|
||||
<string name="route_duration">:Wext</string>
|
||||
<string name="show_on_start">Peşi Şan Bide</string>
|
||||
<string name="map_viewing_item">Naxşe Şan Bide</string>
|
||||
<string name="navigation_item_description">Awakira Navigasyone</string>
|
||||
|
@ -50,4 +51,7 @@
|
|||
<string name="poi_dialog_poi_type">Cureyê POİ</string>
|
||||
<string name="description">Daxuyanî</string>
|
||||
<string name="next_proceed">Dû re</string>
|
||||
<string name="shared_string_sound">Deng</string>
|
||||
<string name="osb_author_dialog_password">Şîfre OSM</string>
|
||||
<string name="share_geo">:Cih</string>
|
||||
</resources>
|
||||
|
|
|
@ -887,7 +887,7 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
|
|||
}
|
||||
|
||||
int cameraOrientation = getCamOrientation(mapActivity, Camera.CameraInfo.CAMERA_FACING_BACK);
|
||||
cam.setDisplayOrientation(cameraOrientation);
|
||||
//cam.setDisplayOrientation(cameraOrientation);
|
||||
parameters.set("rotation", cameraOrientation);
|
||||
if (mPreviewSize != null) {
|
||||
parameters.setPreviewSize(mPreviewSize.width, mPreviewSize.height);
|
||||
|
@ -1177,15 +1177,18 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
|
|||
log.info("Osmand:AudioNotes set camera FOCUS_MODE_AUTO");
|
||||
break;
|
||||
}
|
||||
// parameters.setFocusMode(Parameters.FOCUS_MODE_FIXED);
|
||||
// parameters.set("auto-exposure-lock", "true");
|
||||
// }
|
||||
|
||||
parameters.setWhiteBalance(Parameters.WHITE_BALANCE_AUTO);
|
||||
parameters.setFlashMode(Parameters.FLASH_MODE_AUTO);
|
||||
if (parameters.getSupportedWhiteBalance() != null
|
||||
&& parameters.getSupportedWhiteBalance().contains(Parameters.WHITE_BALANCE_AUTO)) {
|
||||
parameters.setWhiteBalance(Parameters.WHITE_BALANCE_AUTO);
|
||||
}
|
||||
if (parameters.getSupportedFlashModes() != null
|
||||
&& parameters.getSupportedFlashModes().contains(Parameters.FLASH_MODE_AUTO)) {
|
||||
parameters.setFlashMode(Parameters.FLASH_MODE_AUTO);
|
||||
}
|
||||
|
||||
int cameraOrientation = getCamOrientation(mapActivity, Camera.CameraInfo.CAMERA_FACING_BACK);
|
||||
cam.setDisplayOrientation(cameraOrientation);
|
||||
//cam.setDisplayOrientation(cameraOrientation);
|
||||
parameters.set("rotation", cameraOrientation);
|
||||
if (mPreviewSize != null) {
|
||||
parameters.setPreviewSize(mPreviewSize.width, mPreviewSize.height);
|
||||
|
|