Skip to content
This repository has been archived by the owner on Oct 21, 2019. It is now read-only.

Commit

Permalink
Update to 1.8
Browse files Browse the repository at this point in the history
Changelog:
-Added scrollbars in the theme settings window for PCs with small
screens, now that window can be resized
-Fixed loading themes with Cwav = null
-Some other minor fixes
  • Loading branch information
exelix11 committed Apr 25, 2016
1 parent d81ef41 commit 7d1c742
Show file tree
Hide file tree
Showing 8 changed files with 85 additions and 41 deletions.
10 changes: 5 additions & 5 deletions Form1.cs
Expand Up @@ -25,10 +25,10 @@ public partial class Form1 : Form
public static int APP_Move_buttons_colors = 10;
public static bool APP_First_Start = true; //if true this is the first start, else it isn't
public static bool APP_check_UPD = true;
public static int APP_Public_version = 10; /*for the update check the application doesn't count the version, but the release number on gbatemp
10: Yata+ v1.7 (this one)
11,12,etc..: Future updates*/
public static string APP_STRING_version = "YATA+ v1.7";
public static int APP_Public_version = 11; /*for the update check the application doesn't count the version, but the release number
11: Yata+ v1.8 (this one)
12,13,etc..: Future updates*/
public static string APP_STRING_version = "YATA+ v1.8";
public static string APP_STRING_FULL_version = "YATA+";
public static int APP_SETT_SIZE_X = 678; //To remember the size
public static int APP_SETT_SIZE_Y = 625;
Expand Down Expand Up @@ -360,7 +360,7 @@ private void loadList()
if (imgLens[i] == 0x8000 || i == 6) images.Add(getImage(imgOffs[i], imgLens[i], A8)); else images.Add(getImage(imgOffs[i], imgLens[i], i > 1 ? BGR888 : RGB565));
}
if (cwavOff > 0) cwav = getCWAV();
cwavLen = (uint)cwav.Length;
if (cwav == null) cwavLen = 0; else cwavLen = (uint)cwav.Length;
imageArray = images.ToArray();
imgListBoxLoaded = true;
updatePicBox(0);
Expand Down
4 changes: 3 additions & 1 deletion Info_Forms/Credits.Designer.cs

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

20 changes: 10 additions & 10 deletions Info_Forms/Credits.cs
Expand Up @@ -55,16 +55,6 @@ private void button2_Click(object sender, EventArgs e)
dlg.ShowDialog();
}

private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://gbatemp.net/threads/release-yet-another-theme-application-yata.379209/");
}

private void linkLabel5_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://gbatemp.net/threads/relase-yet-another-theme-application-plus-yata-3ds-theme-editor.393355/");
}

private void button3_Click(object sender, EventArgs e)
{
try
Expand Down Expand Up @@ -97,5 +87,15 @@ private void label3_Click(object sender, EventArgs e)
string date = new DateTime(0, DateTimeKind.Local).AddDays(Convert.ToInt32(build[2])).AddYears(1999).AddSeconds(Convert.ToInt32(build[3]) * 2).ToString();
MessageBox.Show("Build date: " + date);
}

private void linkLabel5_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://gbatemp.net/threads/relase-yet-another-theme-application-plus-yata-3ds-theme-editor.393355/");
}

private void linkLabel3_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://gbatemp.net/threads/release-yet-another-theme-application-yata.379209/");
}
}
}
4 changes: 2 additions & 2 deletions Info_Forms/FirstStart.Designer.cs

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

7 changes: 3 additions & 4 deletions Info_Forms/FirstStart.resx
Expand Up @@ -126,10 +126,9 @@ this guide made by me for using YATA+,


Changes in this version of YATA+:
-Faster startup: the update check is now done in background
-Added size checks for the CWAV chunk (sometimes if the section is too big the CWAVs won't play)
-Theme sender now sends the themes via FTP in the themes folder (or another one) in the sd without using zip files, so it doesn't require anymore the YATA+ theme installer
-Some other minor fixes in the simulator and the main window
-Added scrollbars in the theme settings window for PCs with small screens, now that window can be resized
-Fixed loading themes with Cwav = null
-Some other minor fixes

For every problem, question or bug report, here is the official thread:
</value>
Expand Down
6 changes: 3 additions & 3 deletions Properties/AssemblyInfo.cs
Expand Up @@ -8,10 +8,10 @@
[assembly: AssemblyTitle("YATA+")]
[assembly: AssemblyDescription("Yet Another Theme Application PLUS")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("Exelix11")]
[assembly: AssemblyProduct("YATA+")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("exelix11")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
Expand All @@ -31,4 +31,4 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.7.*")]
[assembly: AssemblyVersion("1.8.*")]
70 changes: 54 additions & 16 deletions Sett.Designer.cs

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

5 changes: 5 additions & 0 deletions Sett.cs
Expand Up @@ -635,5 +635,10 @@ private void CB_botDraw_SelectedIndexChanged(object sender, EventArgs e)
{

}

private void FormResize_end(object sender, EventArgs e)
{

}
}
}

0 comments on commit 7d1c742

Please sign in to comment.