Hi Jeremy,
Hmm, crashing on launch is certainly not what I was hoping for! Is that correct that it happens right at the start, or are you able to do things in Gaffer before it crashes? Are you able to run any other recent Gaffer releases, like 1.3.4.0?
What version of Windows are you on? And I don't think this would matter, but is your C: that you are unzipping Gaffer onto an exFAT drive?
If you're not familiar with getting a stack trace and are able to install software from the Windows app store, here's a walk through for generating it.
3. In a terminal, set a couple of environment variables (I'm using Powershell here):
3a. `$env:GAFFER_DEBUG=1`
3b. `$env:GAFFER_DEBUGGER="WinDbgX.exe -g"`
4. Launch Gaffer using the usual `gaffer.cmd` (the new one from step 2)
5. It should run WinDbg and you'll see a bunch of .dll modules and other stuff loading.
6. I expect if you are getting a crash on startup that it will stop at some point on it's own and output something related to your access violation. If it's not at startup, go through the steps that generate the crash and wait for it to trigger in the debugger.
7. Output a stack trace file :
You can upload that to the Google drive link above and I can take a look at it.
- Eric