mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-17 04:42:05 +01:00
- FIX: loading the ChanSort.Loader.*.DLL files failed with .NET 4.0 when the .zip was downloaded and extracted from the web
This commit is contained in:
@@ -25,7 +25,7 @@ namespace ChanSort.Ui
|
||||
{
|
||||
public partial class MainForm : XtraForm
|
||||
{
|
||||
public const string AppVersion = "v2013-07-19.2";
|
||||
public const string AppVersion = "v2013-07-19.3";
|
||||
|
||||
private const int MaxMruEntries = 5;
|
||||
|
||||
@@ -125,7 +125,7 @@ namespace ChanSort.Ui
|
||||
{
|
||||
try
|
||||
{
|
||||
var assembly = Assembly.LoadFrom(file);
|
||||
var assembly = Assembly.UnsafeLoadFrom(file);
|
||||
foreach(var type in assembly.GetTypes())
|
||||
{
|
||||
if (typeof(ISerializerPlugin).IsAssignableFrom(type) && !type.IsAbstract)
|
||||
|
||||
@@ -118,8 +118,7 @@ struct SCM_mapDigital_DEF_entry
|
||||
uc16be ShortName[9];
|
||||
byte VideoFormat;
|
||||
byte Unknown283[7];
|
||||
byte FavFlags;
|
||||
byte Checksum1;
|
||||
word Zero;
|
||||
dword Fav1;
|
||||
dword Fav2;
|
||||
dword Fav3;
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
Version v2013-07-19.2 ====================================================
|
||||
Version v2013-07-19.3 ====================================================
|
||||
|
||||
Changes:
|
||||
- FIX: .NET Framework 4.0 exceptions about loading DLLs downloaded from
|
||||
the web (since the whole .zip was downloaded from the web)
|
||||
- FIX: Samsung "CablePrime" channel list was not updated/saved
|
||||
- FIX: Deleted Samsung analog, DVB-T and DVB-C channels re-appeared in the
|
||||
channel list after loading the file again.
|
||||
@@ -113,6 +115,10 @@ OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
Change log ================================================================
|
||||
|
||||
2013-07-19.3
|
||||
- FIX: .NET Framework 4.0 exceptions about loading DLLs downloaded from
|
||||
the web (since the whole .zip was downloaded from the web)
|
||||
|
||||
2013-07-19.2
|
||||
- FIX: Samsung "CablePrime" channel list was not updated/saved
|
||||
- FIX: Deleted Samsung analog, DVB-T and DVB-C channels re-appeared in the
|
||||
|
||||
Reference in New Issue
Block a user