From b9bc820ec25758da433f1ba7526a5a9f5fa27828 Mon Sep 17 00:00:00 2001 From: Max Hedge Date: Mon, 12 Jan 2015 22:58:00 +0000 Subject: [PATCH] Update version to 1.8 (binaries for 1.8 on GitHub are correct, but the label is wrong, should point to this rev) --- .../Enums and Utility Classes/RegulatedNoiseSettings.cs | 2 +- RegulatedNoise/Form1.resx | 8 +++++++- RegulatedNoise/Ocr/Calibration/OcrCalibratorTab.cs | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/RegulatedNoise/Enums and Utility Classes/RegulatedNoiseSettings.cs b/RegulatedNoise/Enums and Utility Classes/RegulatedNoiseSettings.cs index d10ec2f..babc4e4 100644 --- a/RegulatedNoise/Enums and Utility Classes/RegulatedNoiseSettings.cs +++ b/RegulatedNoise/Enums and Utility Classes/RegulatedNoiseSettings.cs @@ -13,7 +13,7 @@ namespace RegulatedNoise [Serializable] public class RegulatedNoiseSettings { - public readonly decimal Version = 1.73m; + public readonly decimal Version = 1.8m; public string ProductsPath = ""; public string GamePath = ""; //Should Replace ProductsPath by always contain the newest FORC-FDEV dir. diff --git a/RegulatedNoise/Form1.resx b/RegulatedNoise/Form1.resx index 690ff8f..623c1f5 100644 --- a/RegulatedNoise/Form1.resx +++ b/RegulatedNoise/Form1.resx @@ -1499,7 +1499,13 @@ - v1.73 + v1.8 +* Add MRmP's editable calibration system +* Add magnifier for calibration purposes +* Remove incredibly-dumb bug that has been eating the spaces in station names... d'oh... +* Check for empty string from EDDN, and at least don't crash on general malformed data + +v1.73 * Update Station.csv and Elite.json. * Swap the Levenshtein algorithm for one that works (!) and tweak parameters it compares to * Fix button on station-to-station tab diff --git a/RegulatedNoise/Ocr/Calibration/OcrCalibratorTab.cs b/RegulatedNoise/Ocr/Calibration/OcrCalibratorTab.cs index 137b8cc..95d5c48 100644 --- a/RegulatedNoise/Ocr/Calibration/OcrCalibratorTab.cs +++ b/RegulatedNoise/Ocr/Calibration/OcrCalibratorTab.cs @@ -318,6 +318,7 @@ private void Btn_calibration_reset_Click(object sender, EventArgs e) DrawCalibrationPoints(calibrations); FillRawData(); pb_calibratorBox.Refresh(); + Form1.OcrCalibrator.SaveCalibration(); return; }