bfg-common 1.6.35 → 1.6.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.6.35",
4
+ "version": "1.6.36",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",
@@ -80,23 +80,24 @@ wdi.Agent = $.spcExtend(wdi.EventObject.prototype, {
80
80
 
81
81
  //adapt resolution, TODO: this needs to be refractored
82
82
  var packetData = {
83
- type: wdi.AgentMessageTypes.VD_AGENT_MONITORS_CONFIG,
84
- opaque: 0,
85
- data: new wdi.VDAgentMonitorsConfig({
86
- num_of_monitors: 1,
87
- flags: 0,
88
- data: new wdi.VDAgentMonConfig({
89
- width: width,
90
- height: height,
91
- // Custom code
92
- // depth: 64,
93
- depth: 32, // SC-2122
94
- // Custom code end
95
- x: 0,
96
- y: 0
97
- })
98
- })
99
- };
83
+ type: wdi.AgentMessageTypes.VD_AGENT_MONITORS_CONFIG,
84
+ opaque: 0,
85
+ data: new wdi.VDAgentMonitorsConfig({
86
+ num_of_monitors: 1,
87
+ flags: 0,
88
+ data: new wdi.VDAgentMonConfig({
89
+ width: width,
90
+ height: height,
91
+ // Custom code
92
+ // depth: 64,
93
+ depth: 24, // SC-2122
94
+ // depth: 32,
95
+ // Custom code end
96
+ x: 0,
97
+ y: 0,
98
+ }),
99
+ }),
100
+ }
100
101
  this.sendAgentPacket(packetData);
101
102
  },
102
103