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

Commit

Permalink
Bug fixes + full support for themes type 2 without background
Browse files Browse the repository at this point in the history
  • Loading branch information
exelix11 committed Aug 17, 2015
1 parent d1cf5e5 commit 2959e87
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 29 deletions.
7 changes: 4 additions & 3 deletions Form1.cs
Expand Up @@ -23,13 +23,13 @@ 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 = 4; /*for the update check the application doesn't count the version, but the release number on gbatemp
public static int APP_Public_version = 5; /*for the update check the application doesn't count the version, but the release number on gbatemp
1: First public yata+ version
2: Yata+ v1.1
3: Yata+ v1.2
4: Yata+ v1.3 (this one)
4: Yata+ v1.3
5,6,etc..: Future updates*/
public static string APP_STRING_version = "YATA+ v1.3 BETA";
public static string APP_STRING_version = "YATA+ v1.3.1 BETA";
public static int APP_SETT_SIZE_X = 656; //To remember the size
public static int APP_SETT_SIZE_Y = 625;
public static bool APP_export_both_screens = true;
Expand Down Expand Up @@ -1657,6 +1657,7 @@ void Wav2BCSTM(string input)
prc.StartInfo.UseShellExecute = false;
prc.Start();
prc.WaitForExit();
if (!File.Exists(Path.GetTempPath() + "tmp.bcstm")) return;
File.WriteAllBytes(sv.FileName, BRSTM_BCSTM_converter.Create_BCSTM(File.ReadAllBytes(Path.GetTempPath() + "tmp.bcstm")));
File.Delete(Path.GetTempPath() + "tmp.bcstm");
if (File.Exists(sv.FileName)) MessageBox.Show("Done !"); else MessageBox.Show("Error while converting the file, run the command in the cmd to check the output");
Expand Down
2 changes: 1 addition & 1 deletion Info_Forms/Credits.cs
Expand Up @@ -18,7 +18,7 @@ public Credits()

private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("Main changes from the previous version of YATA+:\r\n -Now the Theme setting window can be resized\r\n -The theme simulator now can render the home menu UI too\r\n -WAV -> BRSTM/BCSTM conversion\r\n -Now the folder back arrow can be edited\r\n -drag and drop supports file conversions");
MessageBox.Show("Main changes from the previous version of YATA+:\r\n -Fixed a bug in the theme simulator\r\n -Now the no background flag is supported for the mood-matrix type themes");
}

private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
Expand Down
18 changes: 2 additions & 16 deletions Info_Forms/FirstStart.Designer.cs

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

1 change: 0 additions & 1 deletion Info_Forms/FirstStart.cs
Expand Up @@ -36,7 +36,6 @@ private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs
private void FirstStart_Load(object sender, EventArgs e)
{
label3.Text = Form1.APP_STRING_version;
if (DateTime.Today.Day <= 15 && DateTime.Today.Month == 8) { label4.Text = "Also, in the same thread there is a opened poll, where you can vote if you want me to make some videos on how to use yata + ,hurry up because you can only vote until August 15"; } else { label4.ForeColor = Color.Black; }
}
}
}
10 changes: 2 additions & 8 deletions Info_Forms/FirstStart.resx
Expand Up @@ -125,15 +125,9 @@ If you never made a custom theme or you aren't so "expert" you should check out
this guide made by me for using YATA+,





Changes in this version of YATA+:
-Now the theme settings window is resizable
-The theme simulator can render most of the home menu UI (it's not 100% precise, use it just to see if the colors of the buttons are fine with the image )
-WAV -&gt; BRSTM/BCSTM conversion
-Now the folder back arrow can be edited
-Drag and drop now supports file conversions too (WAV -&gt; CWAV, BRSTM -&gt; WAV, etc...)
-Fixed a bug in the simulator
-Now the no background flag is supported for the mood-matrix type themes

Remember that this is still a beta, so it could crash or corrupt themes, be sure to have always a backup of the theme you are working on and to save often the file, for every problem, question or bug report, here is the official thread:
</value>
Expand Down

0 comments on commit 2959e87

Please sign in to comment.