Skip to content

Commit

Permalink
Merge pull request #128 from mcrossley/master
Browse files Browse the repository at this point in the history
b3152
  • Loading branch information
mcrossley authored Oct 26, 2021
2 parents 0a86aca + c34f9ec commit 86c7a91
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CumulusMX/CumulusMX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
<Reference Include="BouncyCastle.Crypto, Version=1.8.10.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
<HintPath>..\packages\Portable.BouncyCastle.1.8.10\lib\net40\BouncyCastle.Crypto.dll</HintPath>
</Reference>
<Reference Include="FluentFTP, Version=35.0.5.0, Culture=neutral, PublicKeyToken=f4af092b1d8df44f, processorArchitecture=MSIL">
<HintPath>..\packages\FluentFTP.35.0.5\lib\net45\FluentFTP.dll</HintPath>
<Reference Include="FluentFTP, Version=32.3.1.0, Culture=neutral, PublicKeyToken=f4af092b1d8df44f, processorArchitecture=MSIL">
<HintPath>..\packages\FluentFTP.32.3.1\lib\net45\FluentFTP.dll</HintPath>
</Reference>
<Reference Include="HidSharp, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\HidSharp.2.1.0\lib\net35\HidSharp.dll</HintPath>
Expand Down
3 changes: 2 additions & 1 deletion CumulusMX/DavisWllStation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2979,7 +2979,8 @@ private void GetAvailableStationIds(bool logToConsole = false)
{
responseBody = response.Content.ReadAsStringAsync().Result;
responseCode = (int)response.StatusCode;
cumulus.LogDebugMessage($"WLLStations: WeatherLink API Response: {responseCode}: {responseBody}");
var resp = System.Text.RegularExpressions.Regex.Replace(responseBody, "user_email\":\"[^\"]*\"", "user_email\":\"<<email>>\"");
cumulus.LogDebugMessage($"WLLStations: WeatherLink API Response: {responseCode}: {resp}");
}

if (responseCode != 200)
Expand Down
6 changes: 3 additions & 3 deletions CumulusMX/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Cumulus MX")]
[assembly: AssemblyDescription("Version 3.13.5 - Build 3151")]
[assembly: AssemblyDescription("Version 3.13.6 - Build 3152")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Cumulus MX")]
Expand All @@ -32,5 +32,5 @@
// 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("3.13.5.3151")]
[assembly: AssemblyFileVersion("3.13.5.3151")]
[assembly: AssemblyVersion("3.13.6.3152")]
[assembly: AssemblyFileVersion("3.13.6.3152")]
2 changes: 1 addition & 1 deletion CumulusMX/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="EmbedIO" version="2.1.1" targetFramework="net452" />
<package id="FluentFTP" version="35.0.5" targetFramework="net452" />
<package id="FluentFTP" version="32.3.1" targetFramework="net452" />
<package id="HidSharp" version="2.1.0" targetFramework="net452" />
<package id="linqtotwitter" version="3.1.1" targetFramework="net45" />
<package id="MailKit" version="2.15.0" targetFramework="net452" />
Expand Down
11 changes: 6 additions & 5 deletions Updates.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3.13.5 - b3151
3.13.6 - b3152
——————————————
- Fix: HTTP Ecowitt decode of leaf wetness sensors again
- Fix: HTTP Ecowitt/Ambient - Remove soil temperature from extra sensor settings
Expand All @@ -9,21 +9,22 @@

- New: Program Settings now allows you to over-ride the default date separator string for your locale. This will be useful for those locales that under
Mono now use a date separator such as ". " and you want it to use "."
BEWARE, there may be implications with your existing data files rendering unreadable by CMX if you change this value
Note: Unlike most settings the string MUST be contained in double quotes (because it can end with a space)
Note: The over-ride is ignored if you change the overall locale CMX - and the over-ride is reset to the new locales default string

- Change: Cumulus will now still parse the dates/times in dayfile.txt and monthly logs even if the locale changes
- Change: FO Station will now ignore UV-I values greater than 16

- Updated libraries
FluentFTP
MailKit
MimeKit
MySqlConnector



3.13.5 - b3151
——————————————
WITHDRWAN due to issues with FluentFTP and Mono when connecting to FTP servers that allow newer EC encryption algorithms


3.13.4 - b3149
——————————————
- Fix: Dayfile editor MySQL update statement failing and knock on effects
Expand Down

0 comments on commit 86c7a91

Please sign in to comment.