Skip to content

Commit

Permalink
Mise à jour indices versions composants
Browse files Browse the repository at this point in the history
  • Loading branch information
fabricelacharme committed Dec 12, 2022
1 parent 1d8ce4e commit 916ab3e
Show file tree
Hide file tree
Showing 25 changed files with 581 additions and 556 deletions.
4 changes: 2 additions & 2 deletions AutoUpdater/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
[assembly: AssemblyVersion("1.0.0.2")]
[assembly: AssemblyFileVersion("1.0.0.2")]
4 changes: 2 additions & 2 deletions AzLyrics.Api/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut
// en utilisant '*', comme indiqué ci-dessous :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
4 changes: 2 additions & 2 deletions BallsControl/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut
// en utilisant '*', comme indiqué ci-dessous :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.2")]
[assembly: AssemblyFileVersion("1.0.0.2")]
[assembly: AssemblyVersion("1.0.0.3")]
[assembly: AssemblyFileVersion("1.0.0.3")]
4 changes: 2 additions & 2 deletions CDGNet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
4 changes: 2 additions & 2 deletions ColorSlider/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly : AssemblyVersion("1.0.0.4")]
[assembly : AssemblyFileVersion("1.0.0.4")]
[assembly : AssemblyVersion("1.0.0.5")]
[assembly : AssemblyFileVersion("1.0.0.5")]

4 changes: 2 additions & 2 deletions FlShell/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.5")]
[assembly: AssemblyFileVersion("1.0.0.5")]
[assembly: AssemblyVersion("1.0.0.6")]
[assembly: AssemblyFileVersion("1.0.0.6")]
4 changes: 2 additions & 2 deletions Hqub.MusicBrainz.API/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: AssemblyVersion("1.0.1.1")]
[assembly: AssemblyFileVersion("1.0.1.1")]

[assembly: InternalsVisibleTo("Hqub.MusicBrainz.API.Test")]
3 changes: 1 addition & 2 deletions Karaboss/Pages/SearchControl/SearchControl.Designer.cs

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

36 changes: 31 additions & 5 deletions Karaboss/Pages/SearchControl/SearchControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public enum SearchViewStyle
public delegate void ContentChangedEventHandler(object sender, string strContent);
public delegate void NavigateToEventHandler(Object sender, string path, string file); // Says to parent to navigate to this folder
public delegate void SongRootChangedEventHandler(Object sender, string path); // Warn aprent that song library has changed


public partial class SearchControl : UserControl
{
Expand Down Expand Up @@ -131,7 +131,9 @@ public Recording(string path)
private bool bSearchSongOnly = false;
private bool bChanged = false;


Button btnSearch;
Button btnClear;
Button btnSearchDir;

#region properties
Expand Down Expand Up @@ -1080,15 +1082,26 @@ protected override void OnLoad(EventArgs e)
Size = new Size(25, txtSearch.ClientSize.Height + 2),
Location = new Point(txtSearch.ClientSize.Width - 25, -1),
Cursor = Cursors.Default,
Image = Properties.Resources.Action_Search_icon,
Image = Properties.Resources.Action_Search_icon,
};

txtSearch.Controls.Add(btnSearch);

btnSearch.Click += new EventHandler(BtnSearch_Click);
btnSearch.Click += new EventHandler(btnSearch_Click);

// Send EM_SETMARGINS to prevent text from disappearing underneath the button
SendMessage(txtSearch.Handle, 0xd3, (IntPtr)2, (IntPtr)(btnSearch.Width << 16));

btnClear = new Button()
{
Size = new Size(25, txtSearch.ClientSize.Height + 2),
Location = new Point(txtSearch.ClientSize.Width - 50, -1),
Cursor = Cursors.Default,
Image = Properties.Resources.delete_icon,
};
txtSearch.Controls.Add(btnClear);
btnClear.Click += new EventHandler(btnClear_Click);


btnSearchDir = new Button() {
Size = new Size(25, txtSearchDir.ClientSize.Height + 2),
Expand Down Expand Up @@ -1142,11 +1155,24 @@ private void BtnSearchDir_Click(object sender, EventArgs e)
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void BtnSearch_Click(object sender, EventArgs e)
private void btnSearch_Click(object sender, EventArgs e)
{
BtnSearchMethod();
}


/// <summary>
/// Clear Search box
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnClear_Click(object sender, EventArgs e)
{
this.txtSearch.Clear();
txtSearch.Focus();
}



/// <summary>
/// Button: scan
/// </summary>
Expand Down
Loading

0 comments on commit 916ab3e

Please sign in to comment.