From fe48ea7dcea0ce7e95907f905a92e633cd3076d8 Mon Sep 17 00:00:00 2001 From: Luiz Henrique Cassettari Date: Wed, 22 Jan 2025 10:40:52 -0300 Subject: [PATCH 1/4] Update `UseConsoleLog` --- Directory.Build.props | 2 +- README.md | 6 +++--- ricaun.Revit.DA/DesignApplication.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 0fd18ad..cbb99f6 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,5 +1,5 @@ - 1.0.0-beta.5 + 1.0.0-beta.6 \ No newline at end of file diff --git a/README.md b/README.md index 9f854bc..538686b 100644 --- a/README.md +++ b/README.md @@ -83,11 +83,11 @@ public override void OnStartup() #### UseConsoleLog -The `UseConsoleLog` is `false` by default to disable/enable the console log for the internal `DesignApplication` methods. +The `UseConsoleLog` is `true` by default to disable/enable the console log for the internal `DesignApplication` methods. ```C# public class App : DesignApplication { - public override bool UseConsoleLog => true; // false by default + public override bool UseConsoleLog => false; // true by default } ``` @@ -115,7 +115,7 @@ public class App : DesignApplication The `ricaun.Revit.DA.Tests` test project requires some environment variables with the APS configuration to enable running Design Automation for Revit and test the `ricaun.Revit.DA.Example`. -The project use the package [Autodesk.Forge.Oss.DesignAutomation](https://github.com/ricaun-io/forge-api-dotnet-oss.design.automation) with the `APS_CLIENT_ID` and `APS_CLIENT_SECRET`. +The project use the package [Autodesk.Forge.Oss.DesignAutomation](https://github.com/ricaun-io/forge-api-dotnet-oss.design.automation) with the environment variables `APS_CLIENT_ID` and `APS_CLIENT_SECRET`. ``` APS_CLIENT_ID= diff --git a/ricaun.Revit.DA/DesignApplication.cs b/ricaun.Revit.DA/DesignApplication.cs index 078ab31..98f8c43 100644 --- a/ricaun.Revit.DA/DesignApplication.cs +++ b/ricaun.Revit.DA/DesignApplication.cs @@ -25,8 +25,8 @@ public abstract class DesignApplication : IExternalDBApplication, IDesignAutomat /// /// Gets a value indicating whether to use console logging for the internal methods. /// - /// The default value is 'false'. - public virtual bool UseConsoleLog => false; + /// The default value is 'true'. + public virtual bool UseConsoleLog => true; /// /// Gets the controlled application. /// From 4f43966ccfcfd1d880a7bdefb8542c416d7eb86f Mon Sep 17 00:00:00 2001 From: Luiz Henrique Cassettari Date: Wed, 22 Jan 2025 11:30:59 -0300 Subject: [PATCH 2/4] Prerelease rc --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index cbb99f6..1261f50 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,5 +1,5 @@ - 1.0.0-beta.6 + 1.0.0-rc \ No newline at end of file From 92de2270c0732aaff04479cfcb4a3375bc55d614 Mon Sep 17 00:00:00 2001 From: Luiz Henrique Cassettari Date: Wed, 22 Jan 2025 11:56:23 -0300 Subject: [PATCH 3/4] Update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 538686b..6741bd7 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ The main feature of this library is to fix some issues and limitations from the ## DesignApplication -The `DesignApplication` is a base class with some abstractions to help you to execute Design Automation for Revit. +The `DesignApplication` is a base class with the `IExternalDBApplication` interface and some abstractions to help you to execute Design Automation for Revit. ```C# public class App : DesignApplication From 940abe8448df66e12a55cb4039350843e941c3d4 Mon Sep 17 00:00:00 2001 From: Luiz Henrique Cassettari Date: Wed, 22 Jan 2025 11:56:38 -0300 Subject: [PATCH 4/4] Release 1.0.0 --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 1261f50..c0a4c3a 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,5 +1,5 @@ - 1.0.0-rc + 1.0.0 \ No newline at end of file