mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-15 03:07:41 +01:00
fix: 🚀 修复设备列表按钮状态变更影响布局变化的问题
This commit is contained in:
parent
1c0fcc34ce
commit
83a8043b25
2
.github/workflows/release-assets.yml
vendored
2
.github/workflows/release-assets.yml
vendored
@ -47,8 +47,6 @@ jobs:
|
|||||||
- name: release
|
- name: release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
draft: true
|
|
||||||
prerelease: true
|
|
||||||
files: |
|
files: |
|
||||||
dist-release/*.exe
|
dist-release/*.exe
|
||||||
dist-release/*.zip
|
dist-release/*.zip
|
||||||
|
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
@ -15,6 +15,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: google-github-actions/release-please-action@v3
|
- uses: google-github-actions/release-please-action@v3
|
||||||
with:
|
with:
|
||||||
release-type: node
|
|
||||||
package-name: release-please-action
|
|
||||||
token: ${{ secrets.GH_TOKEN }}
|
token: ${{ secrets.GH_TOKEN }}
|
||||||
|
release-type: node
|
||||||
|
package-name: escrcpy
|
||||||
|
prerelease: true
|
@ -85,7 +85,7 @@
|
|||||||
:icon="row.$loading ? '' : 'Monitor'"
|
:icon="row.$loading ? '' : 'Monitor'"
|
||||||
@click="handleMirror(row)"
|
@click="handleMirror(row)"
|
||||||
>
|
>
|
||||||
{{ row.$loading ? '镜像中' : '开始镜像' }}
|
{{ row.$loading ? '正在镜像' : '开始镜像' }}
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
<el-button
|
<el-button
|
||||||
@ -96,7 +96,7 @@
|
|||||||
:icon="row.$recordLoading ? '' : 'VideoCamera'"
|
:icon="row.$recordLoading ? '' : 'VideoCamera'"
|
||||||
@click="handleRecord(row)"
|
@click="handleRecord(row)"
|
||||||
>
|
>
|
||||||
{{ row.$recordLoading ? '录制中' : '开始录制' }}
|
{{ row.$recordLoading ? '正在录制' : '开始录制' }}
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
<el-button
|
<el-button
|
||||||
@ -119,7 +119,7 @@
|
|||||||
:icon="row.$stopLoading ? '' : 'CircleClose'"
|
:icon="row.$stopLoading ? '' : 'CircleClose'"
|
||||||
@click="handleStop(row)"
|
@click="handleStop(row)"
|
||||||
>
|
>
|
||||||
{{ row.$stopLoading ? '断开中' : '断开连接' }}
|
{{ row.$stopLoading ? '正在断开' : '断开连接' }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
Loading…
Reference in New Issue
Block a user