Skip to content

Commit

Permalink
Fixed bug with maximum opened aperture.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rambalac committed Apr 15, 2017
1 parent 5214464 commit 587cd74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Core/Camera/Lumix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ private void UpdateCurrentApertures()

var newCurrentApertures = new List<CameraMenuItem256>(MenuSet.Apertures.Count);
var opentext = CameraParser.ApertureBinToText(open);
newCurrentApertures.Add(new CameraMenuItem256(open.ToString(), opentext, "setsetting", "shtrspeed", open));
newCurrentApertures.Add(new CameraMenuItem256(open.ToString(), opentext, "setsetting", "focal", open));
newCurrentApertures.AddRange(MenuSet.Apertures.Where(a => a.IntValue >= open && a.Text != opentext && (LensInfo == null || a.IntValue <= LensInfo.ClosedAperture)));
if (newCurrentApertures.Count != CurrentApertures.Count ||
newCurrentApertures.First().Value != CurrentApertures.First().Value)
Expand Down
2 changes: 1 addition & 1 deletion GMaster/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="51338Rambalac.GMaster" Publisher="CN=92765C0E-C69D-491B-9315-91859F5319B9" Version="1.7.6.0" />
<Identity Name="51338Rambalac.GMaster" Publisher="CN=92765C0E-C69D-491B-9315-91859F5319B9" Version="1.7.7.0" />
<mp:PhoneIdentity PhoneProductId="19ca5020-d17a-4012-ad2c-663f57d568c7" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>GMaster</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion GMaster/_pkginfo.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
E:\Projects\GMaster\GMaster\bin\ARM\Release\Upload\GMaster_1.7.6.0\GMaster_1.7.6.0_x86_x64_arm.appxbundle
E:\Projects\GMaster\GMaster\bin\ARM\Release\Upload\GMaster_1.7.7.0\GMaster_1.7.7.0_x86_x64_arm.appxbundle

0 comments on commit 587cd74

Please sign in to comment.