Skip to content

Commit

Permalink
Update 26/05/2022
Browse files Browse the repository at this point in the history
  • Loading branch information
Brionjv committed May 26, 2022
1 parent 0fbd829 commit cb4e688
Show file tree
Hide file tree
Showing 132 changed files with 5,292 additions and 92 deletions.
1,172 changes: 1,131 additions & 41 deletions Project EX/Tomodachi Life Save Editor/My Project/Resources.Designer.vb

Large diffs are not rendered by default.

385 changes: 356 additions & 29 deletions Project EX/Tomodachi Life Save Editor/My Project/Resources.resx

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
185 changes: 169 additions & 16 deletions Project EX/Tomodachi Life Save Editor/TLSE_hub.Designer.vb

Large diffs are not rendered by default.

34 changes: 32 additions & 2 deletions Project EX/Tomodachi Life Save Editor/TLSE_hub.vb
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ Public Class TLSE_hub
End Sub

Private Sub Text_menu_travelersedit_Click(sender As Object, e As EventArgs) Handles Text_menu_travelersedit.Click

Hidemenu()
TLSE_menu_travelersedit.Visible = True
End Sub

Private Sub Text_menu_travelersedit_MouseMove(sender As Object, e As MouseEventArgs) Handles Text_menu_travelersedit.MouseMove
Expand Down Expand Up @@ -306,6 +307,19 @@ Public Class TLSE_hub
Icon_menu_miimanagement.Image = My.Resources.icon_menu_off
End Sub

Private Sub Icon_menu_travelersedit_Click(sender As Object, e As EventArgs) Handles Icon_menu_travelersedit.Click
Hidemenu()
TLSE_menu.Visible = True
End Sub

Private Sub Icon_menu_travelersedit_MouseMove(sender As Object, e As MouseEventArgs) Handles Icon_menu_travelersedit.MouseMove
Icon_menu_travelersedit.Image = My.Resources.icon_menu_on
End Sub

Private Sub Icon_menu_travelersedit_MouseLeave(sender As Object, e As EventArgs) Handles Icon_menu_travelersedit.MouseLeave
Icon_menu_travelersedit.Image = My.Resources.icon_menu_off
End Sub

Private Sub Text_menu_allmiis_Click(sender As Object, e As EventArgs) Handles Text_menu_allmiis.Click
If TLSE_logo_update.Visible = True Then
TLSE_manag_allmiis.TLSE_logo_update.Visible = True
Expand Down Expand Up @@ -361,7 +375,6 @@ Public Class TLSE_hub
TLSE_manag_travelers.Show()
Me.Close()
End Sub

Private Sub Text_menu_travelers_MouseMove(sender As Object, e As MouseEventArgs) Handles Text_menu_travelers.MouseMove
Menu_travelers.BackgroundImage = My.Resources.bbl_manag_travelers_act
End Sub
Expand All @@ -370,11 +383,27 @@ Public Class TLSE_hub
Menu_travelers.BackgroundImage = My.Resources.bbl_manag_travelers
End Sub

Private Sub Text_menu_travelersstatus_Click(sender As Object, e As EventArgs) Handles Text_menu_travelersstatus.Click
If TLSE_logo_update.Visible = True Then
TLSE_travelers_status.TLSE_logo_update.Visible = True
End If
TLSE_travelers_status.Show()
Me.Close()
End Sub
Private Sub Text_menu_travelersstatus_MouseMove(sender As Object, e As MouseEventArgs) Handles Text_menu_travelersstatus.MouseMove
Menu_travelersstatus.BackgroundImage = My.Resources.bbl_travelers_status_act
End Sub

Private Sub Text_menu_travelersstatus_MouseLeave(sender As Object, e As EventArgs) Handles Text_menu_travelersstatus.MouseLeave
Menu_travelersstatus.BackgroundImage = My.Resources.bbl_travelers_status
End Sub

Public Sub Hidemenu()
TLSE_menu.Visible = False
TLSE_menu_Miiedition.Visible = False
TLSE_menu_Itemsedition.Visible = False
TLSE_menu_miimanagement.Visible = False
TLSE_menu_travelersedit.Visible = False
End Sub

Private Sub TLSE_hub_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Expand Down Expand Up @@ -571,4 +600,5 @@ Public Class TLSE_hub
Private Sub TLSE_logo_update_Click(sender As Object, e As EventArgs) Handles TLSE_logo_update.Click
Process.Start("https://github.com/Brionjv/Tomodachi-Life-Save-Editor/releases")
End Sub

End Class

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

Loading

0 comments on commit cb4e688

Please sign in to comment.