Skip to content

Commit

Permalink
Update 20191125.1
Browse files Browse the repository at this point in the history
增加便于OBS捕获的独立窗口模式
修复结束投屏后adb检测依然进行的BUG
针对stdio管道被用户关闭的行为进行处理
代码美化
  • Loading branch information
TGSAN committed Nov 24, 2019
1 parent 9178670 commit cba79d0
Show file tree
Hide file tree
Showing 9 changed files with 193 additions and 119 deletions.
16 changes: 5 additions & 11 deletions MirrorCaster/DeviceInfoData.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MirrorCaster
namespace MirrorCaster
{
public class DeviceInfoData
{
public int device_width = 1920;
public int device_height = 1080;
public int device_refreshRate = 60;
public bool device_vmode = false;
public int deviceWidth = 1920;
public int deviceHeight = 1080;
public int deviceRefreshRate = 60;
public bool deviceVmode = false; // 是否为竖屏状态
}
}
77 changes: 46 additions & 31 deletions MirrorCaster/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit cba79d0

Please sign in to comment.