Skip to content

Commit

Permalink
Built-in action help, bug fixes, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
MnFeN authored and MnFeN committed Mar 28, 2024
1 parent 11f60c8 commit bb0e928
Show file tree
Hide file tree
Showing 33 changed files with 3,420 additions and 1,726 deletions.
194 changes: 157 additions & 37 deletions Source/Triggernometry/Action.cs

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions Source/Triggernometry/ActionProps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ public enum TableVariableOpEnum
Copy,
Append,
SortLine,
GetAllEntities,
UnsetAll,
UnsetRegex,
}
Expand All @@ -95,6 +96,8 @@ public enum DictVariableOpEnum
Filter,
Merge,
MergeHard,
GetEntityByName,
GetEntityById,
UnsetAll,
UnsetRegex,
}
Expand Down Expand Up @@ -1549,6 +1552,24 @@ public string LogProcess
}
}

internal bool _LogProcessACT { get; set; } = false;
[XmlAttribute]
public string LogProcessACT
{
get
{
if (_LogProcessACT == false)
{
return null;
}
return _LogProcessACT.ToString();
}
set
{
_LogProcessACT = Boolean.Parse(value);
}
}

internal LogMessageEnum _LogLevel { get; set; } = LogMessageEnum.Error;
[XmlAttribute]
public string LogLevel
Expand Down
230 changes: 121 additions & 109 deletions Source/Triggernometry/Context.cs

Large diffs are not rendered by default.

164 changes: 158 additions & 6 deletions Source/Triggernometry/CustomControls/ActionViewer.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bb0e928

Please sign in to comment.