Loading _docs/history.html +1 −0 Original line number Diff line number Diff line Loading @@ -67,6 +67,7 @@ FIXED Sometimes didn't layout UI correctly for landscape vs reversed landscape FIXED Shifted positions of icons (when "along top") to avoid camera privacy indicator on some devices e.g. Samsung Galaxy. FIXED Icons weren't smoothly rotating the first time the device was rotated (for Camera2 API). FIXED Duplicate entry of 0.1s for manual exposure time. ADDED New Settings/Photo settings/"Save preview shots". Enables saving a short video alongside photos, containing shots from the moment before the photo was taken (requires Android 8+ and Camera2 API). Loading app/src/main/java/net/sourceforge/opencamera/ui/ManualSeekbars.java +2 −2 Original line number Diff line number Diff line Loading @@ -196,8 +196,8 @@ public class ManualSeekbars { seekbar_values.add(exposure); } // 1/50 to 1/10 (steps of 5) for(int i=50;i>=10;i-=5) { // 1/50 to 1/15 (steps of 5) for(int i=50;i>=15;i-=5) { long exposure = 1000000000L/i; if( exposure > min_exposure_time && exposure < max_exposure_time ) seekbar_values.add(exposure); Loading Loading
_docs/history.html +1 −0 Original line number Diff line number Diff line Loading @@ -67,6 +67,7 @@ FIXED Sometimes didn't layout UI correctly for landscape vs reversed landscape FIXED Shifted positions of icons (when "along top") to avoid camera privacy indicator on some devices e.g. Samsung Galaxy. FIXED Icons weren't smoothly rotating the first time the device was rotated (for Camera2 API). FIXED Duplicate entry of 0.1s for manual exposure time. ADDED New Settings/Photo settings/"Save preview shots". Enables saving a short video alongside photos, containing shots from the moment before the photo was taken (requires Android 8+ and Camera2 API). Loading
app/src/main/java/net/sourceforge/opencamera/ui/ManualSeekbars.java +2 −2 Original line number Diff line number Diff line Loading @@ -196,8 +196,8 @@ public class ManualSeekbars { seekbar_values.add(exposure); } // 1/50 to 1/10 (steps of 5) for(int i=50;i>=10;i-=5) { // 1/50 to 1/15 (steps of 5) for(int i=50;i>=15;i-=5) { long exposure = 1000000000L/i; if( exposure > min_exposure_time && exposure < max_exposure_time ) seekbar_values.add(exposure); Loading