Skip to content

Commit

Permalink
ix Open readonly mistake with faceless
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed Feb 2, 2022
1 parent f2cf0d7 commit 4ccbf09
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AddInManager/Command/AddInManagerCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public Result Execute(ExternalCommandData commandData, ref string message, Eleme
{
StaticUtil.RegenOption = RegenerationOption.Manual;
StaticUtil.TransactMode = TransactionMode.ReadOnly;
return AddinManagerBase.Instance.ExecuteCommand(commandData, ref message, elements, true);
return AddinManagerBase.Instance.ExecuteCommand(commandData, ref message, elements, false);
}
}
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
- 2022-02-02 **1.1.2**
- Fix Open readonly mistake with faceless

- 2022-01-31 **1.1.1**
- Support inteactive with revit project when openning Addin Manager

Expand Down
2 changes: 1 addition & 1 deletion Installer/Installer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
const string projectName = "RevitAddinManager";
const string outputName = "RevitAddinManager";
const string outputDir = "output";
const string version = "1.1.1";
const string version = "1.1.2";

var fileName = new StringBuilder().Append(outputName).Append("-").Append(version);
var project = new Project
Expand Down

0 comments on commit 4ccbf09

Please sign in to comment.