问题描述
昨天(2015年10月19日下午06:00),ARC Welder应用程序开始不启动应用程序.
Yesterday (10/19/2015 06:00 PM), the ARC Welder app begin to not start apps.
由于某种原因,现在,当我单击测试"时,在Windows 10上什么也没有发生,我也在MAC/Windows 7上进行了测试,并且工作正常.
For some reason, now, when I click "TEST", nothing happens on Windows 10, I tested on MAC/Windows 7 also, and works fine.
ChromeVersão46.0.2490.71(64位)
ChromeVersão 46.0.2490.71 (64-bit)
ARC焊机46.5021.478.14
ARC Welder46.5021.478.14
更新这是控制台上显示的错误.
UpdateThis is the error shown on console.
推荐答案
替代方法底部的解决方案.
好,到目前为止,我所获得的不仅仅是信息解决方案
问题似乎来自Arc Extension的运行时部分:
Workaround SOLUTION at bottom.
Ok so what I have so far is not a solution just information
The problem seems to be coming from the runtime part of the Arc Extension:
问题出在文件 plugin.js
// Let the CameraManager in Android know what the current orientation is
var message = {
namespace: 'pluginCameraManager',
command: 'screenRotation',
data: {
'angle': screen.orientation.angle
}
};
this.postMessage(message);
'angle': screen.orientation.angle
//for context
var a=Promise.all([this.createAppPlugin_(),window.arcparams.systemDirectoriesReady]);
//problem is initializeWindow_() fails
a.then(function(){this.initializeWindow_();
**全面解决方案**
这可能会导致更多错误,我不知道,这样做后果自负.
** WORK AROUND SOLUTION**
This may cause more bugs, I don't know, do it at own risk.
打开文件:
%LOCALAPPDATA%\Google\Chrome\User Data\Default\Extensions\mfaihdlpglflfgpfjcifdjdjcckigekc\46.5021.478.18_0\gen_index.min.js
即
因此,在第125行的字符302处,您应该找到单词"angle",如下所示:
So on line 125 at character 302 you should find the word 'angle' as in:
data:{angle:screen.orientation.angle}
将其更改为:
data:{angle:0}
使用0,您可以了解原因->
0 is used,you can read about why -> Find screen angle when orientation is fixed in android
这篇关于现在,Arc Welder不会在Windows上启动测试应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!