Skip to content

Commit

Permalink
v.1.3.11.0, 2014-09-13, 23:05:42
Browse files Browse the repository at this point in the history
= Fix glitchy audio when volume boost lock is challenged by LOUD NOISES
+ Mixer test mode (if server address is blank in settings)
+ Tag reader: Support MusicBee and MediaMonkey
+ Automatically read sharekey from clipboard
~ Hide soundboard by rightclicking it
~ Fix website URL
  • Loading branch information
9001 committed Oct 12, 2015
1 parent b151104 commit 81f13a0
Show file tree
Hide file tree
Showing 9 changed files with 316 additions and 29 deletions.
24 changes: 23 additions & 1 deletion Loopstream/LSEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,29 @@ string esc(string raw)
protected void makeShouter()
{
logger.a("make shouter");
proc.PriorityClass = System.Diagnostics.ProcessPriorityClass.High;
proc.PriorityClass = System.Diagnostics.ProcessPriorityClass.AboveNormal;


if (string.IsNullOrEmpty(settings.host))
{
s = null;
rekick = 0;
stampee = 0;
stdin = pstdin;
stdout = pstdout;
stamps = new long[32];
chunks = new long[32];
long v = DateTime.UtcNow.Ticks / 10000;
for (int a = 0; a < stamps.Length; a++) stamps[a] = v;

System.Threading.Thread tr = new System.Threading.Thread(new System.Threading.ThreadStart(reader));
tr.Name = "LSEnc_Reader";
tr.Start();
System.Threading.Thread tc = new System.Threading.Thread(new System.Threading.ThreadStart(counter));
tc.Name = "LSEnc_Counter";
tc.Start();
return;
}

System.Net.Sockets.NetworkStream prepS;
string ver = Application.ProductVersion;
Expand Down
21 changes: 19 additions & 2 deletions Loopstream/LSSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -677,13 +677,13 @@ public void resetMetas()
LSMeta.Reader.WindowCaption,
"Foobar 2000 (window title)",
"foobar2000",
500,
200,
@" *(.*[^ ]) *( - foobar2000$|\[foobar2000 v([0-9\.]*)\]$)",
"{1}",
"utf-8",
false,
1,
0,
5,
"H4sIAAAAAAAEAHWRMU8DMQyF9/sVbzmJSlBVjGyoLVKHAoIyVR3Mna+JmksqJ9fj/j1OQAgGtsj2e++zszM24iwcOWG0zkGYWkxhEDyE8E5yu1gstOPbMCLZ5PgaGI1tDIY4kHMTogljRDOIsE+4l2RjAvkWuzw+r6pNlw1Bwqqx/gjS6ZhCj2S4z4ZBYL+GGkP+yN8Ev2PRBekpJdWrwCb0NMEHpQ5y0pCd0R1KhpriZb182m7Xj6v16o9LzDZ4TYpH0r5tcIXOivLOUJCXwQ29j6URuQlams2rZ8ek5j2dGHHQiEwq3IcLgy8sUzJ5LetLdlfuBhV39qj27Fol1o7X2nkqOWeKSbUf1CQ33VXVvqZytxo3OOzrwlof/qnnd/fzOZ+am6aNwgEAAA=="
),
new LSMeta(
Expand Down Expand Up @@ -870,6 +870,23 @@ public void resetMetas()
0,
"H4sIAAAAAAAEADWOsW7DMAxEd3/FbV0Cd++WFGinFBkCdJZlxiasiAZJw3W+vpKbHjjd3SN5UlmN1N4aVJ3lwSkFfLDSTX7wii8eRk/bX/wpMiTC+6hyp6b5ps7Y6R9+pufFODZVT2Mimg3LDB8JrqFnZ8mQGzriPKDnOBm6DfPiXo0re8G68oESjupsDs47vnLuZYXXRtscYxTtC5K2A/b8EtxJc63HMehA9UwpKcV9tY9sKBNwJ7O2bYFLomCEXvKLI4lMxRN9/ALIywW3GgEAAA=="
),
new LSMeta(
LSMeta.Reader.WindowCaption,
"MediaMonkey",
"MediaMonkey",
500,
"^([0-9]*\\. )?(.*) - MediaMonkey$",
"{2}"
),
new LSMeta(
LSMeta.Reader.WindowCaption,
"MusicBee",
"MusicBee",
500,
"^(.*) - MusicBee$",
"{1}"
),

});
metaDec();
}
Expand Down
4 changes: 2 additions & 2 deletions Loopstream/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.3.9.2")]
[assembly: AssemblyFileVersion("1.3.9.2")]
[assembly: AssemblyVersion("1.3.11.1")]
[assembly: AssemblyFileVersion("1.3.11.1")]
57 changes: 39 additions & 18 deletions Loopstream/UI_ConfigSC.Designer.cs

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

Loading

0 comments on commit 81f13a0

Please sign in to comment.