Skip to content

Commit

Permalink
version bump to v2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DineshSolanki committed Jun 23, 2020
1 parent 71838fb commit 6e4d559
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Folicon_Native/MainWindow.xaml.vb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Imports System.ComponentModel
Imports System.IO
Imports System.IO
Imports System.Net
Imports System.Net.NetworkInformation
Imports Xceed.Wpf.Toolkit
Expand Down Expand Up @@ -137,8 +136,9 @@ Class MainWindow
Next
Else 'Professional Mode
GetReadyForSearch()
Dim gPage As New ProSearchResultsDArt()
gPage.Owner = Me
Dim gPage As New ProSearchResultsDArt With {
.Owner = Me
}
gPage.ShowDialog()
If PickedListDataTable.Rows.Count > 0 Then
For i = 0 To PickedListDataTable.Rows.Count - 1
Expand Down Expand Up @@ -176,7 +176,7 @@ Class MainWindow
Private Async Function DoWorkOfDownloadAsync() As Task
SearchAndMakehbtn.IsEnabled = False
Await DownloadAndMakeIcons()
'BackgrundWorker1.RunWorkerAsync()

End Function

Private Sub RadioButton_Checked_1(sender As Object, e As RoutedEventArgs)
Expand Down Expand Up @@ -311,12 +311,12 @@ Class MainWindow

Private Sub MenuItem_Click(sender As Object, e As RoutedEventArgs)
Dim about As New Gat.Controls.About() With {
.Title = "FoliCon v2.1.0",
.Title = "FoliCon v2.2.0",
.ApplicationLogo = New BitmapImage(New Uri("\Model\folicon Icon.ico", UriKind.Relative)),
.Description = "FoliCon is more than just a typical folder Icon changer" & vbCrLf _
& "It automates this task to a greater extent, it has two different modes for different designs of folder Icons," & vbCrLf _
& "and it can fetch 'Games,Movies, and shows' folder icons.",
.Version = "2.1.0",
.Version = "2.2.0",
.PublisherLogo = New BitmapImage(New Uri("\Model\folicon Icon.ico", UriKind.Relative)),
.AdditionalNotes = "Developed by Dinesh Solanki",
.Copyright = "GNU General Public License v3.0"}
Expand Down
6 changes: 3 additions & 3 deletions Folicon_Native/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Imports System.Windows

' Review the values of the assembly attributes

<Assembly: AssemblyTitle("FoliCon v2.1.0")>
<Assembly: AssemblyTitle("FoliCon v2.2.0")>
<Assembly: AssemblyDescription("FoliCon is more than just a typical folder Icon changer, It automates this task to a greater extent, it has two different modes for different designs of folder Icons, and it can fetch 'Games,Movies, and shows' folder icons.")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("Folicon - The ultimate folder icon customizer")>
Expand Down Expand Up @@ -55,5 +55,5 @@ Imports System.Windows
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("2.1.0.0")>
<Assembly: AssemblyFileVersion("2.1.0.0")>
<Assembly: AssemblyVersion("2.2.0.0")>
<Assembly: AssemblyFileVersion("2.2.0.0")>

0 comments on commit 6e4d559

Please sign in to comment.