Skip to content

Commit

Permalink
Update version history and to-do
Browse files Browse the repository at this point in the history
  • Loading branch information
stringandstickytape committed Jan 5, 2015
1 parent 6895e04 commit 794afee
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion RegulatedNoise/Form1.Designer.cs

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

6 changes: 3 additions & 3 deletions RegulatedNoise/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2668,11 +2668,11 @@ private void PostJsonToEddn(CsvRow rowToPost)

if (RegulatedNoiseSettings.UseEddnTestSchema)
{
json = @"{""$schemaRef"": ""http://schemas.elite-markets.net/eddn/commodity/1/test"",""header"": {""uploaderID"": ""$0$"",""softwareName"": ""RegulatedNoise"",""softwareVersion"": ""v1.33""},""message"": {""buyPrice"": $2$,""timestamp"": ""$3$"",""stationStock"": $4$,""stationName"": ""$5$"",""systemName"": ""$6$"",""demand"": $7$,""sellPrice"": $8$,""itemName"": ""$9$""}}";
json = @"{""$schemaRef"": ""http://schemas.elite-markets.net/eddn/commodity/1/test"",""header"": {""uploaderID"": ""$0$"",""softwareName"": ""RegulatedNoise"",""softwareVersion"": ""v1.4""},""message"": {""buyPrice"": $2$,""timestamp"": ""$3$"",""stationStock"": $4$,""stationName"": ""$5$"",""systemName"": ""$6$"",""demand"": $7$,""sellPrice"": $8$,""itemName"": ""$9$""}}";
}
else
{
json = @"{""$schemaRef"": ""http://schemas.elite-markets.net/eddn/commodity/1"",""header"": {""uploaderID"": ""$0$"",""softwareName"": ""RegulatedNoise"",""softwareVersion"": ""v1.33""},""message"": {""buyPrice"": $2$,""timestamp"": ""$3$"",""stationStock"": $4$,""stationName"": ""$5$"",""systemName"": ""$6$"",""demand"": $7$,""sellPrice"": $8$,""itemName"": ""$9$""}}";
json = @"{""$schemaRef"": ""http://schemas.elite-markets.net/eddn/commodity/1"",""header"": {""uploaderID"": ""$0$"",""softwareName"": ""RegulatedNoise"",""softwareVersion"": ""v1.4""},""message"": {""buyPrice"": $2$,""timestamp"": ""$3$"",""stationStock"": $4$,""stationName"": ""$5$"",""systemName"": ""$6$"",""demand"": $7$,""sellPrice"": $8$,""itemName"": ""$9$""}}";
}


Expand Down Expand Up @@ -3604,7 +3604,7 @@ private void cbIncludeWithinRegionOfStation_SelectedIndexChanged(object sender,

private void bShowStationRestrictionAtStarchartDotClub_Click(object sender, EventArgs e)
{
Process.Start(@"http://starchart.club/map/route/" + CombinedNameToSystemName(tbCurrentSystemFromLogs.Text) + @"/" + CombinedNameToSystemName(cbIncludeWithinRegionOfStation.Text) + @"/@" + CombinedNameToSystemName(tbCurrentSystemFromLogs.Text));
Process.Start(@"http://starchart.club/map/route/" + CombinedNameToSystemName(cbIncludeWithinRegionOfStation.Text) + @"/" + CombinedNameToSystemName(tbCurrentSystemFromLogs.Text) + @"/@" + CombinedNameToSystemName(cbIncludeWithinRegionOfStation.Text));
}
}
}
11 changes: 7 additions & 4 deletions RegulatedNoise/Form1.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,8 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="textBox2.Text" xml:space="preserve">
<value>* matching the closest of "HIGH/MED/LOW"
* Can it remember last selected station instead of always selecting the first in the list? (when SetupGUI is called)
<value>* Can it remember last selected station instead of always selecting the first in the list? (when SetupGUI is called)
* is there a way also to indicate if a station has medium or large landing docks?
* route-finding
* update system info json button?
* [steelyeyed] tickbox that means "this station buys even with zero demand"?
* [Treb42] Pause between OCR and Import
Expand Down Expand Up @@ -1502,7 +1500,12 @@
</value>
</data>
<data name="textBox1.Text" xml:space="preserve">
<value>v1.33
<value>v1.4
* Add "within x light years of arbitrary system"
* Add buttons linking to system maps and routes at http://starchart.info - with thanks to Biteketkergetek
* Goosem@n's fix

v1.33
* Fix station name needs a space when you rename it error
* Throw away exceptions when cloning main captured-screenshot bitmap for display purposes LOL
* Create Brainerous images directory if it doesn't exist
Expand Down

0 comments on commit 794afee

Please sign in to comment.