Skip to content

Commit c074e0b

Browse files
authored
Merge pull request #50 from ricaun-io/develop
Version 1.3.6
2 parents 1230bce + 83c06ac commit c074e0b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [1.3.6] / 2024-08-30
8+
### TestAdapter
9+
- Remove log in the `LocalFileExists` in the `ApplicationUtils`.
10+
711
## [1.3.5] / 2024-07-22 - 2024-08-28
812
### Features
913
- Update `Application` images to support `light` and `dark` theme.
@@ -447,6 +451,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
447451
- [x] TestsFail
448452

449453
[vNext]: ../../compare/1.0.0...HEAD
454+
[1.3.6]: ../../compare/1.3.5...1.3.6
450455
[1.3.5]: ../../compare/1.3.4...1.3.5
451456
[1.3.4]: ../../compare/1.3.3...1.3.4
452457
[1.3.3]: ../../compare/1.3.2...1.3.3

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.3.5</Version>
3+
<Version>1.3.6</Version>
44
</PropertyGroup>
55
</Project>

ricaun.RevitTest.TestAdapter/Services/ApplicationUtils.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ private static bool LocalFileExists(string filePath, out string localFilePath)
155155
var currentDirectory = Directory.GetCurrentDirectory();
156156
localFilePath = Path.Combine(currentDirectory, filePath);
157157
localFilePath = new FileInfo(localFilePath).FullName;
158-
AdapterLogger.Logger.Debug($"Application LocalFileCheck: {localFilePath}");
158+
AdapterLogger.Logger.DebugOnlyLocal($"Application LocalFileCheck: {localFilePath}");
159159
if (File.Exists(localFilePath))
160160
{
161-
AdapterLogger.Logger.DebugOnlyLocal($"Download LocalFileCheck: {localFilePath}");
161+
AdapterLogger.Logger.Debug($"Application LocalFileCheck: {localFilePath}");
162162
return true;
163163
}
164164
}

0 commit comments

Comments
 (0)