Skip to content

Commit

Permalink
v1.13.2: Bug fixes and can now copy the current folder name in the Go…
Browse files Browse the repository at this point in the history
…ogle Drive form.
  • Loading branch information
moisespr123 committed Aug 12, 2019
1 parent c907212 commit 9145938
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 38 deletions.
2 changes: 1 addition & 1 deletion opus_gui/Form1.Designer.vb

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

82 changes: 47 additions & 35 deletions opus_gui/GoogleDriveForm.Designer.vb

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

5 changes: 5 additions & 0 deletions opus_gui/GoogleDriveForm.vb
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
GoBackButton.Enabled = True
End If
Me.Text = "Google Drive Browser - " + drive.currentFolderName
FolderName.Text = drive.currentFolderName
Catch
MessageBox.Show("Error loading Google Drive contents")
End Try
Expand Down Expand Up @@ -113,4 +114,8 @@
PopulateListBoxes(drive, drive.currentFolder, True)
End If
End Sub

Private Sub FolderName_Click(sender As Object, e As EventArgs) Handles FolderName.Click
Clipboard.SetText(drive.currentFolderName)
End Sub
End Class
4 changes: 2 additions & 2 deletions opus_gui/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.13.1.0")>
<Assembly: AssemblyFileVersion("1.13.1.0")>
<Assembly: AssemblyVersion("1.13.2.0")>
<Assembly: AssemblyFileVersion("1.13.2.0")>

0 comments on commit 9145938

Please sign in to comment.