Skip to content

Commit

Permalink
See release_notes.md for V2023.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rmcanany committed May 13, 2023
1 parent f07e4f4 commit 0d1b7a4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 53 deletions.
45 changes: 0 additions & 45 deletions My Project/Form1.FileHelperFunctions.vb
Original file line number Diff line number Diff line change
Expand Up @@ -84,56 +84,15 @@ Partial Class Form1
Source.SubItems.Item(1).Text,
ActiveFileExtensionsList,
CheckBoxDraftAndModelSameName.Checked))
'If RadioButtonTLABottomUp.Checked Then
' 'tmpFoundFiles.AddRange(TLAU.GetLinks("BottomUp", tmpFolder,
' ' Source.SubItems.Item(1).Text,
' ' ActiveFileExtensionsList))
' tmpFoundFiles.AddRange(TLAU.GetLinksBottomUp(tmpFolder,
' Source.SubItems.Item(1).Text,
' ActiveFileExtensionsList,
' CheckBoxDraftAndModelSameName.Checked))
'Else
' 'tmpFoundFiles.AddRange(TLAU.GetLinks("TopDown", tmpFolder,
' ' Source.SubItems.Item(1).Text,
' ' ActiveFileExtensionsList,
' ' Report:=CheckBoxTLAReportUnrelatedFiles.Checked))
' tmpFoundFiles.AddRange(TLAU.GetLinksTopDown(tmpFolders,
' Source.SubItems.Item(1).Text,
' ActiveFileExtensionsList,
' Report:=CheckBoxTLAReportUnrelatedFiles.Checked))
'End If

Next
Else
Dim TLAU As New TopLevelAssemblyUtilities(Me)
tmpFoundFiles.AddRange(TLAU.GetLinksTopDown(tmpFolders,
Source.SubItems.Item(1).Text,
ActiveFileExtensionsList,
Report:=CheckBoxTLAReportUnrelatedFiles.Checked))



End If

'For Each tmpFolder As String In tmpFolders

' Dim TLAU As New TopLevelAssemblyUtilities(Me)

' TextBoxStatus.Text = "Finding all linked files. This may take some time."

' If RadioButtonTLABottomUp.Checked Then
' tmpFoundFiles.AddRange(TLAU.GetLinks("BottomUp", tmpFolder,
' Source.SubItems.Item(1).Text,
' ActiveFileExtensionsList))
' Else
' tmpFoundFiles.AddRange(TLAU.GetLinks("TopDown", tmpFolder,
' Source.SubItems.Item(1).Text,
' ActiveFileExtensionsList,
' Report:=CheckBoxTLAReportUnrelatedFiles.Checked))
' End If

'Next

FoundFiles = CType(tmpFoundFiles, IReadOnlyCollection(Of String))

TextBoxStatus.Text = ""
Expand All @@ -154,10 +113,6 @@ Partial Class Form1
ActiveFileExtensionsList,
CheckBoxDraftAndModelSameName.Checked))

'tmpFoundFiles.AddRange(TLAU.GetLinks("BottomUp", "",
' Source.SubItems.Item(1).Text,
' ActiveFileExtensionsList))

FoundFiles = CType(tmpFoundFiles, IReadOnlyCollection(Of String))

TextBoxStatus.Text = ""
Expand Down
2 changes: 1 addition & 1 deletion My Project/Form1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ Public Class Form1
Dim EndIdx As Integer = Len(LinkLabelGitHubReadme.Text) - 1
LinkLabelGitHubReadme.Links.Add(StartIdx, EndIdx, "https://github.com/rmcanany/SolidEdgeHousekeeper#readme")

Me.Text = "Solid Edge Housekeeper 2023.2.1"
Me.Text = "Solid Edge Housekeeper 2023.3"

new_CheckBoxFileSearch.Checked = False
new_ComboBoxFileSearch.Enabled = False
Expand Down
2 changes: 0 additions & 2 deletions My Project/TopLevelAssemblyUtilities.vb
Original file line number Diff line number Diff line change
Expand Up @@ -406,8 +406,6 @@ Public Class TopLevelAssemblyUtilities

Dim TLADoc As DesignManager.Document



' Passing in TopLevelFolder = "" signifies a bare top level assy. Don't need an indexed drive for that case.
If Not TopLevelFolder = "" Then
IndexedDrives = GetIndexedDrives()
Expand Down
11 changes: 6 additions & 5 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ of yours. Do not run it on production work without testing on backups first.
Feel free to report bugs and/or ideas for improvement on the
[**Solid Edge Forum**](https://community.sw.siemens.com/s/topic/0TO4O000000MihiWAC/solid-edge)

## V2023.2 Enhancements/Fixes
## V2023.3 Enhancements/Fixes

### Property Find/Replace

Expand Down Expand Up @@ -43,7 +43,7 @@ Added a regular expression comparison operator, `regex_match`.
### Top Level Assembly Search

Added a search option for Draft files with the same name as the
model (Thank you for all the input **@n0minus38, @KennyG, @Alex_H, @bshand,**
model (Thank you for input **@n0minus38, @KennyG, @Alex_H, @bshand,**
**@Nosybottle, @wku, @nate.arinta5649**). In a test on a
small top level assembly and a top level folder with 20k files,
the new option completed a search in 0.3 minutes. A top-down
Expand All @@ -59,9 +59,10 @@ cases. (Thank you **@n0minus38**)

### File List Out Of Date

Added a flag to detect when the file list becomes out of date.
It works by tracking any change to the file selection or filter inputs.
Added a visual indicator -- the Update Button turns orange.
Added a flag to detect when the file list goes out of date.
It is set when any change occurs to the file selection or filter inputs.
As a visual indicator, the Update Button turns orange.

Added a check to ensure the file list is
up to date before processing can begin.

Expand Down

0 comments on commit 0d1b7a4

Please sign in to comment.