Skip to content

Commit

Permalink
Bugfix Bracketing order - Release 1.1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
emanueltilly committed Mar 11, 2021
1 parent d56fafb commit 03a3f3b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ShotLog/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private void KeyEvent(object sender, KeyEventArgs e) //Keyup Event
//UPDATE GUI FROM DATA OBJECT
private void LoadGUIfromData()
{
this.Text = (data.projectName + " - ShotLog 1.1.0.2");
this.Text = (data.projectName + " - ShotLog 1.1.0.3");
projectName.Text = data.projectName;
usePhotometrics.Checked = data.photometricDataEnabled;

Expand Down
8 changes: 4 additions & 4 deletions ShotLog/ProjectData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -517,12 +517,12 @@ int stillShutterspeed
case "0-+":
Console.WriteLine("Bracket order: " + stillsBracketOrder);
exposureNames[0] = "Normal";
exposureNames[1] = (stillsBracketSteps.ToString() + " stop over");
exposureNames[2] = (stillsBracketSteps.ToString() + " stop under");
exposureNames[2] = (stillsBracketSteps.ToString() + " stop over");
exposureNames[1] = (stillsBracketSteps.ToString() + " stop under");

exposureSteps[0] = stillsShutterspeedBase;
exposureSteps[2] = (stillsShutterspeedBase * (stillsBracketSteps * 2));
exposureSteps[1] = (RecursiveDivision(stillsShutterspeedBase, stillsBracketSteps));
exposureSteps[1] = (stillsShutterspeedBase * (stillsBracketSteps * 2));
exposureSteps[2] = (RecursiveDivision(stillsShutterspeedBase, stillsBracketSteps));
break;

case "-0+":
Expand Down
4 changes: 2 additions & 2 deletions ShotLog/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.1.0.3")]
[assembly: AssemblyFileVersion("1.1.0.3")]
[assembly: NeutralResourcesLanguage("en")]
2 changes: 1 addition & 1 deletion ShotLog/ShotLog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<ErrorReportUrl>https://github.com/emanueltilly/shotlog</ErrorReportUrl>
<TargetCulture>en</TargetCulture>
<ProductName>ShotLog</ProductName>
<ApplicationRevision>3</ApplicationRevision>
<ApplicationRevision>4</ApplicationRevision>
<ApplicationVersion>1.1.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
Expand Down

0 comments on commit 03a3f3b

Please sign in to comment.