Skip to content

Commit

Permalink
prepare version 1.0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
msarilar committed Jun 4, 2017
1 parent aeecd8f commit 7c0105b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
6 changes: 5 additions & 1 deletion EDEngineer.Models/Blueprint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,11 @@ public bool Ignored
get { return ignored; }
set
{
if (value == ignored) return;
if (value == ignored)
{
return;
}

ignored = value;
OnPropertyChanged();
}
Expand Down
2 changes: 1 addition & 1 deletion EDEngineer/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<value>True</value>
</setting>
<setting name="Version" serializeAs="String">
<value>1.0.7.5</value>
<value>1.0.7.7</value>
</setting>
<setting name="WindowWidth" serializeAs="String">
<value>0</value>
Expand Down
4 changes: 2 additions & 2 deletions EDEngineer/EDEngineer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
<WebPage>publish.htm</WebPage>
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
<ApplicationRevision>6</ApplicationRevision>
<ApplicationVersion>1.0.7.6</ApplicationVersion>
<ApplicationRevision>7</ApplicationRevision>
<ApplicationVersion>1.0.7.7</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down
2 changes: 1 addition & 1 deletion EDEngineer/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion EDEngineer/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="Version" Type="System.String" Scope="User">
<Value Profile="(Default)">1.0.7.5</Value>
<Value Profile="(Default)">1.0.7.7</Value>
</Setting>
<Setting Name="WindowWidth" Type="System.Double" Scope="User">
<Value Profile="(Default)">0</Value>
Expand Down
7 changes: 0 additions & 7 deletions EDEngineer/Resources/Data/localization.json
Original file line number Diff line number Diff line change
Expand Up @@ -529,13 +529,6 @@
"ru": "Теплоотводная катапульта",
"pl": "Heat Sink Launcher"
},
"Frame Shift Wake Scanner": {
"es": "Escáner de Estelas de Distorsión",
"de": "FS-Sogwolkenscanner",
"fr": "Scanner de sillages FSD",
"ru": "Сканер следа РСД",
"pl": "Frame Shift Wake Scanner"
},
"Pulse Laser": {
"es": "Láser de Pulso",
"de": "Impulslaser",
Expand Down
4 changes: 4 additions & 0 deletions EDEngineer/Resources/Data/releaseNotes.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
[
{
"Version": "1.0.7.7",
"Content": "* Merged two different categories of blueprint that were supposed to be the same (Frame Shift Wake Scanner and Wake Scanner ; Wake Scanner is the final name). Thanks to @Velak for spotting the issue and fixing it!\r\n\r\n* German localization completed thanks to @nepomuk16321!"
},
{
"Version": "1.0.7.5",
"Content": "* New filter in the Ignored/Favourites category to show blueprints included in the shopping list\r\n* Various performance enhancements\r\n\r\n* Fixed an issue for users who use high DPI screens when saving the window position\r\n\r\n* Full russian translation provided by @VChet !"
Expand Down

0 comments on commit 7c0105b

Please sign in to comment.