mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 03:57:32 +00:00
Merge remote-tracking branch 'origin/ConnectPro_v1.7' into ConnectPro_v1.8
This commit is contained in:
commit
75404e8b20
2 changed files with 6 additions and 2 deletions
|
|
@ -147,7 +147,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
- Added methods for deserializing an XML array
|
- Added methods for deserializing an XML array
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Fixed a bug where ANSI color encoded strings with percentages were being scrambled
|
|
||||||
- Improvements to JSON DateTime parsing, particularly in Net Standard
|
- Improvements to JSON DateTime parsing, particularly in Net Standard
|
||||||
|
|
||||||
## [9.7.0] - 2019-08-15
|
## [9.7.0] - 2019-08-15
|
||||||
|
|
@ -158,6 +157,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- JSON dict serialization serializes keys instead of converting to property name
|
- JSON dict serialization serializes keys instead of converting to property name
|
||||||
|
- Fixed a bug where ANSI color encoded strings with percentages were being scrambled
|
||||||
|
|
||||||
## [9.6.0] - 2019-07-03
|
## [9.6.0] - 2019-07-03
|
||||||
### Added
|
### Added
|
||||||
|
|
@ -232,6 +232,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
- Better VC-4 support for IcdConsole
|
- Better VC-4 support for IcdConsole
|
||||||
- JSON refactoring for simpler deserialization
|
- JSON refactoring for simpler deserialization
|
||||||
|
|
||||||
|
## [8.9.2] - 2020-07-28
|
||||||
|
### Changed
|
||||||
|
- StringExtensions - fixed an issue with IsNumeric where empty strings would return true
|
||||||
|
|
||||||
## [8.9.1] - 2020-05-27
|
## [8.9.1] - 2020-05-27
|
||||||
### Changed
|
### Changed
|
||||||
- Changed ProcessorUtils to use CrestronEnvironment to retrive serial number - this fixes issues with new serial numbers that aren't deciaml TSIDs
|
- Changed ProcessorUtils to use CrestronEnvironment to retrive serial number - this fixes issues with new serial numbers that aren't deciaml TSIDs
|
||||||
|
|
|
||||||
|
|
@ -214,7 +214,7 @@ namespace ICD.Common.Utils.Extensions
|
||||||
if (extends == null)
|
if (extends == null)
|
||||||
throw new ArgumentNullException("extends");
|
throw new ArgumentNullException("extends");
|
||||||
|
|
||||||
return extends.All(char.IsDigit);
|
return extends.AnyAndAll(char.IsDigit);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue