Skip to content

Commit

Permalink
Move to version 4.0.4 + EX-1.1.1
Browse files Browse the repository at this point in the history
Version 4.0.4 :
- Try to fix issue when save editor is load at the first time, language is not selected ( issue #122 )

Version EX-1.1.1 :
- Try to fix issue when save editor is load at the first time, language is not selected ( issue #122 )
- Edit travelers status added (travelers on the port can return to the island)
  • Loading branch information
Brionjv committed Jun 23, 2022
1 parent 4e22c17 commit ff2bcbf
Show file tree
Hide file tree
Showing 32 changed files with 6,283 additions and 464 deletions.
4 changes: 3 additions & 1 deletion Project 4.0.0/Tomodachi-Life-Save-Editor/Form1.Designer.vb

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

174 changes: 87 additions & 87 deletions Project 4.0.0/Tomodachi-Life-Save-Editor/Form1.resx

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions Project 4.0.0/Tomodachi-Life-Save-Editor/Form1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,9 @@ Public Class TL_SaveEditor
Select_music.SelectedItem = My.Settings.Parasetting_musicsel
Setting_Advhelp.Checked = My.Settings.Parasetting_advH
Setting_spesymb.Checked = My.Settings.Parasetting_specharc3ds
If My.Settings.Parasetting_language = Nothing Then
Select_language.SelectedItem = Select_language.Items.Item(0)
End If
Catch ex As Exception
End Try
Selectlanguage()
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
20 changes: 16 additions & 4 deletions Project EX/Tomodachi Life Save Editor/TLSE_hub.vb
Original file line number Diff line number Diff line change
Expand Up @@ -384,11 +384,20 @@ Public Class TLSE_hub
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
If Filever_text.Text = "JP" Then
If Select_language.SelectedItem = Select_language.Items.Item(0) Then
TLSE_dialog.Text_TLSE_dialog.Text = "This feature is not available in your region"
ElseIf Select_language.SelectedItem = Select_language.Items.Item(1) Then
TLSE_dialog.Text_TLSE_dialog.Text = "Cette fonctionnalité n'est pas disponible dans votre région"
End If
TLSE_dialog.ShowDialog()
Else
If TLSE_logo_update.Visible = True Then
TLSE_travelers_status.TLSE_logo_update.Visible = True
End If
TLSE_travelers_status.Show()
Me.Close()
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
Expand All @@ -415,6 +424,9 @@ Public Class TLSE_hub
Setting_filepath.Checked = My.Settings.Para_path
Setting_spesymb.Checked = My.Settings.Para_spesymb
Select_language.SelectedItem = My.Settings.Para_language
If My.Settings.Para_language = Nothing Then
Select_language.SelectedItem = Select_language.Items.Item(0)
End If
Select_music.SelectedItem = My.Settings.Para_selmusic
Catch ex As Exception
End Try
Expand Down
241 changes: 86 additions & 155 deletions Project EX/Tomodachi Life Save Editor/TLSE_travelers_status.Designer.vb

Large diffs are not rendered by default.

216 changes: 0 additions & 216 deletions Project EX/Tomodachi Life Save Editor/TLSE_travelers_status.resx

Large diffs are not rendered by default.

Loading

0 comments on commit ff2bcbf

Please sign in to comment.