A work-around in the short term might be to host the file on Google Drive. I don't know for sure, but it's likely they will scan content on their own storage more regularly than content on other web sites.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: AGA on Mon 29/02/2016 19:03:03It shows as clear of malware and I'm still seeing the warning:
I would guess it's probably downloads from a certain host that are being tagged. The one cat linked is cat.agser.me, but we'd need to see more 'bad' links to work out a pattern...
Index: src/x/xmousenu.c
===================================================================
--- src/x/xmousenu.c (revision 11745)
+++ src/x/xmousenu.c (working copy)
@@ -192,21 +192,18 @@
ALLEGRO_SYSTEM_XGLX *system = (void *)al_system_driver();
Display *display = system->x11display;
+ ALLEGRO_DISPLAY_XGLX *d = (void *)al_get_current_display();
int window_width = al_get_display_width();
int window_height = al_get_display_height();
if (x < 0 || y < 0 || x >= window_width || y >= window_height)
return false;
- int new_x = x;
- int new_y = y;
- int dx = new_x - the_mouse.state.x;
- int dy = new_y - the_mouse.state.y;
+ _al_mutex_lock(&system->lock);
+ XWarpPointer(display, None, d->window, 0, 0, 0, 0, x, y);
+ _al_mutex_unlock(&system->lock);
+
- if (dx != 0 || dy != 0) {
- XWarpPointer(display, None, None, 0, 0, 0, 0, dx, dy);
- }
-
return true;
}
Quote from: Crimson Wizard on Tue 09/02/2016 16:41:00I like this approach, particularly if the initial design is generic and well documented. It would be nice if extra functionality was modular and games would check feature flags when they run to see if the engine implements the required features.
Just emulate the basics, and then continue "restoring" things only by user request.
using System.Runtime.InteropServices;
using System.Diagnostics;
+using System.Security;
+using System.Security.Policy;
else if (!File.Exists(_helpFileName))
{
_guiController.ShowMessage("The help file '" + _helpFileName + "' is missing. You may need to reinstall AGS.", MessageBoxIcon.Warning);
}
+else if (Zone.CreateFromUrl(_helpFileName).SecurityZone != SecurityZone.MyComputer)
+{
+ _guiController.ShowMessage("The help file '" + _helpFileName + "' is restricted by a Zone Identifier.", MessageBoxIcon.Warning);
+}
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions]
"MaxAllowedZone"=dword:00000003
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.080 seconds with 16 queries.