[1.1.4] add Woff as Binary type
This commit is contained in:
parent
4a87299d98
commit
671388218e
@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
|
|||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("BlubbFish")]
|
[assembly: AssemblyCompany("BlubbFish")]
|
||||||
[assembly: AssemblyProduct("Bot-Utils")]
|
[assembly: AssemblyProduct("Bot-Utils")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2018 - 09.03.2019")]
|
[assembly: AssemblyCopyright("Copyright © 2018 - 12.03.2019")]
|
||||||
[assembly: AssemblyTrademark("© BlubbFish")]
|
[assembly: AssemblyTrademark("© BlubbFish")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
@ -32,12 +32,13 @@ using System.Runtime.InteropServices;
|
|||||||
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
|
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
|
||||||
// indem Sie "*" wie unten gezeigt eingeben:
|
// indem Sie "*" wie unten gezeigt eingeben:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.1.3")]
|
[assembly: AssemblyVersion("1.1.4")]
|
||||||
[assembly: AssemblyFileVersion("1.1.3")]
|
[assembly: AssemblyFileVersion("1.1.4")]
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 1.1.0 Remove Helper from Bot-Utils
|
* 1.1.0 Remove Helper from Bot-Utils
|
||||||
* 1.1.1 Update to local librarys
|
* 1.1.1 Update to local librarys
|
||||||
* 1.1.2 Fixing bug for Contenttype
|
* 1.1.2 Fixing bug for Contenttype
|
||||||
* 1.1.3 Variables parsing now as a String
|
* 1.1.3 Variables parsing now as a String
|
||||||
|
* 1.1.4 add Woff as Binary type
|
||||||
*/
|
*/
|
||||||
|
@ -55,10 +55,11 @@ namespace BlubbFish.Utils.IoT.Bots
|
|||||||
String end = restr.IndexOf('.') != -1 ? restr.Substring(restr.IndexOf('.')+1) : "";
|
String end = restr.IndexOf('.') != -1 ? restr.Substring(restr.IndexOf('.')+1) : "";
|
||||||
if (File.Exists("resources/"+ restr)) {
|
if (File.Exists("resources/"+ restr)) {
|
||||||
try {
|
try {
|
||||||
if (end == "png" || end == "jpg" || end == "jpeg" || end == "ico") {
|
if (end == "png" || end == "jpg" || end == "jpeg" || end == "ico" || end == "woff") {
|
||||||
Byte[] output = File.ReadAllBytes("resources/" + restr);
|
Byte[] output = File.ReadAllBytes("resources/" + restr);
|
||||||
switch(end) {
|
switch(end) {
|
||||||
case "ico": cont.Response.ContentType = "image/x-ico"; break;
|
case "ico": cont.Response.ContentType = "image/x-ico"; break;
|
||||||
|
case "woff": cont.Response.ContentType = "font/woff"; break;
|
||||||
}
|
}
|
||||||
cont.Response.OutputStream.Write(output, 0, output.Length);
|
cont.Response.OutputStream.Write(output, 0, output.Length);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user