Skip to content

Commit

Permalink
Merge pull request #50 from ricaun-io/develop
Browse files Browse the repository at this point in the history
Version 1.3.6
  • Loading branch information
ricaun authored Aug 30, 2024
2 parents 1230bce + 83c06ac commit c074e0b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.3.6] / 2024-08-30
### TestAdapter
- Remove log in the `LocalFileExists` in the `ApplicationUtils`.

## [1.3.5] / 2024-07-22 - 2024-08-28
### Features
- Update `Application` images to support `light` and `dark` theme.
Expand Down Expand Up @@ -447,6 +451,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- [x] TestsFail

[vNext]: ../../compare/1.0.0...HEAD
[1.3.6]: ../../compare/1.3.5...1.3.6
[1.3.5]: ../../compare/1.3.4...1.3.5
[1.3.4]: ../../compare/1.3.3...1.3.4
[1.3.3]: ../../compare/1.3.2...1.3.3
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.3.5</Version>
<Version>1.3.6</Version>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions ricaun.RevitTest.TestAdapter/Services/ApplicationUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ private static bool LocalFileExists(string filePath, out string localFilePath)
var currentDirectory = Directory.GetCurrentDirectory();
localFilePath = Path.Combine(currentDirectory, filePath);
localFilePath = new FileInfo(localFilePath).FullName;
AdapterLogger.Logger.Debug($"Application LocalFileCheck: {localFilePath}");
AdapterLogger.Logger.DebugOnlyLocal($"Application LocalFileCheck: {localFilePath}");
if (File.Exists(localFilePath))
{
AdapterLogger.Logger.DebugOnlyLocal($"Download LocalFileCheck: {localFilePath}");
AdapterLogger.Logger.Debug($"Application LocalFileCheck: {localFilePath}");
return true;
}
}
Expand Down

0 comments on commit c074e0b

Please sign in to comment.