From 328cb39ed00e4ea1ee424f1d4089a2dc592555d8 Mon Sep 17 00:00:00 2001
From: gfdgd_xi <3025613752@qq.com>
Date: Mon, 16 Jan 2023 15:23:25 +0800
Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E6=AD=A5=E7=B2=BE=E7=AE=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .idea/.gitignore                              |    3 +
 .idea/deepin-wine-run.iml                     |    8 +
 .../inspectionProfiles/profiles_settings.xml  |    6 +
 .idea/misc.xml                                |    4 +
 .idea/modules.xml                             |    8 +
 .idea/vcs.xml                                 |    6 +
 .workflow/branch-pipeline.yml                 |   52 +
 .workflow/master-pipeline.yml                 |   50 +
 .workflow/pr-pipeline.yml                     |   37 +
 Download.py                                   |    5 +
 IconList.json                                 |    8 +
 LICENSE                                       |  674 ++++
 Makefile                                      |  132 +
 Model/__init__.py                             |   37 +
 Model/__pycache__/__init__.cpython-310.pyc    |  Bin 0 -> 1122 bytes
 Model/__pycache__/__init__.cpython-36.pyc     |  Bin 0 -> 1086 bytes
 Model/__pycache__/__init__.cpython-37.pyc     |  Bin 0 -> 1103 bytes
 README.md                                     |  512 +++
 RemovePycacheFile.py                          |   13 +
 deb/DEBIAN/control                            |   30 +
 deb/DEBIAN/postinst                           |   67 +
 deb/DEBIAN/postrm                             |   54 +
 deb/usr/lib/python3/dist-packages/WineRunner  |    1 +
 .../spark-deepin-wine-package-builder.desktop |   12 +
 ...-deepin-wine-packager-easy-builder.desktop |   12 +
 ...k-deepin-wine-packager-with-script.desktop |   10 +
 ...park-deepin-wine-runner-control-vm.desktop |   10 +
 .../spark-deepin-wine-runner-start-vm.desktop |    9 +
 .../spark-deepin-wine-runner.desktop          |   11 +
 ...n.pkexec.deepin-wine-venturi-setter.policy |   21 +
 .../actions/com.deepin.pkexec.mount.policy    |   21 +
 .../actions/com.deepin.pkexec.umount.policy   |   21 +
 deepin-wine-runner-deepin-app-store.svg       |   37 +
 deepin-wine-runner-update-bug                 |  104 +
 deepin-wine-runner.png                        |  Bin 0 -> 16913 bytes
 deepin-wine-runner.svg                        |    1 +
 icon.png                                      |  Bin 0 -> 36271 bytes
 information.json                              |   57 +
 launch.sh                                     |    3 +
 mainwindow.py                                 | 3036 +++++++++++++++++
 req/__init__.py                               |   27 +
 req/__pycache__/__init__.cpython-310.pyc      |  Bin 0 -> 1163 bytes
 req/__pycache__/__init__.cpython-36.pyc       |  Bin 0 -> 1180 bytes
 req/__pycache__/__init__.cpython-37.pyc       |  Bin 0 -> 980 bytes
 spark-deepin-wine-runner-new.png              |  Bin 0 -> 21752 bytes
 trans/__init__.py                             |   53 +
 trans/__pycache__/__init__.cpython-37.pyc     |  Bin 0 -> 1618 bytes
 trans/deepin-wine-packager.json               |    1 +
 trans/deepin-wine-runner-qemu-download.json   |    1 +
 trans/deepin-wine-runner.json                 |    1 +
 违反开源协议应用事例.md                       |    3 +
 51 files changed, 5158 insertions(+)
 create mode 100755 .idea/.gitignore
 create mode 100755 .idea/deepin-wine-run.iml
 create mode 100755 .idea/inspectionProfiles/profiles_settings.xml
 create mode 100755 .idea/misc.xml
 create mode 100755 .idea/modules.xml
 create mode 100755 .idea/vcs.xml
 create mode 100644 .workflow/branch-pipeline.yml
 create mode 100644 .workflow/master-pipeline.yml
 create mode 100644 .workflow/pr-pipeline.yml
 create mode 100644 Download.py
 create mode 100644 IconList.json
 create mode 100755 LICENSE
 create mode 100755 Makefile
 create mode 100755 Model/__init__.py
 create mode 100644 Model/__pycache__/__init__.cpython-310.pyc
 create mode 100644 Model/__pycache__/__init__.cpython-36.pyc
 create mode 100644 Model/__pycache__/__init__.cpython-37.pyc
 create mode 100755 README.md
 create mode 100755 RemovePycacheFile.py
 create mode 100755 deb/DEBIAN/control
 create mode 100755 deb/DEBIAN/postinst
 create mode 100755 deb/DEBIAN/postrm
 create mode 120000 deb/usr/lib/python3/dist-packages/WineRunner
 create mode 100644 deb/usr/share/applications/spark-deepin-wine-package-builder.desktop
 create mode 100644 deb/usr/share/applications/spark-deepin-wine-packager-easy-builder.desktop
 create mode 100644 deb/usr/share/applications/spark-deepin-wine-packager-with-script.desktop
 create mode 100644 deb/usr/share/applications/spark-deepin-wine-runner-control-vm.desktop
 create mode 100644 deb/usr/share/applications/spark-deepin-wine-runner-start-vm.desktop
 create mode 100644 deb/usr/share/applications/spark-deepin-wine-runner.desktop
 create mode 100755 deb/usr/share/polkit-1/actions/com.deepin.pkexec.deepin-wine-venturi-setter.policy
 create mode 100755 deb/usr/share/polkit-1/actions/com.deepin.pkexec.mount.policy
 create mode 100755 deb/usr/share/polkit-1/actions/com.deepin.pkexec.umount.policy
 create mode 100755 deepin-wine-runner-deepin-app-store.svg
 create mode 100755 deepin-wine-runner-update-bug
 create mode 100755 deepin-wine-runner.png
 create mode 100755 deepin-wine-runner.svg
 create mode 100755 icon.png
 create mode 100644 information.json
 create mode 100755 launch.sh
 create mode 100755 mainwindow.py
 create mode 100755 req/__init__.py
 create mode 100644 req/__pycache__/__init__.cpython-310.pyc
 create mode 100644 req/__pycache__/__init__.cpython-36.pyc
 create mode 100644 req/__pycache__/__init__.cpython-37.pyc
 create mode 100755 spark-deepin-wine-runner-new.png
 create mode 100644 trans/__init__.py
 create mode 100644 trans/__pycache__/__init__.cpython-37.pyc
 create mode 100644 trans/deepin-wine-packager.json
 create mode 100644 trans/deepin-wine-runner-qemu-download.json
 create mode 100644 trans/deepin-wine-runner.json
 create mode 100755 违反开源协议应用事例.md

diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100755
index 0000000..26d3352
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/deepin-wine-run.iml b/.idea/deepin-wine-run.iml
new file mode 100755
index 0000000..8437fe6
--- /dev/null
+++ b/.idea/deepin-wine-run.iml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="PYTHON_MODULE" version="4">
+  <component name="NewModuleRootManager">
+    <content url="file://$MODULE_DIR$" />
+    <orderEntry type="jdk" jdkName="Python 3.10" jdkType="Python SDK" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100755
index 0000000..105ce2d
--- /dev/null
+++ b/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+<component name="InspectionProjectProfileManager">
+  <settings>
+    <option name="USE_PROJECT_PROFILE" value="false" />
+    <version value="1.0" />
+  </settings>
+</component>
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100755
index 0000000..dc9ea49
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10" project-jdk-type="Python SDK" />
+</project>
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100755
index 0000000..915f12f
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/.idea/deepin-wine-run.iml" filepath="$PROJECT_DIR$/.idea/deepin-wine-run.iml" />
+    </modules>
+  </component>
+</project>
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100755
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
+  </component>
+</project>
\ No newline at end of file
diff --git a/.workflow/branch-pipeline.yml b/.workflow/branch-pipeline.yml
new file mode 100644
index 0000000..5f45c17
--- /dev/null
+++ b/.workflow/branch-pipeline.yml
@@ -0,0 +1,52 @@
+version: '1.0'
+name: branch-pipeline
+displayName: BranchPipeline
+stages:
+  - stage: 
+    name: compile
+    displayName: 编译
+    steps:
+      - step: build@python
+        name: build_python
+        displayName: Python 构建
+        pythonVersion: '3.9'
+        # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除
+        artifacts:
+            # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址
+          - name: BUILD_ARTIFACT
+            # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径
+            path:
+              - ./
+        commands:
+          - python3 -m pip install --upgrade pip
+          - pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
+          - pip3 install -r requirements.txt
+          - python3 ./main.py
+      - step: publish@general_artifacts
+        name: publish_general_artifacts
+        displayName: 上传制品
+        # 上游构建任务定义的产物名,默认BUILD_ARTIFACT
+        dependArtifact: BUILD_ARTIFACT
+        # 上传到制品库时的制品命名,默认output
+        artifactName: output
+        dependsOn: build_python
+  - stage: 
+    name: release
+    displayName: 发布
+    steps:
+      - step: publish@release_artifacts
+        name: publish_release_artifacts
+        displayName: '发布'
+        # 上游上传制品任务的产出
+        dependArtifact: output
+        # 发布制品版本号
+        version: '1.0.0.0'
+        # 是否开启版本号自增,默认开启
+        autoIncrement: true
+triggers:
+  push:
+    branches:
+      exclude:
+        - master
+      include:
+        - .*
diff --git a/.workflow/master-pipeline.yml b/.workflow/master-pipeline.yml
new file mode 100644
index 0000000..69cf036
--- /dev/null
+++ b/.workflow/master-pipeline.yml
@@ -0,0 +1,50 @@
+version: '1.0'
+name: master-pipeline
+displayName: MasterPipeline
+stages:
+  - stage: 
+    name: compile
+    displayName: 编译
+    steps:
+      - step: build@python
+        name: build_python
+        displayName: Python 构建
+        pythonVersion: '3.9'
+        # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除
+        artifacts:
+            # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址
+          - name: BUILD_ARTIFACT
+            # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径
+            path:
+              - ./
+        commands:
+          - python3 -m pip install --upgrade pip
+          - pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
+          - pip3 install -r requirements.txt
+          - python3 ./main.py
+      - step: publish@general_artifacts
+        name: publish_general_artifacts
+        displayName: 上传制品
+        # 上游构建任务定义的产物名,默认BUILD_ARTIFACT
+        dependArtifact: BUILD_ARTIFACT
+        # 上传到制品库时的制品命名,默认output
+        artifactName: output
+        dependsOn: build_python
+  - stage: 
+    name: release
+    displayName: 发布
+    steps:
+      - step: publish@release_artifacts
+        name: publish_release_artifacts
+        displayName: '发布'
+        # 上游上传制品任务的产出
+        dependArtifact: output
+        # 发布制品版本号
+        version: '1.0.0.0'
+        # 是否开启版本号自增,默认开启
+        autoIncrement: true
+triggers:
+  push:
+    branches:
+      include:
+        - master
\ No newline at end of file
diff --git a/.workflow/pr-pipeline.yml b/.workflow/pr-pipeline.yml
new file mode 100644
index 0000000..e61e401
--- /dev/null
+++ b/.workflow/pr-pipeline.yml
@@ -0,0 +1,37 @@
+version: '1.0'
+name: pr-pipeline
+displayName: PRPipeline
+stages:
+  - stage: 
+    name: compile
+    displayName: 编译
+    steps:
+      - step: build@python
+        name: build_python
+        displayName: Python 构建
+        pythonVersion: '3.9'
+        # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除
+        artifacts:
+            # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址
+          - name: BUILD_ARTIFACT
+            # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径
+            path:
+              - ./
+        commands:
+          - python3 -m pip install --upgrade pip
+          - pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
+          - pip3 install -r requirements.txt
+          - python3 ./main.py
+      - step: publish@general_artifacts
+        name: publish_general_artifacts
+        displayName: 上传制品
+        # 上游构建任务定义的产物名,默认BUILD_ARTIFACT
+        dependArtifact: BUILD_ARTIFACT
+        # 上传到制品库时的制品命名,默认output
+        artifactName: output
+        dependsOn: build_python
+triggers:
+  pr:
+    branches:
+      include:
+        - master
diff --git a/Download.py b/Download.py
new file mode 100644
index 0000000..d18d786
--- /dev/null
+++ b/Download.py
@@ -0,0 +1,5 @@
+#!/usr/bin/env python3
+import sys
+import base64
+import requests
+print(requests.get(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0L3NwYXJrLWRlZXBpbi13aW5lLXJ1bm5lci9JbnN0YWxsLnBocD9WZXJzaW9uPQ==").decode("utf-8") + sys.argv[1]).text)
\ No newline at end of file
diff --git a/IconList.json b/IconList.json
new file mode 100644
index 0000000..43ba7b9
--- /dev/null
+++ b/IconList.json
@@ -0,0 +1,8 @@
+[
+    [
+        
+    ],
+    [
+        
+    ]  
+]
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100755
index 0000000..94a9ed0
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+  If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+    <program>  Copyright (C) <year>  <name of author>
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+  You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<http://www.gnu.org/licenses/>.
+
+  The GNU General Public License does not permit incorporating your program
+into proprietary programs.  If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.  But first, please read
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
diff --git a/Makefile b/Makefile
new file mode 100755
index 0000000..0b05c3f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,132 @@
+build:
+	#cd VM-source && qmake
+	#cd VM-source && make
+	#cd wine && make
+	cp -rv helperset deb/opt/apps/deepin-wine-runner/
+	cp -rv VM-source/VirtualMachine VM
+	cp -rv VM-source/deepin-wine-runner.svg VM
+	cp -rv VM-source/api VM
+	cp -rv VM-source/Windows7X64Auto.iso VM
+	cp -rv VM-source/Windows7X86Auto.iso VM
+	cp -rv VM-source/run.py VM
+	cp -rv wine/ deb/opt/apps/deepin-wine-runner/
+	cp -rv Test/ deb/opt/apps/deepin-wine-runner/
+	zip -v -q -r package-script.zip package-script
+	cp -rv VM deb/opt/apps/deepin-wine-runner
+	cp -rv Download.py deb/opt/apps/deepin-wine-runner/
+	cp -rv AllInstall.py deb/opt/apps/deepin-wine-runner
+	cp -rv ShellList deb/opt/apps/deepin-wine-runner
+	cp -rv QemuDownload.py deb/opt/apps/deepin-wine-runner
+	cp -rv QemuRun.py deb/opt/apps/deepin-wine-runner
+	cp -rv kill.sh deb/opt/apps/deepin-wine-runner
+	cp -rv InstallWineOnDeepin23Alpha.py deb/opt/apps/deepin-wine-runner
+	cp -rv wrestool deb/opt/apps/deepin-wine-runner
+	cp -rv Mount.sh deb/opt/apps/deepin-wine-runner
+	cp -rv UnMount.sh deb/opt/apps/deepin-wine-runner
+	cp -rv vkd3d-proton.7z deb/opt/apps/deepin-wine-runner
+	cp -rv deepin-wine-easy-packager.py deb/opt/apps/deepin-wine-runner
+	cp -rv IconList.json deb/opt/apps/deepin-wine-runner
+	cp -rv GetEXEVersion.exe deb/opt/apps/deepin-wine-runner
+	cp -rv MountWithoutHome.sh deb/opt/apps/deepin-wine-runner
+	echo "[]" > deb/opt/apps/deepin-wine-runner/wine/winelist.json
+	rm -rfv deb/opt/apps/deepin-wine-runner/wine/winelist.json
+	cp -rv req deb/opt/apps/deepin-wine-runner
+	cp -rv BuildDesktop.py deb/opt/apps/deepin-wine-runner
+	cp -rv ChangePassword.sh deb/opt/apps/deepin-wine-runner
+	cp -rv trans deb/opt/apps/deepin-wine-runner
+	cp -rv RegShot deb/opt/apps/deepin-wine-runner
+	cp -rv BeCyIconGrabber.exe deb/opt/apps/deepin-wine-runner
+	cp -rv AutoShell deb/opt/apps/deepin-wine-runner
+	cp -rv deepin-wine-packager-with-script.py deb/opt/apps/deepin-wine-runner
+	cp -rv deepin-wine-packager.py deb/opt/apps/deepin-wine-runner
+	cp -rv deepin-wine-runner-update-bug deb/opt/apps/deepin-wine-runner
+	cp -rv deepin-wine-runner.svg deb/opt/apps/deepin-wine-runner
+	cp -rv deepin-wine-venturi-setter.py deb/opt/apps/deepin-wine-runner
+	cp -rv InstallVisualBasicRuntime.py deb/opt/apps/deepin-wine-runner
+	cp -rv DisabledOpengl.reg deb/opt/apps/deepin-wine-runner
+	cp -rv EnabledOpengl.reg deb/opt/apps/deepin-wine-runner
+	cp -rv geek.exe deb/opt/apps/deepin-wine-runner
+	cp -rv uengineapi deb/opt/apps/deepin-wine-runner
+	cp -rv getxmlimg.py deb/opt/apps/deepin-wine-runner
+	cp -rv ProgramFen.py deb/opt/apps/deepin-wine-runner
+	cp -rv information.json deb/opt/apps/deepin-wine-runner
+	cp -rv InstallMono.py deb/opt/apps/deepin-wine-runner
+	cp -rv InstallMsxml.py deb/opt/apps/deepin-wine-runner
+	cp -rv InstallNetFramework.py deb/opt/apps/deepin-wine-runner
+	cp -rv InstallOther.py deb/opt/apps/deepin-wine-runner
+	cp -rv InstallVisualCPlusPlus.py deb/opt/apps/deepin-wine-runner
+	cp -rv launch.sh deb/opt/apps/deepin-wine-runner
+	cp -rv LICENSE deb/opt/apps/deepin-wine-runner
+	cp -rv mainwindow.py deb/opt/apps/deepin-wine-runner/deepin-wine-runner
+	cp -rv package-script.zip deb/opt/apps/deepin-wine-runner
+	cp -rv Run.bat deb/opt/apps/deepin-wine-runner
+	cp -rv RunVM.sh deb/opt/apps/deepin-wine-runner
+	cp -rv "wine install" deb/opt/apps/deepin-wine-runner
+	cp -rv 窗体透明度设置工具.exe deb/opt/apps/deepin-wine-runner
+	cp -rv UpdateGeek.sh deb/opt/apps/deepin-wine-runner
+	cp -rv AppStore.py deb/opt/apps/deepin-wine-runner
+	cp -rv InstallWineOnDeepin23.py deb/opt/apps/deepin-wine-runner
+	cp -rv dxvk.7z deb/opt/apps/deepin-wine-runner
+	cp -rv InstallFont.py deb/opt/apps/deepin-wine-runner
+	cp -rv CheckDLL deb/opt/apps/deepin-wine-runner
+	#cp -rv exagear.7z deb/opt/apps/deepin-wine-runner
+	cp -rv dlls-arm.7z deb/opt/apps/deepin-wine-runner
+	cp -rv deepin.list deb/opt/apps/deepin-wine-runner
+	cp -rv sparkstore.list deb/opt/apps/deepin-wine-runner
+	cp -rv arm-package.7z deb/opt/apps/deepin-wine-runner
+	#cp -rv exa.7z deb/opt/apps/deepin-wine-runner
+	cp -rv clean-unuse-program.py deb/opt/apps/deepin-wine-runner
+	cp -rv InstallNewWineHQ.sh deb/opt/apps/deepin-wine-runner
+	cp -rv cleanbottle.sh deb/opt/apps/deepin-wine-runner
+	cp -rv StartVM.sh deb/opt/apps/deepin-wine-runner
+	#cp -rv deepin-wine-runner-create-botton.py deb/opt/apps/deepin-wine-runner
+	cp -rv Icon deb/opt/apps/deepin-wine-runner
+	cp -rv ConfigLanguareRunner-help.json deb/opt/apps/deepin-wine-runner
+	cp -rv gtkGetFileNameDlg deb/opt/apps/deepin-wine-runner
+	cp -rv LANG/*.qm deb/opt/apps/deepin-wine-runner/LANG
+	cp -rv InstallDll.py deb/opt/apps/deepin-wine-runner/LANG
+	cp -rv ConfigLanguareRunner.py deb/opt/apps/deepin-wine-runner
+	cp -rv AutoConfig.py deb/opt/apps/deepin-wine-runner
+	cp -rv UI deb/opt/apps/deepin-wine-runner/
+	cp -rv InstallDll.py deb/opt/apps/deepin-wine-runner
+	cp -rv Model deb/opt/apps/deepin-wine-runner
+	cp -rv API deb/opt/apps/deepin-wine-runner
+	cp -rv key deb/opt/apps/deepin-wine-runner
+	python3 RemovePycacheFile.py
+	ln -s /opt/apps/deepin-wine-runner/deepin-wine-packager.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-package-builder 
+	ln -s /opt/apps/deepin-wine-runner/deepin-wine-easy-packager.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-packager-easy-builder
+	ln -s /opt/apps/deepin-wine-runner/deepin-wine-packager-with-script.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-packager-with-script
+	ln -s /opt/apps/deepin-wine-runner/deepin-wine-runner /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner
+	ln -s /opt/apps/deepin-wine-runner/AppStore.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-appstore
+	ln -s /opt/apps/deepin-wine-runner/AutoShell/main.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-auto-install-bash
+	ln -s /opt/apps/deepin-wine-runner/ConfigLanguareRunner.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-auto-install-config-old
+	ln -s /opt/apps/deepin-wine-runner/AutoConfig.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-auto-install-gui
+	ln -s /opt/apps/deepin-wine-runner/launch.sh /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-dtk-launch
+	ln -s /opt/apps/deepin-wine-runner/deepin-wine-runner-update-bug /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-update-bug
+	ln -s /opt/apps/deepin-wine-runner/InstallFont.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-wine-font-installer
+	ln -s /opt/apps/deepin-wine-runner/InstallNewWineHQ.sh /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-winehq-install
+	ln -s '/opt/apps/deepin-wine-runner/wine install' /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-wine-install
+	ln -s '/opt/apps/deepin-wine-runner/wine install' /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-wine-installer
+	ln -s /opt/apps/deepin-wine-runner/InstallWineOnDeepin23.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-wine-install-deepin23
+	ln -s /opt/apps/deepin-wine-runner/InstallMono.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-wine-monogecko-installer
+	ln -s /opt/apps/deepin-wine-runner/InstallNetFramework.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-wine-netframework-installer
+	ln -s /opt/apps/deepin-wine-runner/InstallVisualCPlusPlus.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-runner-wine-vscppruntime-installer
+	ln -s /opt/apps/deepin-wine-runner/deepin-wine-venturi-setter.py /tmp/spark-deepin-wine-runner-builder/usr/bin/deepin-wine-venturi-setter
+	cp -rv deb /tmp/spark-deepin-wine-runner-builder
+	sudo chown -R root:root /tmp/spark-deepin-wine-runner-builder
+	
+	dpkg -b /tmp/spark-deepin-wine-runner-builder spark-deepin-wine-runner.deb
+	sudo rm -rfv /tmp/spark-deepin-wine-runner-builder
+	
+
+install:
+	make build
+	sudo apt update
+	#sudo dpkg -i spark-deepin-wine-runner.deb
+	sudo apt reinstall ./spark-deepin-wine-runner.deb -y --allow-downgrades 
+
+remove:
+	sudo apt purge spark-deepin-wine-runner 
+
+run:
+	python3 mainwindow.py
diff --git a/Model/__init__.py b/Model/__init__.py
new file mode 100755
index 0000000..eee72d3
--- /dev/null
+++ b/Model/__init__.py
@@ -0,0 +1,37 @@
+import os
+import sys
+import PyQt5.QtWidgets as QtWidgets
+def OpenTerminal(command):
+    if terminalEnd[terminal][1]:
+        os.system(f"\"{terminal}\" \"{terminalEnd[terminal][0]}\" \"{command}\"")
+        return
+    os.system(f"\"{terminal}\" \"{terminalEnd[terminal][0]}\" {command}")
+programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
+# 对终端的获取
+# 为什么 openkylin 只有 mate-terminal
+# 优先为深度终端
+terminal = ""
+terminalList = [
+    "deepin-terminal",
+    "mate-terminal",
+    "gnome-terminal",
+    "xfce4-terminal"
+]
+terminalEnd = {
+    f"{programPath}/../launch.sh\" \"deepin-terminal": ["-e", 0],
+    "mate-terminal": ["-e", 1],
+    "gnome-terminal": ["--", 0],
+    "xfce4-terminal": ["-e", 1]
+}
+for i in terminalList:
+    if not os.system(f"which {i}"):
+        if i == "deepin-terminal":
+            i = f"{programPath}/../launch.sh\" \"deepin-terminal"
+        terminal = i
+        break
+if terminal == "":
+    print("无法识别到以下的任意一个终端")
+    print(" ".join(terminalList))
+    app = QtWidgets.QApplication(sys.argv)
+    QtWidgets.QMessageBox.critical(None, "错误", "无法识别到以下的任意一个终端\n" + " ".join(terminalList))
+    exit()
diff --git a/Model/__pycache__/__init__.cpython-310.pyc b/Model/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..0738c427d64c81cce6c00b0273f1a9a09eda4f91
GIT binary patch
literal 1122
zcmb7E&1)M+6rZ;{l2#up`6I3C=1}89h!P}SoKs8aM{;Z2xG5ACQn6?z(m4B-*->JP
z90D=L&_gc`r7;Gn&_kPp3%MBlXXG~5Dt3I%r6@k+jcgec$RPvsd+#^%n>X{`J~npU
z0>Sb8b<lc23Hi^Evm=k>OPuNd2#hcYh<9wkgE6;4+p~c%i`g5*qnxZ}`q?q&xHEtO
zs^*E8XVfdS3CsKmUXkaw2+M9;EXPROVh-9o+5#(%dFhx7>Xmr$8o52^xt#RN%;oMD
z*|r9de$QQ2zH7<lNhDObUI9o1_de$ZMscslE3EPufS{e~Px0aa#?0<db6A}jfH%wS
z)pPxi7_ezJGttbE0cOKLeoQbYxHX>D*+a~pEVsazlVN;Qoo{faKOrchU>^1JM4nex
z-)5Eq%+o$ur}M<HhX$?f+yGz3$Sv|-WyUDCvlCr4yL@P_9KmAGUR+p|hV-n(g(}rW
z#bqcWKe!$-?M#Ta;#6nT^;Ge&3Od({!_be|-$a^ckLry$Q4K#y(gx!^5mD`dh<HtQ
zqlnAKjhOME(QJxHsAjXCtn1Qu36Fj_xd>Z@qz*y}E&zp#Ad5&esnSv9B--Q|BRBLF
zubt9zJBq`zeC<w)FP-l9K5NwLjll0ltxi4dV5aZH>sd7}%Xpi#3{((ssV1k4lYP(;
zt<HjUk#sL1?El{1fBxjv&d)D5pS|4tcewZ0aQBykryIk)z5R_}hr5r4yZ;>QZ5}+^
z8Nos~izg0$`{UKlPWSQ$9WGSoq&ci@thcV*TwhUF>MQC;!P;D<I)CaO*NG;+>gY_G
z1VU*?az7X^IL+oA5%6YH7ZVw`r61lzoy?fPrAYz56{(V@{u+eL8JkI@h?J(Qv50hO
z<*Nk4wtOYxNK;?7?`s>svM#RN;A!f&`PcE9c3M&>6a|{{HKE2GaR$skK|5cBG3y5W
ts_C?J3Be%_l)!;cGL$+{&N=8iK#!d46xsqd0tM^H$>1L9J~b<E-U9IMN7w)W

literal 0
HcmV?d00001

diff --git a/Model/__pycache__/__init__.cpython-36.pyc b/Model/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..8a3c7f4e350a20c4ed19d8a4aa0b13fddfaef458
GIT binary patch
literal 1086
zcmb7C&1(}u6rb7MY&M&(wtm!lvGgEBO#)gyiTHW5wV^^`LBo<6lZl(%b#`Lg;6X@{
zf(I{(XbJS<L3@bMOQC;;x4D{ro%J9+`6g{@5j?ody!U=@e)F4oZ{|umZLk0ED&Gu*
zzN2Gb0^*x6qF-PLBG^ODfyWN+W38?`I?;%}gdBsSdaQ2tZJb(d+y>4VauURFY!V|T
zi4&`8I7ymVK_t=9h)qycgS<_W;Nv9K$JPO6hLc*Dq{+MJ(IqDhsu_}|=@rz`+Bj;_
zG>JXc`079l7-`3zLC;!qh}y(}xt}ykGHr|z_-uWMCe?`m>GffX>mzOKoPhXb{S?7u
zhzt)nqo}O|>vS7osCX9TM)sh3G+n{U!Kb_h;|`4IF&Kda9s}+e;@1RpglGaoh5BLM
z7()uZP*&^2)fotyMgL^R6tiOvcsX-=Pi?u6CtCW%_ykv=rA>_I44D*^H<<5w_k1F)
z0gze{Ni$lE1a0K7j8}q2!}ZB$#MOoF7m7hBif$N2MM7!F{QNxgX`VNIpYq~VK&V$N
zmzmE*xm*YrW$Hml{fCDe!4pA|svhAKK93E|lMqYP${uPB4$(?CTtV|kFjMt|#&Nvx
zq(UeE%%3Y33PsOt`juKCszIH9>uGt)HQ1}A<?}6bzQ!uG@#Y0cY`<UKUVpdSeYLf`
zwzd4VxB02J@p|XuQg3r}d+AMY<7IE-%g*NV&RTaLk2g(NvG?}FZnxXK_+N|d+$dLz
zr4F5y*_p+XxLPQQIYz2fL^5#{9(2SAT~U*<DD;?+7N@S)Pgv#h6Xwx!StdgsRJq%j
z0UnQmu#*}z>pqJFSDlua@woD_kTYLMqaH9{rb@R$kgd3a1->*~UVScgxKEiZP0=WF
ztMqoTAgu~#0!W@T=mHb{yFX@ZC2L)81f=QF8|qC(m%&)r!Zx;IXADEru=-6s133$)
SG#d}~XANxjGZ}aSXYp?gwLb9x

literal 0
HcmV?d00001

diff --git a/Model/__pycache__/__init__.cpython-37.pyc b/Model/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5bcc16f9115751efa278435dcfd537655c986525
GIT binary patch
literal 1103
zcmb7C&ube;6rPz~tyZfac9OQKd#Ujupr(?bB!xmLZJOMg)Fy?%LbEKI=hZm-E3>0S
z7CsbWilK*GQbH08QXq#m2N!ZN_|NEVu2t;#T<F24ypf|O1ainM^S=4se)DGDn|GmJ
z_Xv(>|Hj?FZ9@JrWHu_e_!ehzgoYDNW8xnp_34ze#PTglIOEnP@ogY$rI9nWWpKxI
zjH(6VSGetayu=+|=5A#BRj527yt2)>$4SJ{@9`>Pnb)S=J?6spYlCx8y-0rk+^+)}
zHFzEBkH|I~(_#baymW)f$Fo?dsQcbBxw&zTfX8k8_aDsh#vMut;@oH+s$)83*60M#
zwUcA&p8{*`gVBea@_Bw@ra4W<m=k<-hhS#(DrufP#Qe#XE;WF|psCIGIE(9O6j5{m
zwF^Xkso2QkOi|3xdgZqlh+!MXvhDI1Z^X$}@=j&RD7T%NuIXGkG)ErMrJ=R7xFii3
zvZckQt*Z)TBGNFvlydFPh-O)#onpOEkTj`Z?q*36ru+{gT@&Z4PA^NK6Rq-y2LsW$
z2*nMR<sA-?w{D9RTC$&}AUl^c4sj<4L@HDewDWac`!R>~r&niUzmUR2B(z4)P@78A
zOPUPlOeB%EX7?G^lTg8H+K5uTz#Dw9+J$qk`KO(ByAy}~wA*VJJxuxSc&r7I;aNl0
zY7L#+J<;tg_CG_%{{7MZv)^Cr{Q7+B>GQ3>CVNjNyT2Vg+??#~?Qh<l?EW&@{qtaN
z>)`3m5nb#%xa08NgBLqH{j=}2*=wGbX0x`i$a-#heMOybuc&K+N1zH_`G0v_5jzi6
zPnU{37D~Gk!g%U%gJ4y}5CpoK%Pf*%vWz-e!oYrQR=XcWp`@v_rb3ntmU1alrR}v$
zq`J29U5;V9p%PiD?NCOyv=!#LuC82$q6j0nkPWokl|rE?);0`;nzq3k#x%2bzfLmV
rkKr5BUd0z^T<YS(x}}e8n=xuW$7-Mtz09NYh#o$=Gxao3`3ZdqpUp*?

literal 0
HcmV?d00001

diff --git a/README.md b/README.md
new file mode 100755
index 0000000..1b353af
--- /dev/null
+++ b/README.md
@@ -0,0 +1,512 @@
+<p width=100px align="center"><img src="https://storage.deepin.org/thread/202208031419283599_deepin-wine-runner.png"></p>
+<h1 align="center">Wine 运行器 3.1.0</h1>
+<hr>
+
+## 介绍
+Wine运行器是一个能让Linux用户更加方便地运行Windows应用的程序,内置了对Wine图形化的支持、各种Wine工具、自制的Wine程序打包器和运行库安装工具等。  
+它同时还内置了基于VirtualBox制作的、专供小白使用的Windows虚拟机安装工具,可以做到只需下载系统镜像并点击安装即可,无需考虑虚拟机的安装、创建、分区等操作。  
+此外,它还简化了如下命令,让你可以更简便地使用Wine:  
+```bash
+env WINEPREFIX=容器路径 wine(wine的路径) 可执行文件路径
+```
+让你可以简易方便的使用 wine  
+是使用 Python3 的 PyQt5 构建的    
+(测试平台:deepin 20.8;UOS 家庭版 21.3.1;Ubuntu 22.04;Ubuntu 20.04;UOS 专业版 1050;openkylin)    
+![截图_选择区域_20221002221112.png](https://storage.deepin.org/thread/202210022215217037_截图_选择区域_20221002221112.png)  
+而打包器可以方便的把您的 wine 容器打包成 deb 包供他人使用,程序创建的 deb 构建临时文件夹目录树如下:  
+```bash
+/XXX
+├── DEBIAN
+│   └── control
+│   └── postrm(可选)
+└── opt
+└── apps
+    └── XXX
+        ├── entries
+        │   ├── applications
+        │   │   └── XXX.desktop
+        │   └── icons
+        │       └── hicolor
+        │           └── scalable
+        │               └── apps
+        │                   └── XXX.png(XXX.svg)
+        ├── files
+        │   ├── files.7z
+        │   └── run.sh
+        └── info
+
+11 directories, 6 files
+```
+[![star](https://gitee.com/gfdgd-xi/deep-wine-runner/badge/star.svg?theme=dark)](https://gitee.com/gfdgd-xi/deep-wine-runner/stargazers)  
+最后感谢 [@鹤舞白沙](https://bbs.deepin.org/user/227203) 编写的《Wine运行器和Wine打包器傻瓜式使用教程(小白专用)》,链接:https://bbs.deepin.org/post/246837
+
+## 软件架构
+理论上支持全架构,如果 Python 能运行的话  
+非 X86 架构会利用到 `box86`、`exagear`、`qemu` 等技术  
+
+## 分支介绍
+### main 分支
+主分支,稳定分支
+
+## 版本区分
+### 无特殊标识
+普通版本(一般来自 Gitee、Github、Gitlink 等渠道)  
+### 版本号带`-spark`
+星火应用商店版本  
+### 版本号带`-uos`
+深度应用商店版本,一般带免开开发者模式签名  
+### 包名带`-52`
+吾爱论坛专版,只在吾爱论坛发布,功能会阉割(如更新、评分、bug反馈功能等等),一般建议使用上面的三个版本  
+![image.png](https://storage.deepin.org/thread/202209251259142818_image.png)  
+(没人喜欢看到这个无法连接服务器吧)    
+
+## 使用说明
+### 均在软件的“小提示”里有说明
+### 运行器
+1、使用终端运行该程序,可以看到 wine 以及程序本身的提示和报错;  
+2、wine 32 位和 64 位的容器互不兼容;  
+3、所有的 wine 和 winetricks 均需要自行安装(可以从 菜单栏=>程序 里面进行安装)  
+4、本程序支持带参数运行 wine 程序(之前版本也可以),只需要按以下格式即可:  
+```bash
+exe路径\' 参数 \'
+```
+即可(单引号需要输入)  
+5、wine 容器如果没有指定,则会默认为 ~/.wine  
+6、如果可执行文件比较大的话,会出现点击“获取该程序运行情况”出现假死的情况,因为正在后台读取 SHA1,只需要等一下即可(读取速度依照您电脑处理速度、读写速度、可执行文件大小等有关)  
+7、对于非 X86 的用户来说,请不要使用本程序自带的 Wine 安装程序和 Windows 虚拟机安装功能(检测到为非 X86 架构会自动禁用)  
+8、如果非 X86 的用户的 UOS 专业版用户想要使用的话,只需要在应用商店安装一个 Wine 版本微信即可在本程序选择正确的 Wine 运行程序   
+9、在使用 linglong 包的 Wine 应用时,必须安装至少一个 linglong 的使用 Wine 软件包才会出现该选项,而程序识别到的 Wine 是按 linglong 的使用 Wine 软件包名的字母排序第一个的 Wine,且生成的容器不在用户目录下,而是在容器的用户目录下(用户目录/.deepinwine、/tmp、桌面、下载、文档等被映射的目录除外),同理需要运行的 EXE 也必须在被映射的目录内  
+10、如果是使用 Deepin 23 的 Wine 安装脚本,请切记——安装过程会临时添加 Deepin 20 的 apt 源,不要中断安装以及千万不要中断后不删除源的情况下 apt upgrade !!!中断后只需重新打开脚本输入 repair 或者随意安装一个 Wine(会自动执行恢复操作)即可。以及此脚本安装的 Wine 无法保证 100% 能使用,以及副作用是会提示  
+```bash 
+N: 鉴于仓库 'https://community-packages.deepin.com/beige beige InRelease' 不支持 'i386' 体系结构,跳过配置文件 'main/binary-i386/Packages' 的获取。  
+```
+![image.png](https://storage.deepin.org/thread/202208131811324016_image.png)  
+### 打包器
+1、deb 打包软件包名要求:  
+软件包名只能含有小写字母(a-z)、数字(0-9)、加号(+)和减号(-)、以及点号(.),软件包名最短长度两个字符;它必须以字母开头
+2、如果要填写路径,有“浏览……”按钮的是要填本计算机对应文件的路径,否则就是填写安装到其他计算机使用的路径  
+3、输入 wine 的容器路径时最后面请不要输入“/”  
+4、输入可执行文件的运行路径时是以“C:/XXX/XXX.exe”的格式进行输入,默认是以 C: 为开头,不用“\”做命令的分隔,而是用“/”  
+5、.desktop 的图标只支持 PNG 格式和 SVG 格式,其他格式无法显示图标  
+![image.png](https://storage.deepin.org/thread/202207190820337719_image.png)
+### 基于统信 Wine 生态适配脚本的打包器
+第一个文本框是应用程序中文名  
+第二个文本框是应用程序英文名  
+第三个文本框是最终生成的包的描述  
+第四个选择框是desktop文件中的分类  
+第五个输入框是程序在 Wine 容器的位置,以 c:\\XXX 的形式,盘符必须小写,用反斜杠,如果路径带用户名的话会自动替换为$USER  
+而 StartupWMClass 字段将会由程序自动生成,作用如下:  
+desktop文件中StartupWMClass字段。用于让桌面组件将窗口类名与desktop文件相对应。这个值为实际运行的主程序EXE的文件名,wine/crossover在程序运行后会将文件名设置为窗口类名  
+第六个输入框是最终生成的包的包名,包名的命名规则以deepin开头,加官网域名(需要前后对调位置),如还不能区分再加上应用名  
+最后一个是最终生成的包的版本号,版本号命名规则:应用版本号+deepin+数字  
+![image.png](https://storage.deepin.org/thread/202207190822204627_image.png)
+
+## 更新日志 
+### 3.1.0(2023年01月06日)
+**※1、不基于生态适配脚本打包器支持禁用 Mono/Gecko 打包器;**  
+**※2、自动容器配置脚本新增命令 decompressionbottle、programforum、installmsi 以及上述命令的帮助;**  
+**※3、自动容器配置脚本新增评论功能;**  
+**※4、自动容器配置脚本新增许多应用安装脚本;**  
+**※5、安装 Windows 虚拟机功能更换应答镜像图标并添加常用 Windows 组件安装功能;**  
+**※6、安装 Windows 虚拟机功能提供镜像下载的网盘链接;**  
+**※7、简易打包器支持自动添加宋体;**  
+8、修复 installfont 命令下载的字体目录错误问题;  
+9、修复提交日志功能在提交成功时依旧提示提交失败问题;  
+10、支持强制启用所有被禁用的组件(不推荐)。  
+
+![图片.png](https://storage.deepin.org/thread/202301061133232305_图片.png)  
+
+### 3.0.0(2022年12月10日)
+**※1、支持使用 Qemu + Chroot 跨运行 Wine 以及指定程序的功能;**  
+**※2、提供了简易打包器以用于打包简易 deb;**  
+**※3、支持下载配置过的 Qemu + Chroot 容器;**  
+**※4、支持在隔离的 Chroot 容器内运行 Wine;**  
+**※5、支持解压指定 deb 的内打包好的容器;**  
+**※6、优化 Wine 列表显示;**  
+**※7、新增程序论坛和教程入口;**  
+**※8、程序公告功能;**  
+**※9、新增程序评分功能;**  
+**※10、新增解包 deb 内 Wine 容器功能;**  
+**※11、新增 Vkd3d Proton 安装功能,更新 dxvk 版本至 2.0.0;**  
+**※12、新增程序菜单栏部分栏目图标;**  
+**※13、打包器支持按下 Shift + F1 查看指定选项提示;**  
+14、优化非基于生态适配脚本的打包器内容自动填充功能;  
+15、优化程序文案;  
+16、新增日志翻译功能;  
+17、程序进一步完善英语翻译(机翻);  
+18、优化程序更新策略;  
+19、优化日志分析功能;  
+20、优化程序 UI。  
+![image.png](https://storage.deepin.org/thread/202212102108356218_image.png)  
+
+### 2.5.0.1(2022年11月25日)
+**※1、修复已知问题**  
+
+### 2.5.0(2022年11月25日)
+**※1、容器自动配置脚本 GUI 查看介绍使用 QWebEngineWidget,支持图片(非强制依赖,只做推荐);**  
+**※2、不基于生态适配活动脚本打包器跟进 arm 架构 2022年11月11日的 Wine 微信打包方式;**  
+**※3、支持多图标的程序打包;**  
+**※4、修复了安装更多 Wine 换源换了个寂寞的问题;**  
+**※5、修复安装更多 Wine 重新安装后列表丢失的问题;**  
+**※6、新增了对 Deepin 23 Alpha 优化的 Wine 安装器;**  
+**※7、新增 Dll 名称查询功能,可以查询对应 Dll 的作用;**  
+**※8、支持静态获取可执行文件可以调用的 Dll 并提供解决方案;**  
+**※9、支持移除指定的 .desktop 快捷方式;**  
+**※10、新增日志分析功能以及导出、上传日志功能;**  
+11、修复了不基于生态适配活动脚本打包器在选择 arm 打包架构下容器自动删除脚本取消勾选无用的问题;  
+12、优化文案、新增友链;  
+13、提供了部分组件的测试功能。  
+![image.png](https://storage.deepin.org/thread/202211250932168081_image.png)  
+
+### 2.4.1.1(2022年11月21日)
+**※1、修复已知问题**  
+
+### 2.4.1(2022年11月06日)
+**※1、不基于生态适配活动脚本的打包器支持只生成制作容器的 7z 包**  
+**※2、两个打包器的容器自动删除脚本添加 kill.sh**  
+**※3、Wine 运行器支持杀死对应容器进程**  
+**※4、容器自动配置脚本和 Wine 安装器支持切换源**  
+5、非生态适配脚本打包器追加运行参数改为 --uri XXX 而非直接 XXX  
+6、两个打包器新增星火应用商店投稿入口  
+7、优化开启 Windows 虚拟机功能在未安装 VirtualBox 时的提示  
+8、Reg Shot 版本从 1.8.3-beta1V5 升级到 1.9.0  
+9、Geek Uninstaller 版本从 1.5.1.161 升级到 1.5.1.163  
+10、容器自动配置脚本添加 installother 命令、修复返回值传递问题  
+11、不显示 pip 安装库的提示信息(因为不是很核心的库)  
+12、非基于生态适配活动脚本的打包器默认勾选卸载该 deb 后自动删除容器、使用统信活动容器清理脚本、使用星火 wine helper  
+13、优化文案  
+![image.png](https://storage.deepin.org/thread/202211061755115167_image.png)
+
+### 2.4.0(2022年10月25日)
+**※1、新增 VB Runtime 组件安装工具**  
+**※2、优化自动配置容器搜索功能,搜索不区分大小写**  
+**※3、新增 Wine 容器快捷键映射功能**  
+**※4、修复在 arm 架构运行 Wine 时提示无法解压资源的问题**  
+**※5、修复右键无法找到 Wine 运行器打开方式的问题**  
+**※6、修复了容器自动配置脚本 GUI 解析器无法指定 Wine、容器以及位数的功能**  
+**※7、容器自动配置脚本支持评分功能以及脚本内容介绍功能**  
+**※8、支持添加自定义安装的 Wine**  
+**※9、打包器打包的 arm 包支持同时支持 UOS 的 box86 和 exagear**  
+**※10、提供了 Python 的自动配置脚本 API**  
+![截图_选择区域_20221026213608.png](https://storage.deepin.org/thread/202210262151486316_截图_选择区域_20221026213608.png)
+![截图_选择区域_20221026213546.png](https://storage.deepin.org/thread/202210262151481582_截图_选择区域_20221026213546.png)
+
+
+### 2.3.0(2022年10月02日)
+**※1、自动配置解释器支持 bash 语法(新版底层调用 bash,旧版任然使用旧版解析引擎)**  
+**※2、修复缺失 wimtools 依赖导致无法正常安装的问题**  
+**※3、修复基于生态适配活动脚本打包器对话框过多影响使用的问题,并支持指定不同的包名和容器名**  
+**※4、7z 文件解压不会自动替换文件然后卡死以及因此导致程序闪退的问题**  
+**※5、修复安装更多 Wine 终端调用问题和图标问题**  
+**※6、支持 openkylin**  
+7、支持通过 exe 路径自动生成 Wine 容器路径  
+8、支持禁用/启用 wine 容器是否生成快捷方式的功能以及启用/禁用程序崩溃提示对话框  
+9、支持设置 wine 容器代理  
+10、自动配置脚本支持使用 `--help` 参数查看帮助  
+![截图_选择区域_20221002221112.png](https://storage.deepin.org/thread/202210022215217037_截图_选择区域_20221002221112.png)  
+
+### 2.2.0(2022年09月24日)
+**※1、Dll 提取工具支持 NT 6.X 及以上版本的 Dll 提取并优化了提示文本**  
+**※2、支持卸载后自动删除缓存/配置文件(删除配置文件只限 purge 参数删除)**  
+**※3、DEBUG 模式输出更多信息以方便调试(原本只输出 pid、Err)**  
+**※4、支持安装 msi 文件**  
+**※5、修复无法正常评分的问题**  
+**※6、修复 QQ、TIM 安装后无法正常生成快捷方式的问题**  
+**※7、基于生态适配活动的打包器更换为 spark-wine-helper 以及添加自动删除残留脚本**  
+**※8、打包器支持从 deb 文件读取信息**  
+**※9、修复在 UOS 专业版(鲲鹏)无法正常运行的问题以及组件安装功能无法正常执行安装命令的问题**  
+**※10、修复出现星火应用商店和官方应用商店反复提示更新死循环的问题**  
+**※11、新增评分分数预测功能(不准)**  
+**※12、更换程序接口**  
+13、更新组件安装的离线列表  
+14、不再强制依赖深度终端,只做推荐安装  
+15、基于生态活动适配脚本的打包器在打包完成后会弹出对话框提示打包完成  
+16、优化打包器的 spark wine helper 依赖设置方式  
+17、新增 RegShot(注册表比对工具)  
+18、添加 Wine 运行器评分数据的搜索功能  
+![image.png](https://storage.deepin.org/thread/202209242126366137_image.png)  
+
+### 2.1.0-2(2022年09月05日)
+**※1、修复终端调用问题**  
+
+### 2.1.0-1(2022年09月03日)
+**※1、删除多余图标**  
+**※2、修复将打包文件生成目录设置为 / 等重要目录导致删库的问题**  
+3、修复了打包器浏览按钮闪退、生成的 postrm 有误的问题  
+4、支持在输入信息时自动生成 deb 保存路径  
+
+### 2.1.0(2022年08月26日)
+**※1、新增新的 Wine 安装器,并支持将安装的 Wine 打包到 Wine 程序 deb 包中**   
+**※2、Wine 打包器打包 Windows 应用支持将 Wine 打包入 deb 内,可以不依赖 Wine(一般不推荐把 Wine 打包入内,推荐用依赖的形式),并支持设置自定义依赖和生成模板**  
+**※3、开始初步多语言支持**  
+**※4、修复了在没有安装任何 Wine 的情况下使用高级功能导致程序闪退的问题**  
+**※5、支持云端自动获取数据配置 Wine 容器**  
+**※6、支持手动导入配置文件自动配置 Wine 容器**  
+**※7、新增从云端下载 Dll 的功能**  
+**※8、修复了 Dll 提取工具不会在 winecfg 中添加原装的问题**  
+9、修改错别字(图形话=>图形化)  
+10、修复评分功能名称为空也可以上传评分的问题  
+11、去除 toilet 依赖,使在 Deepin 23 Preview 上运行更佳  
+12、支持删除所有由 Wine 创建的启动器快捷方式  
+![截图_选择区域_20220826143213.png](https://storage.deepin.org/thread/202208261437088825_截图_选择区域_20220826143213.png)
+
+### 2.0.0-2(2022年08月16日)
+修复了在 deepin 23 安装缺少`toilet`依赖导致无法安装的问题,更多更新内容请见 2.0.0    
+
+### 2.0.0-1(2022年08月15日)
+修复了缺失`python3-psutil`依赖的问题,更多更新内容请见 2.0.0  
+
+### 2.0.0(2022年08月13日)
+**※1、修复了重复路径一直自动重复增加的问题**  
+**※2、修复了两个打包器打包错误的问题(非基于生态活动脚本的为 wine 导入错误,基于生态活动脚本的为架构有误导致打包出的 deb 无法打包)**  
+**※3、适配了部分非 i386、amd64 架构计算机的 UOS 系统使用的 wine 并支持打包非 i386、amd64 架构计算机的 UOS 系统使用的 wine 程序 deb 包**  
+**※4、支持安装 dxvk(遵守 Zlib 开源协议)**  
+**※5、运行器、打包器(包括非基于生态适配活动脚本制作的)支持使用 Wine 生态适配活动的容器清理脚本**  
+**※6、支持更加简易的安装最新版的 WineHQ**  
+**※7、增加字体商店**  
+**※8、新增查看可执行文件运行情况的功能**  
+9、支持不显示没有安装的 Wine,方便用户识别  
+10、修改了 Wine 的顺序使其更加合理  
+11、支持删除安装 exe 后在启动器的快捷方式  
+12、优化了 Wine 打包器(非基于生态活动脚本)对容器的处理  
+13、修复了 Wine 打包器(非基于生态活动脚本)打包出的 deb 安装时显示为解压缩后会消耗 0 B 的额外空间以及 postrm 的一些问题  
+14、支持删除无需使用的程序组件  
+15、支持组件/运行库下载后缓存方便下次使用(可以清理)  
+16、点击获取图标按钮后会自动读取 exe 框的程序图标(不支持相对路径和包内路径,只支持绝对路径)  
+![image.png](https://storage.deepin.org/thread/202208131811324016_image.png)  
+
+### 1.8.0(2022年08月03日)
+**※1、修复了打包器(非基于活动脚本) control、postrm 写入文件颠倒的问题**  
+**※2、内置一个微型的 Windows 应用商店(应用来源:腾讯软件管家)**  
+**※3、初步支持 deepin 23(添加基于 linglong Wine 的运行方式,需要安装一个 linglong 包的 使用 Wine 应用;添加从 Deepin 20 源获取 Wine 的安装方式)**  
+4、更新了打包器(非基于活动脚本)调用星火 spark-wine-helper 的 run.sh 脚本格式  
+5、修复了打包器(基于活动脚本)在 dde-top-panel 和 dde-globalmenu-service 下无法打开帮助提示的问题  
+6、支持屏蔽 Wine 默认的 Mono、Gecko 安装器(屏蔽方法来自星火应用商店审核组和提供的新 run.sh 标准)  
+![image.png](https://storage.deepin.org/thread/202208031351466402_image.png)  
+![image.png](https://storage.deepin.org/thread/2022080317313975_image.png)  
+
+### 1.7.1(2022年07月29日)
+**※1、更换为 @PossibleVing 提供的程序图标**  
+**※2、修改了统信 Wine 生态适配活动的脚本,支持在非 UOS 系统打包**  
+**※3、修复了打包器在打包应用未指定图标的情况下显示对话框后强制退出的问题**  
+4、修改 .net framework 3.5 的安装包,从在线版改为本地版  
+5、支持设置主题  
+6、添加 Geek Uninstaller 手动升级脚本  
+
+![image.png](https://storage.deepin.org/thread/202207291533597182_image.png)
+
+### 1.7.0(2022年07月19日)
+<b>※1、界面大改造,从使用 Tkinter 改为 Qt,参考了 @134******28 和 @sgb76 提供的设计方案和代码</b>  
+
+**※2、添加了基于 UOS 生态适配活动打包脚本的打包器,以及基于 Virtualbox 的简易 Windows 镜像安装工具**  
+**※3、将 pip 由阿里源改为华为源,提升下载安装速度,并删除使用 pip 下载库的功能(已不需要,废弃)**  
+4、添加 @delsin 和 @神末shenmo 建议的 postrm 脚本  
+5、优化多屏窗口居中问题  
+6、修复 1.6.0 程序无法保存设置的问题  
+7、修复 1.6.0 的更新程序无法正常更新的问题  
+8、升级 Geek Uninstaller 版本  
+![image.png](https://storage.deepin.org/thread/202207190819153104_image.png)
+
+
+### 1.6.0(2022年07月10日)
+**※1、新增程序感谢、谢明以及程序的建议和问题反馈和内置更新程序**  
+**※2、支持 winetricks 指定 Wine 打开**  
+**※3、新增窗口透明工具,感谢@a2035274 和 @虚幻的早晨 在论坛的讨论**  
+**※4、支持在指定容器、Wine 安装 MSXML**  
+**※5、支持启用/关闭 opengl(感谢@zhangs 在论坛发帖)以及支持安装/卸载 winbind**  
+**※6、添加云沙箱的网站链接快捷方式**  
+**※7、支持从星火应用商店源安装 Windows 常见字体**  
+8、优化窗口布局以及默认显示位置  
+9、支持打开指定容器、Wine 的资源管理器  
+![image.png](https://storage.deepin.org/thread/202207101734379289_image.png)
+
+### 1.5.3(2022年07月07日)
+**※1、新增专门的程序设置,支持设置 Wine 容器架构、DEBUG 信息是否输出、默认的 Wine、默认容器路径、是否使用终端打开和 Wine 参数**  
+**※2、修复了 wine 打包器的控件禁用不全和打包的 deb 用户残留的问题**  
+**※3、新增暗黑主题**  
+4、合并了 deepin wine 文管设置器  
+![Screenshot_20220707_215916.png](https://storage.deepin.org/thread/202207072207209350_Screenshot_20220707_215916.png)
+
+### 1.5.2(2022年07月06日)
+**※1、添加并翻新了 deepin-wine5 打包器,改为 wine 打包器,支持常见 wine 的打包**  
+**※2、新增 Visual Studio C++ 的安装程序**  
+**※3、新增从系统安装镜像提取 DLL 到 wine 容器的功能(当前只支持 Windows XP 和 Windows Server 2003 的官方安装镜像)**  
+4、修复了安装星火应用商店的 wine 运行器右键打开方式没有 wine 运行器选项的问题  
+5、新增脚本,优化 deepin terminal 调用本程序脚本显示不佳的问题  
+![image.png](https://storage.deepin.org/thread/202207061004446872_image.png)
+![image.png](https://storage.deepin.org/thread/202207061005149959_image.png)
+![image.png](https://storage.deepin.org/thread/202207061005251446_image.png)
+
+
+### 1.5.1(2022年07月04日)
+**※1、支持打开 spark-wine7-devel 的专门缩放设置(如未安装则此按钮禁用)**  
+**※2、支持提取选择的 exe 文件的图标**  
+**※3、支持向指定的 wine 容器安装 mono、gecko、.net framework(此功能在菜单栏“Wine”中,卸载只需要使用程序的卸载按钮打开 Geek Uninstaller 即可)**  
+**※4、支持指定特定的 wine 容器调用 winetricks**  
+**※5、在没有指定 wine 容器的情况下,将自动设置为 ~/.wine**  
+6、新增 ukylin-wine  
+7、将默认选择的 wine 改为 deepin-wine6 stable  
+8、支持打开指定容器的 winecfg、winver、regedit、taskmgr  
+9、双击使用 wine 运行器打开 exe(不知道能不能生效) 
+![image.png](https://storage.deepin.org/thread/202207042234078682_image.png)
+
+
+### 1.5.0(2022年07月03日)
+**※1、支持显示 wine 程序运行时的返回内容**  
+**※2、优化打包方式,减少从 pip 安装的库,并将 pip 源设为阿里源提升下载速度**  
+**※3、新增 spark-wine7-devel**  
+**※4、支持从程序启动用于安装 wine 的程序(在菜单栏的“程序”)**  
+5、优化 wine 安装脚本,在安装星火应用商店的 wine 时支持检测是否有 ss-apt-fast,如果有就调用替代 apt 提升安装速度  
+6、支持关闭指定 wine 的进程,以及访问对应 wine 容器的目录和字体目录  
+7、从生成shell脚本改为升级到desktop文件  
+![image.png](https://storage.deepin.org/thread/202207031902414162_image.png)
+
+
+### 1.4.0(2021年07月27日)
+**※1、修改了 wine 选项的说明和 wine 的启动方式;**  
+**※2、设置了窗口主题;**  
+**※3、修改了打包以及 .desktop 文件**  
+4、删除了以前的残略调试代码;  
+5、优化了 wine 列表的显示流程;  
+6、更新了“关于”窗口  
+7、更新了提示内容  
+8、在 gitee/github 仓库上添加了 wine 安装脚本  
+![](https://images.gitee.com/uploads/images/2021/0727/151226_750579c2_7896131.png)  
+
+### 1.3.1(2021年05月23日)
+1、添加了历史记录,使用更加方便  
+2、增加“更新内容”项  
+3、支持浏览窗口的默认路径为上次访问的路径  
+4、支持清空历史记录  
+5、代码结构优化  
+6、修改了控件大小  
+![run](https://images.gitee.com/uploads/images/2021/0523/155621_95e6fea5_7896131.png "截图录屏_选择区域_20210523153529.png")
+![run](https://images.gitee.com/uploads/images/2021/0523/155633_b7ab458a_7896131.png "截图录屏_选择区域_20210523153548.png")
+![run](https://images.gitee.com/uploads/images/2021/0523/155643_fc933b76_7896131.png "截图录屏_选择区域_20210523153929.png")
+![run](https://images.gitee.com/uploads/images/2021/0523/155654_90ceb8ce_7896131.png "截图录屏_选择区域_20210523153947.png")
+![run](https://images.gitee.com/uploads/images/2021/0523/155702_66841e22_7896131.png "截图录屏_选择区域_20210523154007.png")
+
+### 1.3.0(2021年05月22日) 
+1. 修改了窗口显示控件的库(从 tkinter 到 tkinter.ttk)
+2. 添加了更多 wine 可以选择(deepin-wine、deepin-wine5、wine、wine64、deepin-wine5-stable、deepin-wine6-stable)
+3. 修改了程序的提示信息
+![输入图片说明](https://images.gitee.com/uploads/images/2021/0522/175640_a592db4d_7896131.png "截图录屏_tk_20210522170529.png")
+
+### 1.2.0(2021年03月14日) 
+1. 修改布局方式
+2. 轻度梳理代码布局
+![输入图片说明](https://images.gitee.com/uploads/images/2021/0314/181320_cb4cbf72_7896131.png "屏幕截图.png")
+
+### 1.1.2 (未发布发行版)
+1. 进行了细节优化
+
+### 1.1.1(2021年01月31日)
+1. 使用多线程,防止界面假死
+2. 添加软件图标
+![](https://images.gitee.com/uploads/images/2021/0131/143557_40911a67_7896131.png)
+
+### 1.1.0(2021年01月29日)
+1. 修改了代码的部分内容,使其支持容器路径可带空格无需“\”转义,以及支持手动保存运行脚本到桌面
+
+### 1.0.0(2021年01月29日)
+1. 实现内容
+
+## 源码安装教程
+1. 安装需要的依赖  
+```bash
+sudo apt install git make
+```
+2. 下载仓库  
+```bash
+git clone https://gitee.com/gfdgd-xi/deep-wine-runner.git
+cd deep-wine-runner
+```
+3. 从源码运行程序(如果是从源码安装请跳过这一步)  
+```bash
+make depend
+make run
+```
+4. 从源码安装程序  
+```bash
+make install
+```
+## Openkylin 如何安装这个 Wine 运行器?
+首先添加作者的源:    
+Gitlink 源(国内推荐):    
+```bash
+wget https://code.gitlink.org.cn/gfdgd_xi/gfdgd-xi-apt-mirrors/raw/branch/master/sources/gitlink.sh && bash gitlink.sh && rm gitlink.sh
+```
+Github 源(国外推荐):    
+```bash
+wget https://gfdgd-xi.github.io/gfdgd-xi-apt-mirrors/sources/github.sh && bash github.sh && rm github.sh
+```
+上面二选一,添加完后执行  
+```bash
+sudo apt install spark-deepin-wine-runner
+```
+即可自动补全依赖安装(说实话 openkylin 缺的依赖好多)  
+
+## 对于 Deepin/UOS(AMD64 平台)小白如何使用该程序?
+下面是送给小白的 wine 运行器简单使用方法,先声明,wine 并***不能完美的运行所有 exe 文件***,利用此 wine 运行器简易安装可执行文件的方法如下:  
+
+1. 安装本程序
+2. 在应用商店里随便安装一个 QQ 或者微信等基于 deepin-wine6-stable 打包的应用
+   ![image.png](https://storage.deepin.org/thread/202207061542433333_image.png)
+3. 找到需要安装的 exe,双击或者右键=》打开方式=》wine 运行器打开
+   ![image.png](https://storage.deepin.org/thread/202207061543443740_image.png)
+4. 点击“运行程序”即可
+   ![image.png](https://storage.deepin.org/thread/202207191920282406_image.png)
+
+
+## 稍微讲一下目前 deepin 23 Preview 运行自定义 exe 的方法(Wine 运行器均已支持)
+
+### 方法一
+
+随便安装一个 linglong 格式包的 wine 程序(要记住包名),然后在终端输入
+
+```bash
+ll-cli run 包名 --exec '/bin/deepin-wine6-stable'
+```
+
+即可,缺陷可看运行器上方小提示第 6 点
+
+### 方法二(容易翻车)
+
+添加 Deepin 20 的**官方源和商店源**,然后输入如下的命令:**切记不能sudo apt upgrade**,会出现的问题可以看运行器的小提示第 7 点,以及无法保证所有 Wine 均可运行
+
+```bash
+sudo dpkg --add-architecture i386
+sudo apt update
+# 安装普通的 Wine
+sudo apt install wine
+# 安装 deepin-wine5-stable(本机测试 X64 的 Wine 跑不了)
+sudo apt install deepin-wine5-stable
+# 安装 deepin-wine6-stable
+sudo apt install deepin-wine6-stable
+```
+**使用完后最好删除掉 Deepin 20 的官方源和商店源,防止出问题**  
+可以看 [@ThinkYoung](user/18570) 写的 https://bbs.deepin.org/post/241148,可以参考借鉴  
+
+### 方法三
+我不知道了,希望能有大佬提供更好的解决方案
+
+## 下载链接
+Gitee:https://gitee.com/gfdgd-xi/deep-wine-runner  
+Github:https://github.com/gfdgd-xi/deep-wine-runner  
+Gitlink:https://www.gitlink.org.cn/gfdgd_xi/deep-wine-runner  
+蓝奏云:https://gfdgdxi.lanzouj.com/b01nz7y3e,密码:7oii  
+星火应用商店:spk://store/tools/spark-deepin-wine-runner  
+
+## 更多
++ https://gitee.com/gfdgd-xi/deep-wine-runner
++ https://github.com/gfdgd-xi/deep-wine-runner
++ https://www.gitlink.org.cn/gfdgd_xi/deep-wine-runner
+
+## 程序下载量
+![](https://gfdgd-xi.github.io/images/wine-runner.svg)  
+
+## Star 一下吧
+开发不易,原创艰难,给一个 Star 吧,你的 Star 是我继续开发的动力  
+![star](https://gitee.com/gfdgd-xi/deep-wine-runner/badge/star.svg?theme=dark)  
+
+# ©2020-Now
\ No newline at end of file
diff --git a/RemovePycacheFile.py b/RemovePycacheFile.py
new file mode 100755
index 0000000..3c4ae8f
--- /dev/null
+++ b/RemovePycacheFile.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python3
+import os
+def Remove(path):
+    for i in os.listdir(path):
+        nowPath = f"{path}/{i}"
+        if os.path.isdir(nowPath):
+            if i == "__pycache__":
+                os.system(f"rm -rfv '{nowPath}'")
+            else:
+                Remove(nowPath)
+programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
+debPath = f"{programPath}/deb"
+Remove(debPath)
\ No newline at end of file
diff --git a/deb/DEBIAN/control b/deb/DEBIAN/control
new file mode 100755
index 0000000..97ec3f7
--- /dev/null
+++ b/deb/DEBIAN/control
@@ -0,0 +1,30 @@
+Package: spark-deepin-wine-runner
+Version: 3.1.0
+Maintainer: gfdgd xi <3025613752@qq.com>
+Homepage: https://gitee.com/gfdgd-xi-org/deep-wine-runner
+Architecture: all
+Severity: serious
+Certainty: possible
+Check: binaries
+Type: binary, udeb
+Priority: optional
+Depends: python3, python3-pil, libc6, python3-pil.imagetk, python3-pyquery, aria2, curl, unrar, unzip, python3-requests, python3-pyqt5, python3-psutil, deepin-terminal | mate-terminal | gnome-terminal | xfce4-terminal, python3-dbus, python3-pip, p7zip-full, sudo
+Recommends: winbind, wimtools, python3-pyqt5.qtwebengine
+Section: utils
+Conflicts: spark.deepin-venturi-setter, spark-deepin-wine5-application-packer, spark-deepin-wine-runner-52, spark-deepin-wine-runner
+Replaces: spark.deepin-venturi-setter, spark-deepin-wine5-application-packer, spark-deepin-wine-runner-52, spark-deepin-wine-runner
+Installed-Size: 25856
+Description: gfdgd xi、为什么您不喜欢熊出没和阿布呢 制作的 wine 运行器,RacoonGX 团队作品
+ 3.1.0 更新内容:
+ ※1、不基于生态适配脚本打包器支持禁用 Mono/Gecko 打包器;
+ ※2、自动容器配置脚本新增命令 decompressionbottle、programforum、installmsi 以及上述命令的帮助;
+ ※3、自动容器配置脚本新增评论功能;
+ ※4、自动容器配置脚本新增许多应用安装脚本;
+ ※5、安装 Windows 虚拟机功能更换应答镜像图标并添加常用 Windows 组件安装功能;
+ ※6、安装 Windows 虚拟机功能提供镜像下载的网盘链接;
+ ※7、简易打包器支持自动添加宋体;
+ 8、修复 installfont 命令下载的字体目录错误问题;
+ 9、修复提交日志功能在提交成功时依旧提示提交失败问题;
+ 10、支持强制启用所有被禁用的组件(不推荐)。
+ 更新时间:2023年01月06日
+ 作者:gfdgd xi、为什么您不喜欢熊出没和阿布呢,RacoonGX 团队作品
diff --git a/deb/DEBIAN/postinst b/deb/DEBIAN/postinst
new file mode 100755
index 0000000..fdb14f0
--- /dev/null
+++ b/deb/DEBIAN/postinst
@@ -0,0 +1,67 @@
+#!/bin/sh
+# 使用系统默认的 sh 运行
+#################################################################################################################
+# 作者:gfdgd xi、为什么您不喜欢熊出没和阿布呢
+# 版本:3.0.0
+# 更新时间:2022年10月02日
+# 感谢:感谢 wine、deepin-wine 以及星火团队,提供了 wine、deepin-wine、spark-wine-devel 给大家使用,让我能做这个程序
+# 基于 sh
+#################################################################################################################
+# 非强制性的必应组件,所以成功不成功都行
+echo 安装组件
+python3 -m pip install --upgrade pynput --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple > /dev/null 2>&1 | true
+python3 -m pip install --upgrade xpinyin --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple > /dev/null 2>&1 | true
+echo 执行完成
+echo 移除旧组件
+if [ -d /opt/apps/deepin-wine-runner/arm-package ]; then
+	rm -rf /opt/apps/deepin-wine-runner/arm-package
+fi
+if [ -d /opt/apps/deepin-wine-runner/dlls-arm ]; then
+	rm -rf /opt/apps/deepin-wine-runner/dlls-arm
+fi
+if [ -d /opt/apps/deepin-wine-runner/exa ]; then
+	rm -rf /opt/apps/deepin-wine-runner/exa
+fi
+if [ -d /opt/apps/deepin-wine-runner/dxvk ]; then
+	rm -rf /opt/apps/deepin-wine-runner/dxvk
+fi
+echo 移除完成
+# 如果为非 X86 PC,可以删除掉一些无用组件(主要是用不了)
+if [ `arch` != "x86_64" ]; then
+	echo 非X86架构,删除对非X86架构无用的组件
+	# 删除虚拟机功能
+	rm -rf /opt/apps/deepin-wine-runner/StartVM.sh
+	rm -rf /opt/apps/deepin-wine-runner/RunVM.sh
+	rm -rf /opt/apps/deepin-wine-runner/VM
+	rm -rf /usr/share/applications/spark-deepin-wine-runner-control-vm.desktop
+	rm -rf /usr/share/applications/spark-deepin-wine-runner-start-vm.desktop
+	# 删除安装 wine 功能
+	rm -rf "/opt/apps/deepin-wine-runner/wine install"
+	# 这个注释掉的理论可用,不移除
+	#rm -rf "/opt/apps/deepin-wine-runner/wine"
+	rm -rf /usr/bin/deepin-wine-runner-wine-installer
+	rm -rf /usr/bin/deepin-wine-runner-wine-install-deepin23
+	rm -rf /usr/bin/deepin-wine-runner-wine-install
+	rm -rf /usr/bin/deepin-wine-runner-winehq-install
+	rm -rf /opt/apps/deepin-wine-runner/InstallWineOnDeepin23.py
+	rm -rf /opt/apps/deepin-wine-runner/sparkstore.list
+	rm -rf /opt/apps/deepin-wine-runner/AllInstall.py
+	rm -rf /opt/apps/deepin-wine-runner/InstallNewWineHQ.sh
+fi
+# 到时候切换 gpg 源会方便很多
+if [ -r /etc/apt/sources.list.d/better-dde.list ]; then
+	if [ -d /usr/share/deepin-installer ]; then
+		# 用于修复 Deepin Community Live CD Install 版签名过期的问题
+		wget -P /tmp/gfdgd-xi-sources https://code.gitlink.org.cn/gfdgd_xi/gfdgd-xi-apt-mirrors/raw/branch/master/gpg.asc
+		rm -rfv /etc/apt/trusted.gpg.d/gfdgdxi-list.gpg | true
+		cp -v /tmp/gfdgd-xi-sources/gpg.asc.gpg /etc/apt/trusted.gpg.d/gfdgdxi-list.gpg
+    	# 用于修复 2022.11.25 Better DDE 导致的 Deepin Community Live CD Install 版问题
+		# 移除 Better DDE 源
+    	rm -rfv /etc/apt/sources.list.d/better-dde.list
+		apt update > /dev/null 2>&1 | true
+	fi
+fi
+# 设置目录权限,让用户可读可写,方便后续删除组件
+chmod 777 -R /opt/apps/deepin-wine-runner
+# 向服务器返回安装数加1(不显示内容且忽略错误)
+python3 /opt/apps/deepin-wine-runner/Download.py 3.1.0 > /dev/null 2>&1 | true
diff --git a/deb/DEBIAN/postrm b/deb/DEBIAN/postrm
new file mode 100755
index 0000000..8be3ac3
--- /dev/null
+++ b/deb/DEBIAN/postrm
@@ -0,0 +1,54 @@
+#!/bin/bash
+# 使用系统默认的 sh 运行
+#################################################################################################################
+# 作者:gfdgd xi、为什么您不喜欢熊出没和阿布呢
+# 版本:2.2.0
+# 更新时间:2022年09月24日
+# 感谢:感谢 wine、deepin-wine 以及星火团队,提供了 wine、deepin-wine、spark-wine-devel 给大家使用,让我能做这个程序
+# 基于 sh
+#################################################################################################################
+# 删除软件残留,简单粗暴一点直接全部删掉,防止出现警告
+# 加判断是为了怕 reinstall 后程序就再也打不开了(除非卸载后重新安装)
+if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
+	rm -rf /opt/apps/deepin-wine-runner/
+fi
+# 删除软件缓存(留着也没什么用了)
+# 缓存目录:~/.cache/deepin-wine-runner
+if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
+
+	echo "清理程序缓存"
+
+	for username in $(ls /home); do
+		echo /home/$username
+		if [ -d "/home/$username/.cache/deepin-wine-runner/" ]; then
+			rm -rf "/home/$username/.cache/deepin-wine-runner/"
+		fi
+	done
+	# 清理 root 用户的缓存文件
+	echo /root
+	if [ -d "/root/.cache/deepin-wine-runner/" ]; then
+		rm -rf "/root/.cache/deepin-wine-runner/"
+	fi
+else
+	echo "非卸载,跳过清理"
+fi
+# 删除软件配置文件(只限“purge”)
+# 配置目录:~/.config/deepin-wine-runner
+if [ "$1" = "purge" ]; then
+
+	echo "清理程序配置文件"
+
+	for username in $(ls /home); do
+		echo /home/$username
+		if [ -d "/home/$username/.config/deepin-wine-runner/" ]; then
+			rm -rf "/home/$username/.config/deepin-wine-runner/"
+		fi
+	done
+	# 清理 root 用户的配置文件
+	echo /root
+	if [ -d "/root/.config/deepin-wine-runner/" ]; then
+		rm -rf "/root/.config/deepin-wine-runner/"
+	fi
+else
+	echo "非 purge,跳过清理"
+fi
diff --git a/deb/usr/lib/python3/dist-packages/WineRunner b/deb/usr/lib/python3/dist-packages/WineRunner
new file mode 120000
index 0000000..de01466
--- /dev/null
+++ b/deb/usr/lib/python3/dist-packages/WineRunner
@@ -0,0 +1 @@
+/opt/apps/deepin-wine-runner/API/Python/
\ No newline at end of file
diff --git a/deb/usr/share/applications/spark-deepin-wine-package-builder.desktop b/deb/usr/share/applications/spark-deepin-wine-package-builder.desktop
new file mode 100644
index 0000000..cb4fe1a
--- /dev/null
+++ b/deb/usr/share/applications/spark-deepin-wine-package-builder.desktop
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Type=Application
+X-Categories=System;Wine;
+Exec=/usr/bin/deepin-wine-package-builder "~/.wine" %F
+Icon=/opt/apps/deepin-wine-runner/deepin-wine-runner.svg
+Name=Wine Package Builder
+Name[zh]=Wine 打包器
+Terminal=false
+StartupNotify=true
+NoDisplay=true
+Keywords=exe;scr;
+MimeType=application/x-ms-dos-executable;application/x-msi;application/x-ms-shortcut;
diff --git a/deb/usr/share/applications/spark-deepin-wine-packager-easy-builder.desktop b/deb/usr/share/applications/spark-deepin-wine-packager-easy-builder.desktop
new file mode 100644
index 0000000..4d5909b
--- /dev/null
+++ b/deb/usr/share/applications/spark-deepin-wine-packager-easy-builder.desktop
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Type=Application
+X-Categories=System;Wine;
+Exec=/usr/bin/deepin-wine-packager-easy-builder %F
+Icon=/opt/apps/deepin-wine-runner/deepin-wine-runner.svg
+Name=Wine Package Builder
+Name[zh]=Wine 简易打包器
+Terminal=false
+StartupNotify=true
+NoDisplay=true
+Keywords=exe;scr;
+MimeType=application/x-ms-dos-executable;application/x-msi;application/x-ms-shortcut;
diff --git a/deb/usr/share/applications/spark-deepin-wine-packager-with-script.desktop b/deb/usr/share/applications/spark-deepin-wine-packager-with-script.desktop
new file mode 100644
index 0000000..e67f51c
--- /dev/null
+++ b/deb/usr/share/applications/spark-deepin-wine-packager-with-script.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+X-Categories=System;Wine;
+Exec=/usr/bin/deepin-wine-packager-with-script
+Icon=/opt/apps/deepin-wine-runner/deepin-wine-runner.svg
+Name=Wine Package Builder For UOS
+NoDisplay=true
+Name[zh]=Wine 打包器(基于活动脚本)
+Terminal=false
+StartupNotify=true
diff --git a/deb/usr/share/applications/spark-deepin-wine-runner-control-vm.desktop b/deb/usr/share/applications/spark-deepin-wine-runner-control-vm.desktop
new file mode 100644
index 0000000..35eacdc
--- /dev/null
+++ b/deb/usr/share/applications/spark-deepin-wine-runner-control-vm.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+X-Categories=System;Wine;
+Exec=/opt/apps/deepin-wine-runner/RunVM.sh %F
+Icon=/opt/apps/deepin-wine-runner/deepin-wine-runner.svg
+Name=Setting VirtualMachine
+Name[zh]=设置 Windows 虚拟机
+NoDisplay=true
+Terminal=false
+StartupNotify=true
diff --git a/deb/usr/share/applications/spark-deepin-wine-runner-start-vm.desktop b/deb/usr/share/applications/spark-deepin-wine-runner-start-vm.desktop
new file mode 100644
index 0000000..1271f09
--- /dev/null
+++ b/deb/usr/share/applications/spark-deepin-wine-runner-start-vm.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Type=Application
+X-Categories=System;
+Exec=/opt/apps/deepin-wine-runner/StartVM.sh %F
+Icon=/opt/apps/deepin-wine-runner/deepin-wine-runner.svg
+Name=Start Windows VirtualMachine
+Name[zh]=开启 Windows 虚拟机
+Terminal=false
+StartupNotify=true
diff --git a/deb/usr/share/applications/spark-deepin-wine-runner.desktop b/deb/usr/share/applications/spark-deepin-wine-runner.desktop
new file mode 100644
index 0000000..af220ee
--- /dev/null
+++ b/deb/usr/share/applications/spark-deepin-wine-runner.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Type=Application
+X-Categories=System;Wine;
+Exec=/usr/bin/deepin-wine-runner %F
+Icon=/opt/apps/deepin-wine-runner/deepin-wine-runner.svg
+Name=Wine Runner
+Name[zh]=Wine 运行器
+Terminal=false
+StartupNotify=true
+Keywords=exe;scr;
+MimeType=application/x-ms-dos-executable;application/x-msi;application/x-ms-shortcut;
diff --git a/deb/usr/share/polkit-1/actions/com.deepin.pkexec.deepin-wine-venturi-setter.policy b/deb/usr/share/polkit-1/actions/com.deepin.pkexec.deepin-wine-venturi-setter.policy
new file mode 100755
index 0000000..88fdac0
--- /dev/null
+++ b/deb/usr/share/polkit-1/actions/com.deepin.pkexec.deepin-wine-venturi-setter.policy
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE policyconfig PUBLIC
+ "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
+ "http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
+<policyconfig>
+  <vendor>gfdgd xi</vendor>
+  <vendor_url>https://gitee.com/gfdgd-xi/deep-wine-runner/</vendor_url>
+  <action id="com.deepin.pkexec.deepin-wine-venturi-setter">
+    <message>Authentication is required to change run_v3 file manager</message>
+    <message xml:lang="zh_CN">修改 run_v3 文管需要输入密码</message>
+    <icon_name>preferences-system</icon_name>
+    <defaults>
+      <allow_any>no</allow_any>
+      <allow_inactive>no</allow_inactive>
+      <allow_active>auth_admin_keep</allow_active>
+    </defaults>
+    <annotate key="org.freedesktop.policykit.exec.path">/opt/apps/deepin-wine-runner/deepin-wine-venturi-setter.py</annotate>
+    <annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate>
+  </action>
+
+</policyconfig>
\ No newline at end of file
diff --git a/deb/usr/share/polkit-1/actions/com.deepin.pkexec.mount.policy b/deb/usr/share/polkit-1/actions/com.deepin.pkexec.mount.policy
new file mode 100755
index 0000000..781bb5b
--- /dev/null
+++ b/deb/usr/share/polkit-1/actions/com.deepin.pkexec.mount.policy
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE policyconfig PUBLIC
+ "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
+ "http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
+<policyconfig>
+  <vendor>gfdgd xi</vendor>
+  <vendor_url>https://gitee.com/gfdgd-xi/deep-wine-runner/</vendor_url>
+  <action id="com.deepin.pkexec.mount">
+    <message>Authentication is required to mount file</message>
+    <message xml:lang="zh_CN">挂载文件需要输入密码</message>
+    <icon_name>preferences-system</icon_name>
+    <defaults>
+      <allow_any>no</allow_any>
+      <allow_inactive>no</allow_inactive>
+      <allow_active>auth_admin_keep</allow_active>
+    </defaults>
+    <annotate key="org.freedesktop.policykit.exec.path">/usr/bin/mount</annotate>
+    <annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate>
+  </action>
+
+</policyconfig>
\ No newline at end of file
diff --git a/deb/usr/share/polkit-1/actions/com.deepin.pkexec.umount.policy b/deb/usr/share/polkit-1/actions/com.deepin.pkexec.umount.policy
new file mode 100755
index 0000000..3112069
--- /dev/null
+++ b/deb/usr/share/polkit-1/actions/com.deepin.pkexec.umount.policy
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE policyconfig PUBLIC
+ "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
+ "http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
+<policyconfig>
+  <vendor>gfdgd xi</vendor>
+  <vendor_url>https://gitee.com/gfdgd-xi/deep-wine-runner/</vendor_url>
+  <action id="com.deepin.pkexec.umount">
+    <message>Authentication is required to unmount file</message>
+    <message xml:lang="zh_CN">卸载文件需要输入密码</message>
+    <icon_name>preferences-system</icon_name>
+    <defaults>
+      <allow_any>no</allow_any>
+      <allow_inactive>no</allow_inactive>
+      <allow_active>auth_admin_keep</allow_active>
+    </defaults>
+    <annotate key="org.freedesktop.policykit.exec.path">/usr/bin/umount</annotate>
+    <annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate>
+  </action>
+
+</policyconfig>
\ No newline at end of file
diff --git a/deepin-wine-runner-deepin-app-store.svg b/deepin-wine-runner-deepin-app-store.svg
new file mode 100755
index 0000000..6190851
--- /dev/null
+++ b/deepin-wine-runner-deepin-app-store.svg
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512px" height="512px" viewBox="0 0 512 512" version="1.1">
+<defs>
+<clipPath id="clip1">
+  <path d="M 60 55 L 262 55 L 262 450 L 60 450 Z M 60 55 "/>
+</clipPath>
+<clipPath id="clip2">
+  <path d="M 30.597656 38.375 L 247.691406 11.277344 L 303.921875 464.261719 L 86.828125 491.359375 Z M 30.597656 38.375 "/>
+</clipPath>
+<clipPath id="clip3">
+  <path d="M 30.597656 38.375 L 247.691406 11.277344 L 303.921875 464.261719 L 86.828125 491.359375 Z M 30.597656 38.375 "/>
+</clipPath>
+<clipPath id="clip4">
+  <path d="M -92.222656 53.707031 L 359.503906 -2.679688 L 415.730469 450.304688 L -35.996094 506.691406 Z M -92.222656 53.707031 "/>
+</clipPath>
+<clipPath id="clip5">
+  <path d="M 68.238281 39.539062 L 510.488281 39.539062 L 510.488281 510.488281 L 68.238281 510.488281 Z M 68.238281 39.539062 "/>
+</clipPath>
+<image id="image5" width="159" height="159" xlink:href="data:image/png;base64,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"/>
+</defs>
+<g id="surface2">
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(60%,0%,0%);fill-opacity:1;" d="M 3.027344 86.179688 C 3.027344 39.421875 40.824219 1.519531 87.449219 1.519531 L 425.128906 1.519531 C 471.757812 1.519531 509.554688 39.421875 509.554688 86.179688 L 509.554688 424.800781 C 509.554688 471.554688 471.757812 509.457031 425.128906 509.457031 L 87.449219 509.457031 C 40.824219 509.457031 3.027344 471.554688 3.027344 424.800781 Z M 3.027344 86.179688 "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<g clip-path="url(#clip2)" clip-rule="evenodd">
+<g clip-path="url(#clip3)" clip-rule="evenodd">
+<g clip-path="url(#clip4)" clip-rule="evenodd">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.65098;" d="M 203.613281 62.78125 C 201.238281 58.136719 196.417969 55.414062 191.214844 56.0625 L 85.339844 69.277344 C 80.046875 69.9375 76.132812 73.75 74.886719 78.847656 C 69.441406 101.988281 57.15625 159.316406 61.316406 192.667969 L 61.847656 196.914062 C 63.96875 213.898438 66.859375 237.078125 95.132812 259.691406 C 101.605469 264.902344 109.171875 269.53125 117.136719 274.464844 C 135.675781 285.898438 154.800781 297.707031 156.910156 314.601562 L 169.609375 416.335938 C 169.730469 417.3125 169.035156 418.207031 168.066406 418.328125 L 117.6875 424.617188 C 110.71875 425.488281 105.765625 431.765625 106.617188 438.574219 C 107.46875 445.386719 113.808594 450.257812 120.78125 449.386719 L 250.296875 433.222656 C 257.269531 432.351562 262.21875 426.070312 261.367188 419.257812 C 260.519531 412.449219 254.175781 407.578125 247.207031 408.449219 L 196.828125 414.738281 C 195.859375 414.859375 194.964844 414.160156 194.84375 413.1875 L 182.144531 311.453125 C 180.035156 294.558594 195.671875 278.410156 210.832031 262.769531 C 217.339844 256.027344 223.445312 249.695312 228.53125 243.042969 C 250.375 214.171875 247.480469 190.992188 245.359375 174.007812 L 244.832031 169.761719 C 240.691406 136.585938 214.664062 83.863281 203.613281 62.78125 Z M 213.648438 153.257812 C 213.507812 153.546875 213.109375 153.953125 212.316406 154.054688 L 88.972656 169.449219 C 88.269531 169.539062 87.773438 169.148438 87.484375 169.007812 C 87.273438 168.761719 86.867188 168.363281 86.945312 167.546875 C 88.5625 143.894531 93.421875 113.191406 97.144531 94.21875 C 97.320312 93.476562 97.960938 92.859375 98.667969 92.769531 L 184.070312 82.109375 C 184.863281 82.011719 185.636719 82.453125 185.902344 83.140625 C 194.097656 100.714844 206.347656 129.191406 213.8125 151.710938 C 214.082031 152.394531 213.792969 152.96875 213.648438 153.257812 Z M 213.648438 153.257812 "/>
+</g>
+</g>
+</g>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<use xlink:href="#image5" transform="matrix(3.033083,0,0,3.031992,68.237971,39.540295)"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 442.011719 267.71875 C 442.011719 267.71875 392.074219 278.34375 378.25 282.054688 C 364.5625 285.761719 347.589844 258.894531 343.039062 257.925781 C 340.128906 266.347656 330.722656 291.074219 325.097656 307.851562 C 333.800781 307.582031 378.953125 321.25 380.59375 329.203125 C 382.46875 337.257812 403.554688 424.46875 403.554688 424.46875 C 403.554688 424.46875 412.488281 443.21875 387.117188 450.066406 C 361.714844 456.917969 360.578125 436.066406 360.578125 436.066406 C 360.578125 436.066406 342.839844 369.167969 341.265625 365.125 C 339.792969 361.082031 306.722656 354.296875 299.160156 356.335938 C 291.53125 358.40625 275.195312 415.515625 259.0625 419.390625 C 238.34375 424.402344 177.664062 387.613281 177.664062 387.613281 C 177.664062 387.613281 153.699219 381.699219 158.585938 359.246094 C 163.570312 336.953125 186.832031 343.035156 186.832031 343.035156 C 186.832031 343.035156 229.808594 366.628906 234.761719 363.855469 C 239.78125 361.046875 242.628906 344.773438 249.957031 329 C 250.257812 323.054688 267.128906 275.773438 267.128906 275.773438 C 267.128906 275.773438 276.464844 244.292969 272.75 242.324219 C 267.628906 239.617188 262.273438 245.398438 259.464844 250.207031 C 256.652344 254.988281 245.507812 274.667969 226.863281 300.296875 C 210.296875 323.121094 180.742188 301.9375 193.023438 280.617188 C 203.234375 262.871094 230.410156 212.148438 249.957031 202.589844 C 269.640625 192.96875 303.578125 187.621094 332.464844 194.371094 C 361.480469 200.988281 381.832031 233.800781 387.519531 238.144531 C 393.078125 242.324219 432.171875 229.691406 432.171875 229.691406 C 432.171875 229.691406 454.429688 221.972656 459.953125 242.253906 C 465.507812 262.671875 442.011719 267.71875 442.011719 267.71875 Z M 350.570312 184.113281 C 330.085938 189.660156 309.234375 177.796875 303.746094 157.546875 C 298.289062 137.398438 310.238281 116.546875 330.722656 111 C 351.171875 105.484375 372.09375 117.449219 377.546875 137.597656 C 383.070312 157.847656 370.988281 178.566406 350.570312 184.113281 Z M 350.570312 184.113281 "/>
+</g>
+</svg>
diff --git a/deepin-wine-runner-update-bug b/deepin-wine-runner-update-bug
new file mode 100755
index 0000000..1f36530
--- /dev/null
+++ b/deepin-wine-runner-update-bug
@@ -0,0 +1,104 @@
+#!/usr/bin/env python3
+import os
+import sys
+import json
+import base64
+import req as requests
+import traceback
+import webbrowser
+import urllib.parse as parse
+import PyQt5.QtGui as QtGui
+import PyQt5.QtWidgets as QtWidgets
+
+# 读取文本文档
+def readtxt(path: "路径")->"读取文本文档":
+    f = open(path, "r")  # 设置文件对象
+    str = f.read()  # 获取内容
+    f.close()  # 关闭文本对象
+    return str  # 返回结果
+
+def Update(name, stars, contact, things, version):
+    # post 内容
+    data = {
+        "Name": name,
+        "Starts": stars,
+        "Contact": contact,
+        "Things": things,
+        "Version": version
+    }
+    try:
+        QtWidgets.QMessageBox.information(widget, "提示", requests.post(parse.unquote(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0L3NwYXJrLWRlZXBpbi13aW5lLXJ1bm5lci9idWcvdXBsb2FkLnBocA==").decode("utf-8")), data=data).text)
+    except:
+        traceback.print_exc()
+        QtWidgets.QMessageBox.critical(widget, "错误", f"服务器疑似出现错误,可以进行以下尝试:①多尝试几次;②使用其他反馈途径\n错误信息:{traceback.format_exc()}")
+    
+def UpdateButtonClick():
+    #判断是否为空
+    if nameThings.text() == "" or starMenu.currentText() == "" or contactThings.text() == "" or updateThings.toPlainText().replace(" ", "").replace("\n", "") == "":
+        QtWidgets.QMessageBox.critical(widget, "错误", "反馈信息未填写完整!")
+        return
+    Update(name=nameThings.text(), stars=starMenu.currentText(), contact=contactThings.text(), things=updateThings.toPlainText(), version=version)
+
+def OpenGiteeIssues():
+    webbrowser.open_new_tab("https://gitee.com/gfdgd-xi/deep-wine-runner/issues")
+
+def OpenGithubIssues():
+    webbrowser.open_new_tab("https://github.com/gfdgd-xi/deep-wine-runner/issues")
+
+def OpenGitlinkIssues():
+    webbrowser.open_new_tab("https://www.gitlink.org.cn/gfdgd_xi/deep-wine-runner/issues")
+
+# 获取用户主目录
+def get_home()->"获取用户主目录":
+    return os.path.expanduser('~')
+
+###########################
+# 程序信息
+###########################
+iconPath = "{}/deepin-wine-runner.svg".format(os.path.split(os.path.realpath(__file__))[0])
+programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
+information = json.loads(readtxt(programPath + "/information.json"))
+version = information["Version"]
+
+###########################
+# 窗口创建
+###########################
+app = QtWidgets.QApplication(sys.argv)
+window = QtWidgets.QMainWindow()
+widget = QtWidgets.QWidget()
+widgetLayout = QtWidgets.QGridLayout()
+nameThings = QtWidgets.QLineEdit()
+contactThings = QtWidgets.QLineEdit()
+starMenu = QtWidgets.QComboBox()
+updateThings = QtWidgets.QTextEdit()
+updateButton = QtWidgets.QPushButton("提交")
+otherUpload = QtWidgets.QHBoxLayout()
+giteeButton = QtWidgets.QPushButton("Gitee Issues")
+githubButton = QtWidgets.QPushButton("Github Issues")
+gitlinkButton = QtWidgets.QPushButton("Gitlink Issues")
+otherUpload.addWidget(QtWidgets.QLabel("如果无法正常反馈,可以用其他方式反馈:"))
+otherUpload.addWidget(giteeButton)
+otherUpload.addWidget(githubButton)
+otherUpload.addWidget(gitlinkButton)
+otherUpload.addSpacerItem(QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum))
+starMenu.addItems(["5分", "4分", "3分", "2分", "1分"])
+widgetLayout.addWidget(QtWidgets.QLabel("你的昵称:"), 0, 0, 1, 1)
+widgetLayout.addWidget(QtWidgets.QLabel("联系方式(电子邮箱):"), 0, 2, 1, 1)
+widgetLayout.addWidget(QtWidgets.QLabel("评分:"), 0, 4, 1, 1)
+widgetLayout.addWidget(QtWidgets.QLabel("反馈内容(支持 Markdown 格式):"), 1, 0, 1, 2)
+widgetLayout.addWidget(nameThings, 0, 1, 1, 1)
+widgetLayout.addWidget(contactThings, 0, 3, 1, 1)
+widgetLayout.addWidget(starMenu, 0, 5, 1, 1)
+widgetLayout.addWidget(updateThings, 2, 0, 1, 6)
+widgetLayout.addLayout(otherUpload, 3, 0, 1, 5)
+widgetLayout.addWidget(updateButton, 3, 5, 1, 1)
+giteeButton.clicked.connect(OpenGiteeIssues)
+githubButton.clicked.connect(OpenGithubIssues)
+gitlinkButton.clicked.connect(OpenGitlinkIssues)
+updateButton.clicked.connect(UpdateButtonClick)
+widget.setLayout(widgetLayout)
+window.setCentralWidget(widget)
+window.setWindowTitle(f"Wine 运行器 {version} 问题/建议反馈")
+window.setWindowIcon(QtGui.QIcon(iconPath))
+window.show()
+sys.exit(app.exec_())
\ No newline at end of file
diff --git a/deepin-wine-runner.png b/deepin-wine-runner.png
new file mode 100755
index 0000000000000000000000000000000000000000..13277803a04a9d9932502a36dacc158f5f5129a5
GIT binary patch
literal 16913
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

literal 0
HcmV?d00001

diff --git a/deepin-wine-runner.svg b/deepin-wine-runner.svg
new file mode 100755
index 0000000..c404135
--- /dev/null
+++ b/deepin-wine-runner.svg
@@ -0,0 +1 @@
+<svg width="339" height="339" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" overflow="hidden"><defs><clipPath id="clip0"><path d="M858 199 1197 199 1197 538 858 538Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip1"><path d="M859 199 1196 199 1196 537 859 537Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip2"><path d="M859 199 1196 199 1196 537 859 537Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip3"><path d="M859 199 1222 199 1222 544 859 544Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip4"><path d="M859 199 1222 199 1222 544 859 544Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip5"><path d="M878.26 224.409 1022 206.466 1059.23 506.391 915.49 524.333Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip6"><path d="M878.26 224.409 1022 206.466 1059.23 506.391 915.49 524.333Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip7"><path d="M796.938 234.56 1096.03 197.227 1133.26 497.152 834.166 534.484Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip8"><path d="M903 225 1223 225 1223 545 903 545Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip9"><path d="M903 225 1223 225 1223 545 903 545Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><image width="159" height="159" xlink:href="data:image/png;base64,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" preserveAspectRatio="none" id="img10"></image><clipPath id="clip11"><path d="M0 0 319.194 0 319.194 319.194 0 319.194Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip12"><path d="M949 271 1177 271 1177 499 949 499Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip13"><path d="M949 271 1177 271 1177 499 949 499Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath><clipPath id="clip14"><path d="M949 271 1177 271 1177 499 949 499Z" fill-rule="evenodd" clip-rule="evenodd"/></clipPath></defs><g clip-path="url(#clip0)" transform="translate(-858 -199)"><g clip-path="url(#clip1)"><g clip-path="url(#clip2)"><g clip-path="url(#clip3)"><g clip-path="url(#clip4)"><path d="M474.948 249.692C474.948 218.82 499.973 193.795 530.845 193.795L754.426 193.795C785.297 193.795 810.323 218.82 810.323 249.692L810.323 473.273C810.323 504.144 785.297 529.17 754.426 529.17L530.845 529.17C499.973 529.17 474.948 504.144 474.948 473.273Z" fill="#990000" fill-rule="evenodd" transform="matrix(1 0 -0 1.00279 385.057 5.67096)"/><g clip-path="url(#clip5)"><g clip-path="url(#clip6)"><g clip-path="url(#clip7)"><path d="M193.623 30.1412C192.445 26.9035 189.502 24.7252 186.028 24.7252L115.385 24.7252C111.852 24.7252 108.967 26.9035 107.731 30.1412 102.257 44.8587 89.4819 81.4168 89.4819 103.611L89.4819 106.437C89.4819 117.74 89.4819 133.163 106.201 150.294 110.028 154.238 114.619 157.888 119.447 161.774 130.691 170.781 142.288 180.083 142.288 191.326L142.288 259.026C142.288 259.674 141.758 260.204 141.111 260.204L107.496 260.204C102.845 260.204 99.0777 263.913 99.0777 268.445 99.0777 272.978 102.845 276.688 107.496 276.688L193.917 276.688C198.567 276.688 202.335 272.978 202.335 268.445 202.335 263.913 198.567 260.204 193.917 260.204L160.302 260.204C159.655 260.204 159.125 259.674 159.125 259.026L159.125 191.326C159.125 180.083 170.722 170.781 181.966 161.774 186.793 157.888 191.326 154.238 195.211 150.294 211.931 133.163 211.931 117.74 211.931 106.437L211.931 103.611C211.931 81.5345 199.156 44.8587 193.623 30.1412ZM192.798 90.2472C192.681 90.4238 192.386 90.6593 191.856 90.6593L109.557 90.6593C109.086 90.6593 108.792 90.3649 108.615 90.2472 108.496 90.0706 108.261 89.7763 108.379 89.2464 111.381 73.8814 117.092 54.1601 121.095 42.033 121.271 41.562 121.742 41.2088 122.213 41.2088L179.199 41.2088C179.729 41.2088 180.2 41.562 180.318 42.033 184.262 54.219 189.973 73.8814 193.033 89.2464 193.152 89.7173 192.916 90.0706 192.798 90.2472Z" fill="#FFFFFF" fill-opacity="0.65098" transform="matrix(0.992299 -0.123862 0.124196 0.994978 796.938 234.56)"/></g></g></g><g clip-path="url(#clip8)"><g clip-path="url(#clip9)"><g clip-path="url(#clip11)" transform="matrix(1.00036 0 -0 1 903.181 225.18)"><use width="100%" height="100%" xlink:href="#img10" transform="scale(2.00751 2.00751)"></use></g></g></g><g clip-path="url(#clip12)"><g clip-path="url(#clip13)"><g clip-path="url(#clip14)"><path d="M200.96 104.761C200.96 104.761 167.949 111.797 158.812 114.252 149.763 116.708 138.545 98.9197 135.536 98.2781 133.612 103.854 127.395 120.225 123.677 131.333 129.43 131.156 159.276 140.205 160.36 145.47 161.599 150.803 175.538 208.548 175.538 208.548 175.538 208.548 181.445 220.96 164.674 225.495 147.882 230.031 147.129 216.225 147.129 216.225 147.129 216.225 135.404 171.932 134.364 169.255 133.39 166.577 111.531 162.086 106.53 163.436 101.487 164.807 90.6894 202.619 80.0252 205.185 66.33 208.503 26.2178 184.144 26.2178 184.144 26.2178 184.144 10.3765 180.228 13.6067 165.361 16.9033 150.603 32.28 154.63 32.28 154.63 32.28 154.63 60.6882 170.25 63.9626 168.414 67.2813 166.555 69.162 155.78 74.0073 145.337 74.2064 141.399 85.3573 110.093 85.3573 110.093 85.3573 110.093 91.5301 89.2513 89.0742 87.9459 85.6892 86.1538 82.1492 89.9814 80.2908 93.1674 78.4323 96.3311 71.0647 109.363 58.7412 126.332 47.7894 141.443 28.2533 127.417 36.3731 113.301 43.1211 101.552 61.0864 67.9672 74.0073 61.6395 87.0167 55.2676 109.451 51.7277 128.545 56.1968 147.727 60.5775 161.179 82.3041 164.94 85.1803 168.613 87.9459 194.455 79.5827 194.455 79.5827 194.455 79.5827 209.167 74.472 212.818 87.9017 216.49 101.42 200.96 104.761 200.96 104.761ZM140.514 49.4045C126.974 53.0773 113.19 45.223 109.562 31.8154 105.955 18.4742 113.854 4.66832 127.395 0.995614 140.913-2.65497 154.741 5.26569 158.347 18.6069 161.998 32.0145 154.011 45.7319 140.514 49.4045Z" fill="#FFFFFF" transform="matrix(1.00164 0 -0 1 949.371 271.498)"/></g></g></g></g></g></g></g></g></svg>
\ No newline at end of file
diff --git a/icon.png b/icon.png
new file mode 100755
index 0000000000000000000000000000000000000000..b164d4616c86df26f308bde22c92c73747060ac1
GIT binary patch
literal 36271
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%0AQD`^`=OIcnpFC-IAZX|+Jf*1Q?JJT$
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

literal 0
HcmV?d00001

diff --git a/information.json b/information.json
new file mode 100644
index 0000000..127cbfb
--- /dev/null
+++ b/information.json
@@ -0,0 +1,57 @@
+{
+    "Version": "3.1.0",
+    "Thank": [
+        "感谢 @Amber 编写的《使用wine运行器打包无安装包的软件》:https://bbs.deepin.org/post/247720",
+        "感谢 @豪 提供程序图标",
+        "感谢 @鹤舞白沙 对程序文案进行优化以及编写《Wine运行器和Wine打包器傻瓜式使用教程(小白专用) 》:https://bbs.deepin.org/post/246837",
+        "感谢 @璀璨星空 提供的彩蛋图标",
+        "感谢 @Bail 反馈的更新策略问题",
+        "感谢 @白水 反馈的安装 exagear 后无法识别和调用 box86 的问题",
+        "感谢 @汐光. 提供的翻译接口",
+        "感谢 @鹤舞白沙 专门为小白用户编写的使用 Wine 运行器非基于生态适配脚本的程序打包教程",
+        "感谢 @牦牛儿苗 进行了龙芯 3a5000 平台的测试与移植",
+        "感谢 @鹤舞白沙 优化了程序文案",
+        "感谢 @豪 的程序测试和制作的论坛 https://gfdgdxi.flarum.cloud/",
+        "感谢 @185******67 反馈的 2.4.0 无法打开 Visual Basic 组件安装工具的问题",
+        "感谢 @shenmo 提供的 在打包器的 postrm 脚本添加 kill.sh、追加参数改为 --uri xxxxxxx、独立生成容器 7z 文件的功能",
+        "感谢 @a2035274 @虚幻的早晨 https://bbs.deepin.org/post/238301",
+        "感谢 @zhangs https://bbs.deepin.org/post/227948",
+        "感谢 @gtjmaster https://bbs.deepin.org/post/225509",
+        "感谢 @统信UCARE服务 https://mp.weixin.qq.com/s/iOdfNv6phc8F4inackFFTw",
+        "感谢 @星火应用商店 提供部分安装包的源以及本程序的下载地址",
+        "感谢 @delsin 和 @神末shenmo 在 deepin 论坛提供打包器打包的 deb 包自动删除容器的建议",
+	    "感谢 @shenmo 反馈的 2.1.0 打包器问题和 2.1.0-1 终端调用问题",
+        "感谢 @GershonWang 在 https://github.com/gfdgd-xi/deep-wine-runner/issues/1 提供窗口居中的建议",
+        "感谢 @134******28 和 @sgb76 提供的新程序 GUI 布局和实现代码",
+        "感谢 @sgb76 为 Wine 打包器(非生态适配脚本)打包的 i386 deb 提供建议",
+        "感谢 @PossibleVing 提供的新版应用图标",
+        "感谢 @zhengjl 反馈的 1.7.0 中 .net framrwork 3.5 非离线版安装包的问题以及 1.8.0 重复路径一直自动重复增加的问题",
+        "感谢 @国川 @刘岐 提供的非 i386、amd64 运行 wine 使用 i386/amd64 可执行文件的教程和脚本",
+        "感谢 @王俊文 @189******09 @tfhyl 提供在非 X86 平台的国产 PC 进行测试",
+        "感谢 @cuisirwork 提供的提供视频教程的建议",
+        "感谢 @办公助手 提供的非 X86 平台 Wine 运行自定义 exe 应用教程和 deb 包",
+        "感谢 @季星火 反馈的无法使用该程序删除生成的 .desktop 的问题",
+        "感谢 @ZYH 提供的敏感词列表",
+        "感谢 @五行缺钱 反馈的 2.0.0 在 Deepin 23 缺失依赖 toilet 的问题",
+        "感谢 @云的眼泪 @zhengjl 反馈的 2.0.0 发布忘记把安装包传蓝奏云的问题",
+        "感谢 @虚幻的早晨 提出的添加 DXVK、VKD3D 的功能(VKD3D 暂未实现)",
+        "感谢 @以勒 修改 Dll 提取工具提示文本的建议",
+        "感谢 @历山居士 反馈的获取自动配置容器脚本工具无法正常加载数据的问题",
+        "感谢 @Nick @奋斗ing 反馈的 2.1.0-2 的快捷方式故障",
+        "感谢 @俊生鹏程 反馈的 2.1.0-2 及以前版本在鲲鹏运行 wine 错误的问题并积极测试,以及组件安装工具在 arm 架构的异常",
+        "感谢 @云的眼泪 反馈的 2.1.0-2 更新死循环的问题,可见:https://bbs.deepin.org/post/243241,以及感谢 @神末shenmo @忘记、过去 和 @历山居士 的讨论",
+        "感谢 @186******75 反馈的 2.2.0 基于生态适配脚本打包器对话框异常的问题",
+        "感谢微信用户 @华为 @办公助手 @白水 @北冥没有鱼 @俊生鹏程 @^♀莫離♪^ @姚洪安 @гυи @杨飞 在 arm(飞腾/鲲鹏)架构上提供提供测试与帮助",
+        "感谢 @办公助手 提供的 2.4.0 打包器支持生成的 arm 架构 deb 包同时支持 UOS box86+exagear 的建议",
+        "",
+        "感谢统信在 Wine 生态适配活动中提供的打包脚本",
+        "也感谢 Deepin Wine 团体制作的 Deepin Wine 和对应的 Deepin Wine Tools,对本程序有很大的帮助",
+        "也感谢 DXVK 的开发者开发了 DXVK 这个程序,项目链接:https://github.com/doitsujin/dxvk",
+        "也感谢 WineHQ 开发团队开发的 WineHQ,项目网址:https://dl.winehq.org/",
+        "也感谢来自 Vek 的灵感和 Vek 开发者的支持,项目链接:https://jihulab.com/vk",
+        "最后也感谢支持本程序的用户和上传相关软件运行情况数据的用户,有你们的支持和使用,使这个程序变得更好",
+        "",
+        "可以从上面的各种解决方案更好的学习 Wine 生态适配,也可以看 deepin 论坛板块 https://bbs.deepin.org/module/detail/116 进行学习,最后也向各位有进行 Wine 生态适配的大佬进行由衷的感谢!",
+        "如果上面有遗漏,请向我反馈补充"
+    ]
+}
diff --git a/launch.sh b/launch.sh
new file mode 100755
index 0000000..674905e
--- /dev/null
+++ b/launch.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+XDG_CURRENT_DESKTOP="Deepin"
+$1 -platformtheme deepin "$@"
diff --git a/mainwindow.py b/mainwindow.py
new file mode 100755
index 0000000..8428b86
--- /dev/null
+++ b/mainwindow.py
@@ -0,0 +1,3036 @@
+#!/usr/bin/env python3
+# 使用系统默认的 python3 运行
+#################################################################################################################
+# 作者:gfdgd xi、为什么您不喜欢熊出没和阿布呢
+# 版本:3.0.0
+# 更新时间:2022年12月10日
+# 感谢:感谢 wine、deepin-wine 以及星火团队,提供了 wine、deepin-wine、spark-wine-devel 给大家使用,让我能做这个程序
+# 基于 Python3 的 PyQt5 构建
+#################################################################################################################
+#################
+# 引入所需的库
+#################
+import os
+import sys
+import time
+import json
+import random
+import base64
+import shutil
+import hashlib
+import platform
+import threading
+import traceback
+import webbrowser
+import subprocess
+import req as requests
+import urllib.parse as parse
+import PyQt5.QtGui as QtGui
+import PyQt5.QtCore as QtCore
+import PyQt5.QtWidgets as QtWidgets
+try:
+    import PyQt5.QtWebEngineWidgets as QtWebEngineWidgets
+    bad = False
+except:
+    bad = True
+from trans import *
+from Model import *
+
+def PythonLower():
+    app = QtWidgets.QApplication(sys.argv)
+    QtWidgets.QMessageBox.critical(None, "错误", "Python 至少需要 3.6 及以上版本,目前版本:" + platform.python_version() + "")
+    sys.exit(1)
+
+# Python 版本检测,因为 f-string 格式化要至少 Python 3.6 及以上的版本,所以需要检测
+# 判断主版本号
+if sys.version_info[0] < 3:
+    PythonLower()
+if sys.version_info[1] < 6:
+    PythonLower()
+
+###################
+# 程序所需事件
+###################
+
+# 打开程序官网
+def OpenProgramURL():
+    webbrowser.open_new_tab(programUrl)
+
+# 读取文本文档
+def readtxt(path):
+    f = open(path, "r") # 设置文件对象
+    str = f.read()  # 获取内容
+    f.close()  # 关闭文本对象
+    return str  # 返回结果
+
+# 写入文本文档
+def write_txt(path, things):
+    file = open(path, 'w', encoding='UTF-8')  # 设置文件对象
+    file.write(things)  # 写入文本
+    file.close()  # 关闭文本对象
+
+# 获取用户桌面目录
+def get_desktop_path():
+    for line in open(get_home() + "/.config/user-dirs.dirs"):  # 以行来读取配置文件
+        desktop_index = line.find("XDG_DESKTOP_DIR=\"")  # 寻找是否有对应项,有返回 0,没有返回 -1
+        if desktop_index != -1:  # 如果有对应项
+            break  # 结束循环
+    if desktop_index == -1:  # 如果是提前结束,值一定≠-1,如果是没有提前结束,值一定=-1
+        return -1
+    else:
+        get = line[17:-2]  # 截取桌面目录路径
+        get_index = get.find("$HOME")  # 寻找是否有对应的项,需要替换内容
+        if get != -1:  # 如果有
+            get = get.replace("$HOME", get_home())  # 则把其替换为用户目录(~)
+        return get  # 返回目录
+
+# 获取用户主目录
+def get_home():
+    return os.path.expanduser('~')
+
+# 第一个浏览按钮事件
+def liulanbutton():
+    path = QtWidgets.QFileDialog.getExistingDirectory(widget, "选择 wine 容器", json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/WineBotton.json"))["path"])
+    if path != "" and path != "()":
+        e1.setEditText(path)
+        write_txt(get_home() + "/.config/deepin-wine-runner/WineBotton.json", json.dumps({"path": path}))  # 写入配置文件
+
+# 第二个浏览按钮事件
+def liulanexebutton():
+    path = QtWidgets.QFileDialog.getOpenFileName(widget, "选择 exe 可执行文件", json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/FindExe.json"))["path"], "exe 可执行文件(*.exe);;MSI 文件(*.msi);;所有文件(*.*)")
+    if path != "" and path != "()":
+        e2.setEditText(path[0])  # 显示路径
+        write_txt(get_home() + "/.config/deepin-wine-runner/FindExe.json", json.dumps({"path": os.path.dirname(path[0])}))  # 写入配置文件
+        
+run = None
+# 使用多线程运行可执行文件
+def runexebutton(self):
+    global run
+    DisableButton(True)
+    if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
+        if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 运行?") == QtWidgets.QMessageBox.No:
+            DisableButton(False)
+            return
+    if e2.currentText() == "":  # 判断文本框是否有内容
+        QtWidgets.QMessageBox.information(widget, "提示", "没有填写需要使用的 exe 应用")
+        DisableButton(False)
+        return
+    returnText.setText("")
+    run = Runexebutton_threading()
+    run.signal.connect(QT.ShowWineReturn)
+    run.showHistory.connect(QT.ShowHistory)
+    run.start()
+
+class QT:
+    message = None
+    def ShowWineReturn(things):
+        returnText.insertPlainText(things)
+
+    def ShowHistory(temp):
+        e1.clear()
+        e2.clear()
+        e2.addItems(wineBottonHistory)
+        e2.setEditText(wineBottonHistory[-1])
+        e1.addItems(findExeHistory)
+        e1.setEditText(findExeHistory[-1])
+
+repairList = []
+# Flag: 日志推断解决方案功能
+class LogChecking():
+    def ShowWindow():
+        global logThread
+        global logWindow
+        global questionList
+        global repairButton
+        logWindow = QtWidgets.QWidget()
+        logWindowLayout = QtWidgets.QGridLayout()
+        questionList = QtWidgets.QListView()
+        repairButton = QtWidgets.QPushButton("一键修复")
+        repairButton.setDisabled(True)
+        repairButton.clicked.connect(LogChecking.RepairButton)
+        nmodel = QtGui.QStandardItemModel(window)
+        item = QtGui.QStandardItem("正在分析中……")
+        questionList.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers)
+        nmodel.appendRow(item)
+        questionList.setModel(nmodel)
+        logWindowLayout.addWidget(questionList, 0, 0, 3, 1)
+        logWindowLayout.addWidget(repairButton, 0, 2, 1, 1)
+        logWindow.setWindowTitle("分析日志")
+        logWindow.setLayout(logWindowLayout)
+        logThread = LogThreading()
+        logThread.done.connect(LogChecking.Show)
+        logThread.start()
+        logWindow.setWindowIcon(QtGui.QIcon(f"{programPath}/deepin-wine-runner.svg"))
+        logWindow.resize(int(logWindow.frameGeometry().width() * 1.2), int(logWindow.frameGeometry().height() * 1.2))
+        logWindow.show()
+    
+    def RepairButton():
+        index = questionList.currentIndex().row()
+        lists = questionMap[index]
+        print(f"{programPath}/CheckDLL/bash/{lists[1].lower()}.sh")
+        if lists[0] == 1 and os.path.exists(f"{programPath}/CheckDLL/bash/{lists[1].lower()}.sh"):
+            OpenTerminal(f"'{programPath}/AutoShell/main.py' '{programPath}/CheckDLL/bash/{lists[1].lower()}.sh'")
+            return
+        if lists[0] == 2:
+            QtWidgets.QMessageBox.information(logWindow, "修复方法", "切换其它 Wine")
+            return    
+        if lists[0] == 4:
+            QtWidgets.QMessageBox.information(logWindow, "修复方法", "如是 Deepin Wine 可以尝试切换 WineHQ,\n并且取消勾选运行器主页面菜单栏“程序”=>“设置Wine”,取消勾选“屏蔽 Wine 默认 Mono 和 Gecko 安装器”\n然后尝试在菜单栏的“Wine”=>“在指定 Wine、容器安装组件”=>“在指定 Wine、容器安装 Gecko”来安装 Gecko")
+            return
+        if lists[0] == 5:
+            InstallMonoGecko("mono")
+            return
+        QtWidgets.QMessageBox.critical(logWindow, "错误", "无法修复该问题")
+
+    def Show(lists):
+        global questionMap
+        nmodel = QtGui.QStandardItemModel(window)
+        disbledButton = False
+        print(lists)
+        if not len(lists):
+            nmodel.appendRow(QtGui.QStandardItem(f"√ 无法分析到错误"))
+            disbledButton = True
+        for i in lists:
+            if i[0] == 0:
+                nmodel.appendRow(QtGui.QStandardItem(f"√ 无法分析到错误"))
+                disbledButton = True
+                break
+            if i[0] == 1:
+                nmodel.appendRow(QtGui.QStandardItem(f"× 无法调用 Dll:{i[1]}"))
+            if i[0] == 2:
+                nmodel.appendRow(QtGui.QStandardItem(f"× 尝试用 Mono 运行非 .net 应用 {i[1]}?"))
+            if i[0] == 3:
+                nmodel.appendRow(QtGui.QStandardItem(f"! 无法加载 Gecko,是被禁用或未安装?"))
+            if i[0] == 4:
+                nmodel.appendRow(QtGui.QStandardItem(f"× 无法更新 Wine 容器版本,是否还有 Wine 程序运行?"))
+            if i[0] == 5:
+                nmodel.appendRow(QtGui.QStandardItem(f"× Mono 禁用/未安装"))
+        questionMap = lists[:]
+        repairButton.setDisabled(disbledButton)
+        questionList.setModel(nmodel)
+
+class LogThreading(QtCore.QThread):
+    done = QtCore.pyqtSignal(list)
+    def __init__(self):
+        super().__init__()
+
+    def run(self):
+        global logText
+        repairList = []
+        logText = returnText.toPlainText()
+        print(logText.splitlines())
+        for i in logText.splitlines():
+            print(i)
+            checkingText = i.lower()
+            if "err:module:import_dll Library".lower() in checkingText:
+                # Lose Dll
+                repairList.append([1, i[i.index("Library") + 8: i.index("(")].strip()])
+                continue
+            if "err:module:fixup_imports_ilonly".lower() in checkingText:
+                # Lose Dll
+                repairList.append([1, i[i.index("_ilonly") + 8: i.index("not")].strip()])
+                continue
+            if "Cannot open assembly".lower() in checkingText and ": File does not contain a valid CIL image.".lower() in checkingText:
+                # Mono
+                repairList.append([2, i.replace(": File does not contain a valid CIL image.", "").replace("Cannot open assembly", "").strip()[1: -1]])
+            if "Could not load wine-gecko. HTML rendering will be disabled.".lower() in checkingText and "Could not find Wine Gecko. HTML rendering will be disabled.".lower() in checkingText:
+                # Disbled Gecko
+                repairList.append([3, ""])
+            if "Your wineserver binary was not upgraded correctly".lower() in checkingText:
+                repairList.append([4, ""])
+            if "Wine Mono is not installed".lower() in checkingText:
+                repairList.append([5, ""])
+        self.done.emit(repairList)
+    
+
+def DisableButton(things):
+    button_r_6.setDisabled(things)
+    button1.setDisabled(things)
+    button2.setDisabled(things)
+    button3.setDisabled(things)
+    wineConfig.setDisabled(things)
+    e1.setDisabled(things)
+    e2.setDisabled(things)
+    o1.setDisabled(things)
+    miniAppStore.setDisabled(things)
+    #winetricksOpen.configure(state=a[things])
+    getProgramIcon.setDisabled(things)
+    uninstallProgram.setDisabled(things)
+    trasButton.setDisabled(things)
+
+def CheckProgramIsInstall(program):
+    return not bool(os.system(f"which '{program}'"))
+class Runexebutton_threading(QtCore.QThread):
+    signal = QtCore.pyqtSignal(str)
+    showHistory = QtCore.pyqtSignal(str)
+    def __init__(self):
+        super().__init__()
+
+    def run(self):
+        if e1.currentText() == "":
+            wineBottonPath = setting["DefultBotton"]
+        else:
+            wineBottonPath = e1.currentText()
+        option = ""
+        if setting["Architecture"] != "Auto":
+            option += f"WINEARCH={setting['Architecture']} "
+        if setting["MonoGeckoInstaller"]:
+            option += f"WINEDLLOVERRIDES=\"mscoree,mshtml=\" "
+        if not setting["Debug"]:
+            option += "WINEDEBUG=-all "
+        else:
+            option += "WINEDEBUG=FIXME,ERR,WARN,TRACE,Message "
+        wineUsingOption = ""
+        exePath = e2.currentText()
+        if True:
+            fileName = [".exe"]
+            changePath = False
+            for i in fileName:
+                if i in exePath:
+                    print(i)
+                    print(exePath)
+                    l = exePath.index(i)
+                    exePath = f"{exePath[:l+4]}' {exePath[l+4:]} '"
+                    print(l)
+                    print(exePath)
+                    changePath = True
+                    break
+            #if not changePath and not os.path.exists(changePath):
+            if not changePath and not os.path.exists(exePath):
+                # 删除前后无用空格以防止出现问题
+                print(exePath)
+                exePath = exePath.strip()
+                l = exePath.index(" ")
+                exePath = f"{exePath[:l]}' {exePath[l:]} '"
+                print(l)
+                #print(i)
+                print(exePath)
+        if o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable":
+            wineUsingOption = ""
+        if o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable":
+            if not os.path.exists(f"{programPath}/dlls-arm"):
+                if os.system(f"7z x -y \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                    QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+                    return
+                os.remove(f"{programPath}/dlls-arm.7z")
+        if setting["TerminalOpen"]:
+            res = ""
+            if e2.currentText()[-4:] == ".msi" and os.path.exists(e2.currentText()):
+                OpenTerminal("env WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " msiexec /i '" + e2.currentText() + "' " + setting["WineOption"])
+            elif e2.currentText()[-4:] == ".bat" and os.path.exists(e2.currentText()):
+                OpenTerminal("env WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " wineconsole '" + e2.currentText() + "' " + setting["WineOption"])
+            else:
+                OpenTerminal("env WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + exePath + "' " + setting["WineOption"])
+            #res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + e2.currentText() + "' " + setting["WineOption"] + "\" --keep-open" + wineUsingOption], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+        else:
+            if e2.currentText()[-4:] == ".msi" and os.path.exists(e2.currentText()):
+                res = subprocess.Popen(["WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " msiexec /i '" + e2.currentText() + "' " + setting["WineOption"]], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+            elif e2.currentText()[-4:] == ".bat" and os.path.exists(e2.currentText()):
+                res = subprocess.Popen(["WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " wineconsole '" + e2.currentText() + "' " + setting["WineOption"]], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+            else:
+                print(["WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + exePath + "' " + setting["WineOption"]])
+                res = subprocess.Popen(["WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + exePath + "' " + setting["WineOption"]], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+        # 实时读取程序返回
+        #
+        if not setting["TerminalOpen"]:
+            while res.poll() is None:
+                try:
+                    text = res.stdout.readline().decode("utf8")
+                except:
+                    text = ""
+                self.signal.emit(text)
+                print(text, end="")
+        if len(findExeHistory) == 0 or findExeHistory[-1] != wineBottonPath:
+            findExeHistory.append(wineBottonPath)  # 将记录写进数组
+            write_txt(get_home() + "/.config/deepin-wine-runner/FindExeHistory.json", str(json.dumps(ListToDictionary(findExeHistory))))  # 将历史记录的数组转换为字典并写入
+        if len(wineBottonHistory) == 0 or wineBottonHistory[-1] != e2.currentText():
+            wineBottonHistory.append(e2.currentText())  # 将记录写进数组        
+            write_txt(get_home() + "/.config/deepin-wine-runner/WineBottonHistory.json", str(json.dumps(ListToDictionary(wineBottonHistory))))  # 将历史记录的数组转换为字典并写入
+        self.showHistory.emit("")
+        # 针对 QQ、TIM 安装后不会生成 lnk 的问题,由程序读取以及自动创建
+        # 判断是否安装了 QQ/TIM
+        for i in iconListUnBuild:
+            if os.path.exists(i[1].replace("wineBottonPath", wineBottonPath)):
+                if not os.path.exists(f"{get_home()}/.local/share/applications/wine/{i[0]}-{os.path.basename(wineBottonPath)}.desktop"):
+                    print("图标不存在,创建图标")
+                    # 图标不存在
+                    # 写入 .desktop 文件
+                    try:
+                        os.system(f"mkdir -p '{get_home()}/.local/share/applications/wine'")
+                        name = i[0]
+                        if setting["BuildByBottleName"]:
+                            name = f"{i[0]}——{os.path.basename(wineBottonPath)}"
+                        write_txt(f"{get_home()}/.local/share/applications/wine/{i[0]}-{os.path.basename(wineBottonPath)}.desktop", f'''[Desktop Entry]
+Name={name}
+Exec=env WINEPREFIX='{wineBottonPath}' {option} {wine[o1.currentText()]} '{i[1].replace("wineBottonPath", wineBottonPath)}' {setting["WineOption"]} {wineUsingOption}
+Icon={programPath}/Icon/{i[0]}.svg
+Type=Application
+StartupNotify=true''')
+                    except:
+                        # 写入不进去就别写入了,当什么事情都没发生就行
+                        traceback.print_exc()
+        DisableButton(False)
+
+class Temp:
+    webWindow = None
+
+def OpenUrl(url):
+    print(url.url())
+    # 判断是否可以使用小窗打开
+    if not bad:
+        Temp.webWindow = QtWidgets.QMainWindow()
+        web = QtWebEngineWidgets.QWebEngineView()
+        web.setUrl(url)
+        Temp.webWindow.setWindowTitle("浏览页面")
+        Temp.webWindow.setCentralWidget(web)
+        Temp.webWindow.setWindowIcon(QtGui.QIcon(iconPath))
+        Temp.webWindow.show()
+        return
+    webbrowser.open_new_tab(url.url())
+        
+    #QtCore.QUrl().url()
+
+# 显示“关于这个程序”窗口
+def about_this_program()->"显示“关于这个程序”窗口":
+    global about
+    global title
+    global iconPath
+    QT.message = QtWidgets.QMainWindow()  
+    QT.message.setWindowIcon(QtGui.QIcon(iconPath))
+    messageWidget = QtWidgets.QWidget()
+    QT.message.setWindowTitle(f"关于 {title}")
+    messageLayout = QtWidgets.QGridLayout()
+    messageLayout.addWidget(QtWidgets.QLabel(f"<img width=256 src='{iconPath}'>"), 0, 0, 1, 1, QtCore.Qt.AlignTop)
+    aboutInfo = QtWidgets.QTextBrowser(messageWidget)
+    aboutInfo.setFocusPolicy(QtCore.Qt.NoFocus)
+    #aboutInfo.copyAvailable.connect(lambda: print("b"))
+    aboutInfo.anchorClicked.connect(OpenUrl)
+    aboutInfo.setOpenLinks(False)
+    aboutInfo.setHtml(about)
+    aboutInfo.setOpenExternalLinks(False)
+    messageLayout.addWidget(aboutInfo, 0, 1, 1, 1)
+    ok = QtWidgets.QPushButton(transla.transe("U", "确定"))
+    ok.clicked.connect(QT.message.close)
+    messageLayout.addWidget(ok, 1, 1, 1, 1, QtCore.Qt.AlignBottom | QtCore.Qt.AlignRight)
+    messageWidget.setLayout(messageLayout)
+    QT.message.setCentralWidget(messageWidget)
+    QT.message.resize(int(messageWidget.frameGeometry().width() * 1.5), int(messageWidget.frameGeometry().height() * 1.5))
+    QT.message.show()
+
+# 显示“提示”窗口
+def helps():
+    global tips
+    QtWidgets.QMessageBox.information(widget, "提示", tips)
+
+# 显示更新内容窗口
+def UpdateThings():
+    QtWidgets.QMessageBox.information(widget, "更新内容", updateThings)
+
+# 生成 desktop 文件在启动器
+def make_desktop_on_launcher():
+    try:
+        if combobox1.currentText() == "" or e2.currentText() == "":  # 判断文本框是否有内容
+            QtWidgets.QMessageBox.information(widget, "提示", "没有填写需要使用 exe 应用或保存的文件名")
+            return
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
+            if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 写入?") == QtWidgets.QMessageBox.No:
+                DisableButton(False)
+                return
+        else:  # 如果都有
+            if os.path.exists(get_home() + "/.local/share/applications/" + combobox1.currentText() + ".desktop"): # 判断目录是否有该文件,如果有
+                choose = QtWidgets.QMessageBox.question(widget, "提示", "文件已经存在,是否覆盖?") == QtWidgets.QMessageBox.Yes
+                if choose:   # 如要覆盖
+                    os.remove(get_home() + "/.local/share/applications/" + combobox1.currentText() + ".desktop")  # 删除该文件
+                else:  # 如不覆盖
+                    return  # 结束
+            if e1.currentText() == "":
+                wineBottonPath = setting["DefultBotton"]
+            else:
+                wineBottonPath = e1.currentText()
+            option = ""
+            if setting["Architecture"] != "Auto":
+                option += f"WINEARCH={setting['Architecture']} "
+            if not setting["Debug"]:
+                option += "WINEDEBUG=-all "
+            else:
+                option += "WINEDEBUG=FIXME,ERR,WARN,TRACE,Message "
+            wineUsingOption = ""
+            if o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable":
+                if not os.path.exists(f"{programPath}/dlls-arm"):
+                    if os.system(f"7z x -y \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                        QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+                        return
+                    os.remove(f"{programPath}/dlls-arm.7z")
+            if o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable":
+                wineUsingOption = ""
+            value = ""
+            if e2.currentText()[:2].upper() == "C:":
+                value = f"{wineBottonPath}/drive_c/{e2.currentText()[2:]}".replace("\\", "/").replace("//", "/")
+            print(value)
+            iconPaths = iconPath
+            for i in iconList:
+                listValue = i[1].replace("wineBottonPath", wineBottonPath)
+                if listValue == e2.currentText() or listValue == value:
+                    # 如果路径相同,即可以用程序对应的图标
+                    iconPaths = f"{programPath}/Icon/{i[0]}.svg"
+                    # 读到了就不需要再读取了
+                    break
+            os.system(f"mkdir -p '{get_home()}/.local/share/applications/wine'")
+            write_txt(get_home() + "/.local/share/applications/wine/" + combobox1.currentText() + ".desktop", f'''[Desktop Entry]
+Name={combobox1.currentText()}
+Exec=env WINEPREFIX='{wineBottonPath}' {option} {wine[o1.currentText()]} '{e2.currentText()}' {setting["WineOption"]} {wineUsingOption}
+Icon={iconPaths}
+Type=Application
+StartupNotify=true''') # 写入文本文档
+            if len(shellHistory) == 0 or shellHistory[-1] != combobox1.currentText():
+                shellHistory.append(combobox1.currentText())  # 将记录写进数组
+                write_txt(get_home() + "/.config/deepin-wine-runner/ShellHistory.json", str(json.dumps(ListToDictionary(shellHistory))))  # 将历史记录的数组转换为字典并写入
+                combobox1.clear()
+                combobox1.addItems(shellHistory)
+            QtWidgets.QMessageBox.information(widget, "提示", "生成完成!")  # 显示完成对话框
+    except:
+        traceback.print_exc()
+        QtWidgets.QMessageBox.critical(widget, "错误", f"快捷方式创建失败,错误如下:\n{traceback.format_exc()}")
+
+def ConfigQemu():
+    lists = []
+    for i in qemuBottleList:
+        lists.append(f"{i[0]}/{i[1]}")
+    choose = QtWidgets.QInputDialog.getItem(window, "提示", "选择需要 Chroot 到里面的容器", lists, 0, False)
+    if not choose[1]:
+        return
+    threading.Thread(target=OpenTerminal, args=[f"python3 '{programPath}/QemuRun.py' '{choose[0]}' '{int(setting['QemuUnMountHome'])}' "]).start()
+    print(choose)
+
+# 生成 desktop 文件在桌面
+# (第四个按钮的事件)
+def make_desktop_on_desktop():
+    try:
+        if combobox1.currentText() == "" or e2.currentText() == "":  # 判断文本框是否有内容
+            QtWidgets.QMessageBox.information(widget, "提示", "没有填写需要使用 exe 应用或保存的文件名")
+            return
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
+            if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 写入?") == QtWidgets.QMessageBox.No:
+                DisableButton(False)
+                return
+        else:  # 如果都有
+            if os.path.exists(get_desktop_path() + "/" + combobox1.currentText() + ".desktop"): # 判断目录是否有该文件,如果有
+                choose = QtWidgets.QMessageBox.question(widget, "提示", "文件已经存在,是否覆盖?") == QtWidgets.QMessageBox.Yes
+                if choose:   # 如要覆盖
+                    os.remove(get_desktop_path() + "/" + combobox1.currentText() + ".desktop")  # 删除该文件
+                else:  # 如不覆盖
+                    return  # 结束
+            if e1.currentText() == "":
+                wineBottonPath = setting["DefultBotton"]
+            else:
+                wineBottonPath = e1.currentText()
+            wineUsingOption = ""
+            if o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable":
+                wineUsingOption = ""
+            if o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable":
+                if not os.path.exists(f"{programPath}/dlls-arm"):
+                    if os.system(f"7z x -y \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                        QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+                        return
+                    os.remove(f"{programPath}/dlls-arm.7z")
+            if not os.path.exists(get_desktop_path()):
+                os.makedirs(get_home())
+            os.mknod(get_desktop_path() + "/" + combobox1.currentText() + ".desktop")
+            option = ""
+            if setting["Architecture"] != "Auto":
+                option += f"WINEARCH={setting['Architecture']} "
+            if not setting["Debug"]:
+                option += "WINEDEBUG=-all "
+            value = ""
+            if e2.currentText()[:2].upper() == "C:":
+                value = f"{wineBottonPath}/drive_c/{e2.currentText()[2:]}".replace("\\", "/").replace("//", "/")
+            print(value)
+            iconPaths = iconPath
+            for i in iconList:
+                listValue = i[1].replace("wineBottonPath", wineBottonPath)
+                if listValue == e2.currentText() or listValue == value:
+                    # 如果路径相同,即可以用程序对应的图标
+                    iconPaths = f"{programPath}/Icon/{i[0]}.svg"
+                    # 读到了就不需要再读取了
+                    break
+            os.system(f"mkdir -p '{get_home()}/.local/share/applications/wine'")
+            write_txt(get_desktop_path() + "/" + combobox1.currentText() + ".desktop", f'''[Desktop Entry]
+Name={combobox1.currentText()}
+Exec=env WINEPREFIX='{wineBottonPath}' {option} {wine[o1.currentText()]} '{e2.currentText()}' {setting["WineOption"]} {wineUsingOption}
+Icon={iconPaths}
+Type=Application
+StartupNotify=true''') # 写入文本文档
+            if len(shellHistory) == 0 or shellHistory[-1] != combobox1.currentText():
+                shellHistory.append(combobox1.currentText())  # 将记录写进数组
+                write_txt(get_home() + "/.config/deepin-wine-runner/ShellHistory.json", str(json.dumps(ListToDictionary(shellHistory))))  # 将历史记录的数组转换为字典并写入
+                combobox1.clear()
+                combobox1.addItems(shellHistory)
+            QtWidgets.QMessageBox.information(widget, "提示", "生成完成!")  # 显示完成对话框
+    except:
+        traceback.print_exc()
+        QtWidgets.QMessageBox.critical(widget, "错误", f"快捷方式创建失败,错误如下:\n{traceback.format_exc()}")
+
+# 数组转字典
+def ListToDictionary(list):
+    dictionary = {}
+    for i in range(len(list)):
+        dictionary[i] = list[i]
+    return dictionary
+
+def CleanProgramHistory():
+    if QtWidgets.QMessageBox.question(widget, "警告", "删除后将无法恢复,你确定吗?\n删除后软件将会自动重启。") == QtWidgets.QMessageBox.Yes:
+        try:
+            shutil.rmtree(get_home() + "/.config/deepin-wine-runner")
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(widget, "错误", traceback.format_exc())
+        ReStartProgram()
+
+def CleanProgramCache():
+    try:
+        shutil.rmtree(get_home() + "/.cache/deepin-wine-runner")
+        QtWidgets.QMessageBox.information(widget, "提示", "缓存清理完毕!")
+    except:
+        traceback.print_exc()
+        QtWidgets.QMessageBox.critical(widget, "错误", traceback.format_exc())
+
+
+# 重启本应用程序
+def ReStartProgram():
+    python = sys.executable
+    os.execl(python, python, * sys.argv)
+
+def KillAllProgram():
+    pass
+
+def KillProgram():
+    os.system(f"killall {wine[o1.currentText()]} -9")
+    os.system("killall winedbg -9")
+    exeName = os.path.basename(e2.currentText())
+    os.system(f"killall {exeName} -9")
+
+def InstallWine():
+    threading.Thread(target=OpenTerminal, args=[f"'{programPath}/AllInstall.py'"]).start()
+
+def InstallWineOnDeepin23():
+    threading.Thread(target=OpenTerminal, args=[f"'{programPath}/InstallWineOnDeepin23.py'"]).start()
+
+class DllWindow():
+    def ShowWindow():
+        global dllMessage
+        global dllInfoMap
+        global textInfo
+        global dllName
+        dllMessage = QtWidgets.QWidget()
+        dllLayout = QtWidgets.QGridLayout()
+        try:
+            dllInfoMap["check"]
+        except:
+            try:
+                with open(f"{programPath}/CheckDLL/lists.json", "r") as file:
+                    dllInfoMap = json.loads(file.read())
+            except:
+                traceback.print_exc()
+                QtWidgets.QMessageBox.critical(dllMessage, "错误", traceback.format_exc())
+        # UI
+        dllName = QtWidgets.QLineEdit()
+        dllButton = QtWidgets.QPushButton("查询")
+        textInfo = QtWidgets.QTextBrowser()
+        dllButton.clicked.connect(DllWindow.Find)
+        dllLayout.addWidget(QtWidgets.QLabel("Dll 名称:"), 0, 0)
+        dllLayout.addWidget(dllName, 0, 1)
+        dllLayout.addWidget(dllButton, 0, 2)
+        dllLayout.addWidget(textInfo, 1, 0, 1, 3)
+        dllMessage.setWindowTitle(f"{title}——查询 Dll")
+        dllMessage.setLayout(dllLayout)
+        dllMessage.resize(int(dllMessage.frameGeometry().width() * 1.2), int(dllMessage.frameGeometry().height() * 1.1))
+        dllMessage.setWindowIcon(QtGui.QIcon(f"{programPath}/deepin-wine-runner.svg"))
+        dllMessage.show()
+
+    def Find():
+        dllNameText = dllName.text().strip().lower()
+        if dllNameText[-4:] != ".dll":
+            dllNameText += ".dll"
+        try:
+            textInfo.setText(dllInfoMap[dllNameText])
+        except:
+            textInfo.setText(f"未查询到有关 Dll '{dllNameText}' 有关的内容")
+
+def InstallWineOnDeepin23Alpha():
+    threading.Thread(target=OpenTerminal, args=[f"'{programPath}/InstallWineOnDeepin23Alpha.py'"]).start()
+
+def InstallWineHQ():
+    threading.Thread(target=OpenTerminal, args=[f"{programPath}/InstallNewWineHQ.sh"]).start()
+
+def OpenWineBotton():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    os.system("xdg-open \"" + wineBottonPath.replace("\'", "\\\'") + "\"")
+
+def OpenWineFontPath():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    QtWidgets.QMessageBox.information(widget, "提示", transla.transe("U", "如果安装字体?只需要把字体文件复制到此字体目录\n按下“OK”按钮可以打开字体目录"))
+    os.system("xdg-open \"" + wineBottonPath.replace("\'", "\\\'") + "/drive_c/windows/Fonts\"")
+
+def GetLoseDll():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    option = ""
+    if setting["MonoGeckoInstaller"]:
+        option += f"WINEDLLOVERRIDES=\"mscoree,mshtml=\" "
+    if setting["Architecture"] != "Auto":
+        option += f"WINEARCH={setting['Architecture']} "
+    if not setting["Debug"]:
+        option += "WINEDEBUG=-all "
+    wineUsingOption = ""
+    if o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable":
+        os.system(f"'{programPath}/deepin-wine-runner-create-botton.py' '{wineBottonPath}'")
+    if o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable":
+        wineUsingOption = ""
+    if o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable":
+        if not os.path.exists(f"{programPath}/dlls-arm"):
+            if os.system(f"7z x -y \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+                return
+            os.remove(f"{programPath}/dlls-arm.7z")
+    threading.Thread(target=os.system, args=[f"python3 '{programPath}/CheckDLL/main.py' '{e2.currentText()}' '{wineBottonPath}' '{wine[o1.currentText()]}'" + setting["WineOption"]]).start()
+
+class RunWineProgramThread(QtCore.QThread):
+    signal = QtCore.pyqtSignal(str)
+    showHistory = QtCore.pyqtSignal(str)
+    def __init__(self, wineProgram, history = False, Disbled = True):
+        super().__init__()
+        self.wineProgram = wineProgram
+        self.history = history
+        self.Disbled = Disbled
+
+    def run(self):
+        if e1.currentText() == "":
+            wineBottonPath = setting["DefultBotton"]
+        else:
+            wineBottonPath = e1.currentText()
+        option = ""
+        if setting["MonoGeckoInstaller"]:
+            option += f"WINEDLLOVERRIDES=\"mscoree,mshtml=\" "
+        if setting["Architecture"] != "Auto":
+            option += f"WINEARCH={setting['Architecture']} "
+        if not setting["Debug"]:
+            option += "WINEDEBUG=-all "
+        wineUsingOption = ""
+        if o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable":
+            os.system(f"'{programPath}/deepin-wine-runner-create-botton.py' '{wineBottonPath}'")
+        if o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable":
+            wineUsingOption = ""
+        if o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable":
+            if not os.path.exists(f"{programPath}/dlls-arm"):
+                if os.system(f"7z x -y \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                    QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+                    return
+                os.remove(f"{programPath}/dlls-arm.7z")
+        if setting["TerminalOpen"]:
+            res = ""
+            OpenTerminal(f"env WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + self.wineProgram + "' " + setting["WineOption"] + " " + wineUsingOption)
+            #res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + self.wineProgram + "' " + setting["WineOption"] + " " + wineUsingOption + "\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+        else:
+            res = subprocess.Popen(["WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + self.wineProgram + "' " + setting["WineOption"]], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+        # 实时读取程序返回
+        if not setting["TerminalOpen"]:
+            while res.poll() is None:
+                try:
+                    text = res.stdout.readline().decode("utf8")
+                except:
+                    text = ""
+                self.signal.emit(text)
+                print(text, end="")
+        if self.history:
+            if len(findExeHistory) == 0 or findExeHistory[-1] != wineBottonPath:
+                findExeHistory.append(wineBottonPath)  # 将记录写进数组
+                write_txt(get_home() + "/.config/deepin-wine-runner/FindExeHistory.json", str(json.dumps(ListToDictionary(findExeHistory))))  # 将历史记录的数组转换为字典并写入
+            if len(wineBottonHistory) == 0 or wineBottonHistory[-1] != e2.currentText():
+                wineBottonHistory.append(e2.currentText())  # 将记录写进数组
+                write_txt(get_home() + "/.config/deepin-wine-runner/WineBottonHistory.json", str(json.dumps(ListToDictionary(wineBottonHistory))))  # 将历史记录的数组转换为字典并写入
+            self.showHistory.emit("")
+        if self.Disbled:
+            DisableButton(False)
+
+    
+runProgram = None
+def RunWineProgram(wineProgram, history = False, Disbled = True):
+    global runProgram
+    DisableButton(True)
+    if not CheckProgramIsInstall(wine[o1.currentText()]) and o1.currentText() != "基于 linglong 的 deepin-wine6-stable(不推荐)" and o1.currentText() != "基于 UOS exagear 的 deepin-wine6-stable" and o1.currentText() != "基于 UOS box86 的 deepin-wine6-stable":
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
+            DisableButton(False)
+            return
+    returnText.setText("")
+    runProgram = RunWineProgramThread(wineProgram, history, Disbled)
+    runProgram.signal.connect(QT.ShowWineReturn)
+    runProgram.showHistory.connect(QT.ShowHistory)
+    runProgram.start()
+
+class RunWinetricksThread(QtCore.QThread):
+    signal = QtCore.pyqtSignal(str)
+    def __init__(self):
+        super().__init__()
+
+    def run(self):
+        wineBottonPath = setting["DefultBotton"]
+        if not e1.currentText() == "":
+            wineBottonPath = e1.currentText()
+        option = ""
+        if setting["Architecture"] != "Auto":
+            option += f"WINEARCH={setting['Architecture']} "
+        if not setting["Debug"]:
+            option += "WINEDEBUG=-all "
+        wineUsingOption = ""
+        if o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable":
+            wineUsingOption = ""
+        if o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable":
+            if not os.path.exists(f"{programPath}/dlls-arm"):
+                if os.system(f"7z x -y \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                    QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+                    return
+                os.remove(f"{programPath}/dlls-arm.7z")
+        if setting["TerminalOpen"]:
+            res = ""
+            # 用终端开应该不用返回输出内容了
+            OpenTerminal(f"WINEPREFIX='{wineBottonPath}' {option} WINE=" + subprocess.getoutput(f"which {wine[o1.currentText()]}").replace(" ", "").replace("\n", "") + f" winetricks --gui {wineUsingOption}")
+            #res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='{wineBottonPath}' {option} WINE=" + subprocess.getoutput(f"which {wine[o1.currentText()]}").replace(" ", "").replace("\n", "") + f" winetricks --gui {wineUsingOption}\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+        else:    
+            res = subprocess.Popen([f"WINEPREFIX='{wineBottonPath}' {option} WINE='" + subprocess.getoutput(f"which {wine[o1.currentText()]}").replace(" ", "").replace("\n", "") + "' winetricks --gui"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+        # 实时读取程序返回
+        while res.poll() is None:
+            try:
+                text = res.stdout.readline().decode("utf8")
+            except:
+                text = ""
+            self.signal.emit(text)
+            print(text, end="")
+        
+        
+        DisableButton(False)
+
+runWinetricks = None
+def RunWinetricks():
+    global runWinetricks
+    DisableButton(True)
+    if not CheckProgramIsInstall(wine[o1.currentText()]) and o1.currentText() != "基于 linglong 的 deepin-wine6-stable(不推荐)" and o1.currentText() != "基于 UOS exagear 的 deepin-wine6-stable" and o1.currentText() != "基于 UOS box86 的 deepin-wine6-stable":
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
+            DisableButton(False)
+            return
+    if o1.currentText() == "基于 UOS box86 的 deepin-wine6-stable" or o1.currentText() == "基于 UOS exagear 的 deepin-wine6-stable":
+        if not os.path.exists(f"{programPath}/dlls-arm"):
+            if os.system(f"7z x -y \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+                return
+            os.remove(f"{programPath}/dlls-arm.7z")
+    returnText.setText("")
+    runWinetricks = RunWinetricksThread()
+    runWinetricks.signal.connect(QT.ShowWineReturn)
+    runWinetricks.start()
+
+def CleanWineBottonByUOS():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"env WINE='{wine[o1.currentText()]}' '{programPath}/cleanbottle.sh' '{wineBottonPath}'")
+
+def FontAppStore():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"env WINE='{programPath}/launch.sh' '{programPath}/InstallFont.py' '{wineBottonPath}' {int(setting['RuntimeCache'])}")
+
+def GetDllFromInternet():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"env WINE='{programPath}/launch.sh' '{programPath}/InstallDll.py' '{wineBottonPath}' '{wine[o1.currentText()]}' {int(setting['RuntimeCache'])}")
+
+def WineBottonAutoConfig():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    option = ""
+    if setting["Architecture"] != "Auto":
+        option += f"WINEARCH={setting['Architecture']} "
+    if setting["MonoGeckoInstaller"]:
+        option += f"WINEDLLOVERRIDES=\"mscoree,mshtml=\" "
+    if not setting["Debug"]:
+        option += "WINEDEBUG=-all "
+    else:
+        option += "WINEDEBUG=FIXME,ERR,WARN,TRACE,Message "
+    os.system(f"env WINEPREFIX='{wineBottonPath}' {option} WINE='{wine[o1.currentText()]}' '{programPath}/AutoConfig.py' '{wine[o1.currentText()]}' '{wineBottonPath}'")
+
+def InstallMonoGecko(program):
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"'{programPath}/InstallMono.py' '{wineBottonPath}' '{wine[o1.currentText()]}' {program} {int(setting['RuntimeCache'])}")
+
+def InstallNetFramework():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"'{programPath}/InstallNetFramework.py' '{wineBottonPath}' '{wine[o1.currentText()]}' {int(setting['RuntimeCache'])}")
+
+def InstallVB():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"'{programPath}/InstallVisualBasicRuntime.py' '{wineBottonPath}' '{wine[o1.currentText()]}' {int(setting['RuntimeCache'])}")
+
+def InstallVisualStudioCPlusPlus():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"'{programPath}/InstallVisualCPlusPlus.py' '{wineBottonPath}' '{wine[o1.currentText()]}' {int(setting['RuntimeCache'])}")
+
+def InstallMSXML():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"'{programPath}/InstallMsxml.py' '{wineBottonPath}' '{wine[o1.currentText()]}' {int(setting['RuntimeCache'])}")
+
+def InstallDXVK():
+    if not os.path.exists(f"{programPath}/dxvk"):
+        if os.system(f"7z x -y \"{programPath}/dxvk.7z\" -o\"{programPath}\""):
+            QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+            return
+        os.remove(f"{programPath}/dxvk.7z")
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"env WINE='{wine[o1.currentText()]}' WINE64='{wine[o1.currentText()]}' WINEPREFIX='{wineBottonPath}' '{programPath}/dxvk/setup_dxvk.sh' uninstall")
+
+def InstallVkd3d():
+    if not os.path.exists(f"{programPath}/vkd3d-proton"):
+        if os.system(f"7z x -y \"{programPath}/vkd3d-proton.7z\" -o\"{programPath}\""):
+            QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+            return
+        os.remove(f"{programPath}/vkd3d-proton.7z")
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"env WINE='{wine[o1.currentText()]}' WINE64='{wine[o1.currentText()]}' WINEPREFIX='{wineBottonPath}' '{programPath}/vkd3d-proton/setup_vkd3d_proton.sh' install")
+
+def UninstallVkd3d():
+    if not os.path.exists(f"{programPath}/vkd3d-proton"):
+        if os.system(f"7z x -y \"{programPath}/vkd3d-proton.7z\" -o\"{programPath}\""):
+            QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+            return
+        os.remove(f"{programPath}/vkd3d-proton.7z")
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"env WINE='{wine[o1.currentText()]}' WINE64='{wine[o1.currentText()]}' WINEPREFIX='{wineBottonPath}' '{programPath}/vkd3d-proton/setup_vkd3d_proton.sh' uninstall")
+    #process = QtCore.QProcess()
+    #process.startDetached(f"{programPath}/launch.sh", ["deepin-terminal", "-e", 
+            #"env", f"WINE={wine[o1.currentText()]}", f"WINE64={wine[o1.currentText()]}", f"WINEPREFIX={wineBottonPath}", "bash",
+            #f"{programPath}/dxvk/setup_dxvk.sh", "install"])
+
+def UninstallDXVK():
+    if not os.path.exists(f"{programPath}/dxvk"):
+        if os.system(f"7z x -y \"{programPath}/dxvk.7z\" -o\"{programPath}\""):
+            QtWidgets.QMessageBox.critical(widget, "错误", "无法解压资源")
+            return
+        os.remove(f"{programPath}/dxvk.7z")
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"env WINE='{wine[o1.currentText()]}' WINE64='{wine[o1.currentText()]}' WINEPREFIX='{wineBottonPath}' '{programPath}/dxvk/setup_dxvk.sh' uninstall")
+    #process = QtCore.QProcess()
+    #process.startDetached(f"{programPath}/launch.sh", ["deepin-terminal", "-e", 
+            #"env", f"WINE={wine[o1.currentText()]}", f"WINE64={wine[o1.currentText()]}", f"WINEPREFIX={wineBottonPath}",
+            #f"{programPath}/dxvk/setup_dxvk.sh", "uninstall"])
+
+def MiniAppStore():
+    if e1.currentText()== "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"'{programPath}/AppStore.py' '{wineBottonPath}' '{wine[o1.currentText()]}'")
+
+def InstallOther():
+    if e1.currentText()== "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    OpenTerminal(f"'{programPath}/InstallOther.py' '{wineBottonPath}' '{wine[o1.currentText()]}' {int(setting['RuntimeCache'])}")
+
+def BuildExeDeb():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    threading.Thread(target=os.system, args=[f"python3 '{programPath}/deepin-wine-packager.py' '{wineBottonPath}' '{wine[o1.currentText()]}'"]).start()
+
+def SetDeepinFileDialogDeepin():
+    code = os.system(f"pkexec \"{programPath}/deepin-wine-venturi-setter.py\" deepin")
+    if code != 0:
+        if code == 1:
+            QtWidgets.QMessageBox.critical(widget, "错误", "无法更新配置:配置不准重复配置")
+            return
+        QtWidgets.QMessageBox.critical(widget, "错误", "配置失败")
+        return
+    QtWidgets.QMessageBox.information(widget, "提示", "设置完成!")
+
+def AddReg():
+    path = QtWidgets.QFileDialog.getOpenFileName(window, "保存路径", get_home(), "reg文件(*.reg);;所有文件(*.*)")
+    if path[0] == "" and not path[1]:
+        return
+    RunWineProgram(f"regedit' /S '{path[0]}' 'HKEY_CURRENT_USER\Software\Wine\DllOverrides")
+
+def SaveDllList():
+    path = QtWidgets.QFileDialog.getSaveFileName(window, "保存路径", get_home(), "reg文件(*.reg);;所有文件(*.*)")
+    if path[0] == "" and not path[1]:
+        return
+    RunWineProgram(f"regedit' /E '{path[0]}' 'HKEY_CURRENT_USER\Software\Wine\DllOverrides")
+
+def SetDeepinFileDialogDefult():
+    code = os.system(f"pkexec \"{programPath}/deepin-wine-venturi-setter.py\" defult")
+    if code != 0:
+        if code == 1:
+            QtWidgets.QMessageBox.critical(widget, "错误", "无法更新配置:配置不准重复配置")
+            return
+        QtWidgets.QMessageBox.critical(widget, "错误", "配置失败")
+        return
+    QtWidgets.QMessageBox.information(widget, "提示", "设置完成!")
+
+def SetDeepinFileDialogRecovery():
+    threading.Thread(target=OpenTerminal, args=[f"pkexec '{programPath}/deepin-wine-venturi-setter.py' recovery"]).start()
+
+def DeleteDesktopIcon():
+    if os.path.exists(f"{get_home()}/.local/share/applications/wine"):
+        try:
+            shutil.rmtree(f"{get_home()}/.local/share/applications/wine")
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(widget, "错误", traceback.format_exc())
+            return
+    QtWidgets.QMessageBox.information(widget, "提示", "删除完成")
+
+def DeleteWineBotton():
+    if QtWidgets.QMessageBox.question(widget, "提示", "你确定要删除容器吗?删除后将无法恢复!\n如果没有选择 wine 容器,将会自动删除默认的容器!") == QtWidgets.QMessageBox.No:
+        return
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    try:
+        shutil.rmtree(wineBottonPath)
+        QtWidgets.QMessageBox.information(widget, "提示", "删除完毕!")
+    except:
+        traceback.print_exc()
+        QtWidgets.QMessageBox.critical(widget, "错误", traceback.format_exc())
+
+def ThankWindow():
+    # 直接显示关于窗口,关于窗口已经添加
+    about_this_program()
+
+def InstallWineFont():
+    # 筛选 apt
+    if not os.system("which aptss"):
+        threading.Thread(target=OpenTerminal, args=[f"sudo aptss install ms-core-fonts -y"]).start()
+    elif not os.system("which ss-apt-fast"):
+        threading.Thread(target=OpenTerminal, args=[f"sudo ss-apt-fast install ms-core-fonts -y"]).start()
+    elif not os.system("which apt-fast"):
+        threading.Thread(target=OpenTerminal, args=[f"sudo apt-fast install ms-core-fonts -y"]).start()
+    else:
+        threading.Thread(target=OpenTerminal, args=[f"sudo apt install ms-core-fonts -y"]).start()
+
+def WineRunnerBugUpload():
+    threading.Thread(target=os.system, args=[f"'{programPath}/deepin-wine-runner-update-bug'"]).start()
+
+def SetHttpProxy():
+    QtWidgets.QMessageBox.information(window, "提示", "请在下面的对话框正确输入内容以便设置代理")
+    proxyServerAddress = QtWidgets.QInputDialog.getText(window, "提示", "请输入代理服务器地址")[0]
+    port = QtWidgets.QInputDialog.getText(window, "提示", "请输入代理服务器端口")[0]
+    if proxyServerAddress == "" or port == "":
+        return
+    RunWineProgram("reg' add 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings' /v ProxyEnable /t REG_DWORD /d 00000001 '/f")
+    RunWineProgram(f"reg' add 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings' /v ProxyServer /d '{proxyServerAddress}:{port}' '/f")
+
+def DisbledHttpProxy():
+    RunWineProgram("reg' add 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings' /v ProxyEnable /t REG_DWORD /d 00000000 '/f")
+
+def GetScreenSize():
+    screenInformation = []
+    # 使用 xrandr 进行筛选
+    for i in subprocess.getoutput("xrandr").split('\n'):
+        if not " connected " in i:  # 检测连接的显示器
+            continue
+        # 获取分辨率基本信息,如
+        # DisplayPort-0 connected 1600x900+1280+0 (normal left inverted right x axis y axis) 434mm x 236mm
+        # 先判断是否为主屏幕
+        main = False
+        if "primary" in i:
+            main = True
+        # 进行进一步筛选
+        i = i[i.index("connected"):].replace("connected", "").replace("primary", "")
+        # 进行初步筛选,如
+        # 1600x900+1280+0 (normal left inverted right x axis y axis) 434mm x 236mm
+        i = i[:i.index("(")].replace(" ", "")
+        # 筛选为 1600x900+0+0 进行最后数值的提取
+        screenInformation.append([
+            int(i[:i.index("x")]),                     # 获取宽度
+            int(i[i.index("x") + 1 :i.index("+")]),    # 获取高度
+            int(i[i.index("+") + 1:].split('+')[0]),   # 获取显示屏 X 坐标
+            int(i[i.index("+") + 1:].split('+')[1]),   # 获取显示屏 Y 坐标
+            main                                       # 是否为主屏幕
+        ])
+    return screenInformation  # 返回结果
+
+def UOSPackageScript():
+    threading.Thread(target=os.system, args=[f"python3 '{programPath}/deepin-wine-packager-with-script.py'"]).start()
+
+def RunVM():
+    threading.Thread(target=os.system, args=[f"bash '{programPath}/RunVM.sh'"]).start()
+
+def CleanProgram():
+    OpenTerminal(f"{programPath}/clean-unuse-program.py")
+
+class UpdateWindow():
+    data = {}
+    update = None
+    def ShowWindow():
+        UpdateWindow.update = QtWidgets.QMainWindow()
+        updateWidget = QtWidgets.QWidget()
+        updateWidgetLayout = QtWidgets.QGridLayout()
+        versionLabel = QtWidgets.QLabel(f"当前版本:{version}\n最新版本:未知\n更新内容:")
+        updateText = QtWidgets.QTextBrowser()
+        ok = QtWidgets.QPushButton(transla.transe("U", "更新(更新后需要自行手动重启程序)"))
+        ok.clicked.connect(UpdateWindow.Update)
+        cancel = QtWidgets.QPushButton("取消")
+        cancel.clicked.connect(UpdateWindow.update.close)
+        if "从源码运行的版本" == programVersionType:
+            versionLabel = QtWidgets.QLabel(f"当前版本:{version}\n最新版本:未知(从源码运行不提供更新)\n更新内容:")
+            updateText.setText("从源码运行不提供更新")
+            ok.setDisabled(True)
+        else:
+            if 1 == 0:
+                url = ""
+            else:
+                if "deepin/UOS 应用商店版本<带签名>" == programVersionType:
+                    url = "aHR0cHM6Ly9jb2RlLmdpdGxpbmsub3JnLmNuL2dmZGdkLXhpLW9yZy93aW5lLXJ1bm5lci11cGRhdGUtaW5mb3JtYXRpb24vcmF3L2JyYW5jaC9tYXN0ZXIvdXBkYXRlLXVvcy5qc29u"
+                elif "星火应用商店版本" == programVersionType:
+                    url = "aHR0cHM6Ly9jb2RlLmdpdGxpbmsub3JnLmNuL2dmZGdkLXhpLW9yZy93aW5lLXJ1bm5lci11cGRhdGUtaW5mb3JtYXRpb24vcmF3L2JyYW5jaC9tYXN0ZXIvdXBkYXRlLXNwYXJrLmpzb24="
+                else: 
+                    url = "aHR0cHM6Ly9jb2RlLmdpdGxpbmsub3JnLmNuL2dmZGdkLXhpLW9yZy93aW5lLXJ1bm5lci11cGRhdGUtaW5mb3JtYXRpb24vcmF3L2JyYW5jaC9tYXN0ZXIvdXBkYXRlLmpzb24="
+            
+            try:
+                UpdateWindow.data = json.loads(requests.get(base64.b64decode(url).decode("utf-8")).text)
+                versionLabel = QtWidgets.QLabel(f"当前版本:{version}\n最新版本:{UpdateWindow.data['Version']}\n更新内容:")
+                if UpdateWindow.data["Version"] == version:
+                    updateText.setText(transla.transe("U", "此为最新版本,无需更新"))
+                    ok.setDisabled(True)
+                else:
+                    updateText.setText(UpdateWindow.data["New"].replace("\\n", "\n"))
+            except:
+                traceback.print_exc()
+                QtWidgets.QMessageBox.critical(updateWidget, transla.transe("U", "错误"), transla.transe("U", "无法连接服务器!"))
+                updateText.setText("无法连接服务器,无法更新")
+                ok.setDisabled(True)
+        updateWidgetLayout.addWidget(versionLabel, 0, 0, 1, 1)
+        updateWidgetLayout.addWidget(updateText, 1, 0, 1, 3)
+        updateWidgetLayout.addWidget(ok, 2, 2, 1, 1)
+        updateWidgetLayout.addWidget(cancel, 2, 1, 1, 1)
+        updateWidget.setLayout(updateWidgetLayout)
+        UpdateWindow.update.setCentralWidget(updateWidget)
+        UpdateWindow.update.setWindowTitle(transla.transe("U", "检查更新"))
+        UpdateWindow.update.resize(updateWidget.frameGeometry().width(), int(updateWidget.frameGeometry().height() * 1.5))
+        UpdateWindow.update.show()
+
+    def Update():
+        if os.path.exists("/tmp/spark-deepin-wine-runner/update"):
+            shutil.rmtree("/tmp/spark-deepin-wine-runner/update")
+        os.makedirs("/tmp/spark-deepin-wine-runner/update")
+        try:            
+            print(UpdateWindow.data["Url"])
+            write_txt("/tmp/spark-deepin-wine-runner/update.sh", f"""#!/bin/bash
+echo 删除多余的安装包
+rm -rfv /tmp/spark-deepin-wine-runner/update/*
+#echo 关闭“Wine 运行器”以及其它“Python 应用”
+#killall python3
+echo 下载安装包
+wget -P /tmp/spark-deepin-wine-runner/update {UpdateWindow.data["Url"][0]}
+echo 安装安装包
+dpkg -i /tmp/spark-deepin-wine-runner/update/*
+echo 修复依赖关系
+apt install -f -y
+notify-send -i "{iconPath}" "更新完毕!"
+zenity --info --text=\"更新完毕!\" --ellipsize
+""")
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(None, "出现错误,无法继续更新", traceback.format_exc())
+        OpenTerminal("pkexec bash /tmp/spark-deepin-wine-runner/update.sh")
+
+class GetDllFromWindowsISO:
+    wineBottonPath = get_home() + "/.wine"
+    isoPath = None
+    dllList = None
+    message = None
+    dllFound = None
+    dllControl = None
+    foundButton = None
+    saveDll = None
+    setWineBotton = None
+    browser = None
+    mount = False
+    mountButton = None
+    dllListModel = None
+    arch = 0
+    def ShowWindow():
+        #DisableButton(True)
+        GetDllFromWindowsISO.message = QtWidgets.QMainWindow()
+        widget = QtWidgets.QWidget()
+        widgetLayout = QtWidgets.QGridLayout()
+        if not e1.currentText() == "":
+            GetDllFromWindowsISO.wineBottonPath = e1.currentText()
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", f"""提示:
+    目前本提取功能暂只支持 NT 内核系统的官方安装镜像,不支持读取 ghost 等第三方封装方式的安装镜像
+    以及不要拷贝/替换太多的 dll,否则可能会导致 wine 容器异常,以及不要替换 Wine 的核心 dll
+    最后,拷贝/替换 dll 后,建议点击下面“设置 wine 容器”按钮==》函数库 进行设置
+当前选择的 Wine 容器:{GetDllFromWindowsISO.wineBottonPath}""")), 0, 0, 1, 5)
+        isoLabel = QtWidgets.QLabel(transla.transe("U", "ISO镜像:"))
+        GetDllFromWindowsISO.isoPath = QtWidgets.QComboBox()
+        GetDllFromWindowsISO.browser = QtWidgets.QPushButton(transla.transe("U", "浏览"))
+        isoControl = QtWidgets.QWidget()
+        isoControlLayout = QtWidgets.QHBoxLayout()
+        isoControl.setLayout(isoControlLayout)
+        dllControl = QtWidgets.QWidget()
+        dllControlLayout = QtWidgets.QHBoxLayout()
+        dllControl.setLayout(dllControlLayout)
+        GetDllFromWindowsISO.mountButton = QtWidgets.QPushButton(transla.transe("U", "读取/挂载ISO镜像"))
+        umountButton = QtWidgets.QPushButton(transla.transe("U", "关闭/卸载ISO镜像"))
+        GetDllFromWindowsISO.dllFound = QtWidgets.QComboBox()
+        GetDllFromWindowsISO.foundButton = QtWidgets.QPushButton(transla.transe("U", "查找"))
+        GetDllFromWindowsISO.dllList = QtWidgets.QListView()
+        GetDllFromWindowsISO.saveDll = QtWidgets.QPushButton(transla.transe("U", "保存到 wine 容器中"))
+        GetDllFromWindowsISO.setWineBotton = QtWidgets.QPushButton(transla.transe("U", "设置 wine 容器"))
+        isoLabel.setSizePolicy(size)
+        GetDllFromWindowsISO.isoPath.setEditable(True)
+        GetDllFromWindowsISO.isoPath.addItems(isoPath)
+        GetDllFromWindowsISO.isoPath.setEditText("")
+        GetDllFromWindowsISO.browser.setSizePolicy(size)
+        GetDllFromWindowsISO.mountButton.setSizePolicy(size)
+        isoControlLayout.addWidget(GetDllFromWindowsISO.mountButton)
+        umountButton.setSizePolicy(size)
+        isoControlLayout.addWidget(umountButton)
+        GetDllFromWindowsISO.dllFound.setEditable(True)
+        GetDllFromWindowsISO.dllFound.addItems(isoPathFound)
+        GetDllFromWindowsISO.dllFound.setEditText("")
+        GetDllFromWindowsISO.saveDll.setSizePolicy(size)
+        dllControlLayout.addWidget(GetDllFromWindowsISO.saveDll)
+        GetDllFromWindowsISO.setWineBotton.setSizePolicy(size)
+        GetDllFromWindowsISO.DisbledDown(True)
+        dllControlLayout.addWidget(GetDllFromWindowsISO.setWineBotton)
+        widgetLayout.addWidget(isoLabel, 1, 0, 1, 1)
+        widgetLayout.addWidget(GetDllFromWindowsISO.isoPath, 1, 1, 1, 1)
+        widgetLayout.addWidget(GetDllFromWindowsISO.browser, 1, 2, 1, 1)
+        widgetLayout.addWidget(isoControl, 2, 1, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "查找DLL\n(为空则代表不查找,\n将显示全部内容):")), 3, 0, 1, 1)
+        widgetLayout.addWidget(GetDllFromWindowsISO.dllFound, 3, 1, 1, 1)
+        widgetLayout.addWidget(GetDllFromWindowsISO.foundButton, 3, 2, 1, 1)
+        widgetLayout.addWidget(GetDllFromWindowsISO.dllList, 4, 1, 1, 1)
+        widgetLayout.addWidget(dllControl, 5, 1, 1, 1)
+        widget.setLayout(widgetLayout)
+        GetDllFromWindowsISO.browser.clicked.connect(GetDllFromWindowsISO.Browser)
+        GetDllFromWindowsISO.mountButton.clicked.connect(GetDllFromWindowsISO.MountDisk)
+        umountButton.clicked.connect(GetDllFromWindowsISO.UmountDisk)
+        GetDllFromWindowsISO.foundButton.clicked.connect(GetDllFromWindowsISO.Found)
+        GetDllFromWindowsISO.saveDll.clicked.connect(GetDllFromWindowsISO.CopyDll)
+        GetDllFromWindowsISO.setWineBotton.clicked.connect(lambda: RunWineProgram("winecfg", Disbled=False))
+        GetDllFromWindowsISO.message.setCentralWidget(widget)
+        GetDllFromWindowsISO.dllListModel = QtCore.QStringListModel()
+        GetDllFromWindowsISO.dllListModel.setStringList([])
+        GetDllFromWindowsISO.dllList.setModel(GetDllFromWindowsISO.dllListModel)
+        GetDllFromWindowsISO.isoPath.currentText()
+        GetDllFromWindowsISO.message.setWindowTitle(f"Wine 运行器 {version}——从 ISO 提取 DLL")
+        GetDllFromWindowsISO.message.setWindowIcon(QtGui.QIcon(iconPath))
+        GetDllFromWindowsISO.message.show()
+
+    def DisbledUp(state):
+        GetDllFromWindowsISO.isoPath.setDisabled(state)
+        GetDllFromWindowsISO.browser.setDisabled(state)
+        GetDllFromWindowsISO.mountButton.setDisabled(state)
+
+
+    def DisbledDown(state):
+        GetDllFromWindowsISO.dllList.setDisabled(state)
+        GetDllFromWindowsISO.dllFound.setDisabled(state)
+        GetDllFromWindowsISO.saveDll.setDisabled(state)
+        GetDllFromWindowsISO.setWineBotton.setDisabled(state)
+        GetDllFromWindowsISO.foundButton.setDisabled(state)
+
+    def Browser():
+        path = QtWidgets.QFileDialog.getOpenFileName(GetDllFromWindowsISO.message, "选择 ISO 镜像文件", json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/FindISO.json"))["path"], "iso 镜像文件(*.iso);;ISO 镜像文件(*.ISO);;所有文件(*.*)")[0]
+        if path == None or path == "":
+            return
+        GetDllFromWindowsISO.isoPath.setEditText(path)
+        write_txt(get_home() + "/.config/deepin-wine-runner/FindISO.json", json.dumps({"path": os.path.dirname(path)}))  # 写入配置文件
+
+    def Found():
+        found = GetDllFromWindowsISO.dllFound.currentText()
+        findList = []
+        try:
+            if found == "":
+                # 显示所有内容
+                # 下面内容需要分类讨论
+                if GetDllFromWindowsISO.arch == 0:
+                    for i in os.listdir("/tmp/wine-runner-getdll/i386"):
+                        if i[-3:] == "dl_":
+                            findList.append(i[:-1] + "l")    
+                elif GetDllFromWindowsISO.arch == 32:
+                    for i in os.listdir("/tmp/wine-runner-getdll-wim/Windows/SysWOW64"):
+                        if i[-3:] == "dll":
+                            findList.append(i[:-1] + "l")  
+                elif GetDllFromWindowsISO.arch == 64:
+                    for i in os.listdir("/tmp/wine-runner-getdll-wim/Windows/System32"):
+                        if i[-3:] == "dll":
+                            findList.append(i[:-1] + "l")  
+                GetDllFromWindowsISO.dllListModel.setStringList(findList)
+                return
+            if GetDllFromWindowsISO.arch == 0:
+                for i in os.listdir("/tmp/wine-runner-getdll/i386"):
+                    if found in i[:-1] + "l":
+                        findList.append(i[:-1] + "l")  
+            elif GetDllFromWindowsISO.arch == 32:
+                for i in os.listdir("/tmp/wine-runner-getdll-wim/Windows/SysWOW64"):
+                    if found in i[:-1] + "l":
+                        findList.append(i[:-1] + "l")  
+            elif GetDllFromWindowsISO.arch == 64:
+                for i in os.listdir("/tmp/wine-runner-getdll-wim/Windows/System32"):
+                    if found in i[:-1] + "l":
+                        findList.append(i[:-1] + "l")  
+            if len(isoPath) == 0:
+                if isoPathFound[-1] != found:
+                    isoPathFound.append(found)  # 将记录写进数组
+                    write_txt(get_home() + "/.config/deepin-wine-runner/ISOPathFound.json", str(json.dumps(ListToDictionary(isoPathFound))))  # 将历史记录的数组转换为字典并写入
+            GetDllFromWindowsISO.dllFound.clear()
+            GetDllFromWindowsISO.dllFound.addItems(isoPathFound)
+            GetDllFromWindowsISO.dllListModel.setStringList(findList)
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(GetDllFromWindowsISO.message, transla.trans("错误"), traceback.format_exc())
+
+ 
+    def MountDisk():
+        if not os.path.exists(GetDllFromWindowsISO.isoPath.currentText()):
+            QtWidgets.QMessageBox.critical(GetDllFromWindowsISO.message, transla.trans("错误"), transla.trans("您选择的 ISO 镜像文件不存在"))
+            return
+        if os.path.exists("/tmp/wine-runner-getdll"):
+            try:
+                os.rmdir("/tmp/wine-runner-getdll")
+                os.system("rm -rf /tmp/wine-runner-getdll-wim")
+            except:
+                # 如果无法删除可能是挂载了文件
+                os.system("wimunmount /tmp/wine-runner-getdll-wim")
+                os.system("pkexec umount /tmp/wine-runner-getdll")
+                
+                try:
+                    os.rmdir("/tmp/wine-runner-getdll")
+                    os.rmdir("/tmp/wine-runner-getdll-wim")
+                except:
+                    traceback.print_exc()
+                    QtWidgets.QMessageBox.critical(GetDllFromWindowsISO.message, "错误", traceback.format_exc())
+                    return
+        os.makedirs("/tmp/wine-runner-getdll")
+        os.system(f"pkexec mount '{GetDllFromWindowsISO.isoPath.currentText()}' /tmp/wine-runner-getdll")
+        findList = []
+        # 判断是新版的 Windows ISO(Windows Vista 及以上版本)
+        if os.path.exists("/tmp/wine-runner-getdll/sources/install.wim"):
+            # 如果没有安装 wimtools 的话
+            if os.system("which wimmount") != 0:
+                QtWidgets.QMessageBox.critical(GetDllFromWindowsISO.message, "错误", f"镜像内容读取/挂载失败,因为没有安装 wimtools 以至无法读取")
+                return
+            # 是新版,挂载 wim
+            # 需要让用户选择挂载内容
+            QtWidgets.QInputDialog.getMultiLineText(GetDllFromWindowsISO.message, "提示", "挂载文件需要用户记住并在下一个对话框输入 Index 以挂载正确的镜像,按下下方任意按钮即可继续", subprocess.getoutput("wiminfo '/tmp/wine-runner-getdll/sources/install.wim'"))
+            choose = QtWidgets.QInputDialog.getInt(GetDllFromWindowsISO.message, "提示", "请输入 Index")
+            if not choose[1]:
+                return
+            os.makedirs("/tmp/wine-runner-getdll-wim")
+            os.system(f"wimmount /tmp/wine-runner-getdll/sources/install.wim {choose[0]} /tmp/wine-runner-getdll-wim")
+            if os.path.exists("/tmp/wine-runner-getdll-wim/Windows/SysWOW64"):
+                # 如果是 64 位镜像
+                if QtWidgets.QInputDialog.getItem(GetDllFromWindowsISO.message, "选择位数", "选择位数(如果没有选择,默认为 64 位)", ["32", "64"], 1, False) == "32":
+                    # 64 位镜像的 32 位是存在 SysWOW64 的                
+                    try:
+                        for i in os.listdir("/tmp/wine-runner-getdll-wim/Windows/SysWOW64"):
+                            if i[-3:] == "dll":
+                                findList.append(i[:-1] + "l")     
+                        GetDllFromWindowsISO.dllListModel.setStringList(findList)
+                        GetDllFromWindowsISO.arch = 32
+                        GetDllFromWindowsISO.DisbledDown(False)  
+                        GetDllFromWindowsISO.DisbledUp(True)
+                        GetDllFromWindowsISO.mount = True
+                        if len(isoPath) == 0 or isoPath[-1] != GetDllFromWindowsISO.isoPath.currentText():
+                            isoPath.append(GetDllFromWindowsISO.isoPath.currentText())  # 将记录写进数组
+                        write_txt(get_home() + "/.config/deepin-wine-runner/ISOPath.json", str(json.dumps(ListToDictionary(isoPath))))  # 将历史记录的数组转换为字典并写入
+                        GetDllFromWindowsISO.isoPath.clear()
+                        GetDllFromWindowsISO.isoPath.addItems(isoPath)
+                        return
+                    except:
+                        traceback.print_exc()
+                        QtWidgets.QMessageBox.critical(GetDllFromWindowsISO.message, "错误", f"镜像内容读取/挂载失败,报错如下:\n{traceback.format_exc()}")
+                        return
+            try:
+                for i in os.listdir("/tmp/wine-runner-getdll-wim/Windows/System32"):
+                    if i[-3:] == "dll":
+                        findList.append(i[:-1] + "l")    
+                GetDllFromWindowsISO.arch = 64 
+            except:
+                traceback.print_exc()
+                QtWidgets.QMessageBox.critical(GetDllFromWindowsISO.message, "错误", f"镜像内容读取/挂载失败,报错如下:\n{traceback.format_exc()}")
+                return
+            GetDllFromWindowsISO.dllListModel.setStringList(findList)
+        else:
+            try:
+                for i in os.listdir("/tmp/wine-runner-getdll/i386"):
+                    if i[-3:] == "dl_":
+                        findList.append(i[:-1] + "l")     
+                GetDllFromWindowsISO.arch = 0
+            except:
+                traceback.print_exc()
+                QtWidgets.QMessageBox.critical(GetDllFromWindowsISO.message, "错误", f"镜像内容读取/挂载失败,报错如下:\n{traceback.format_exc()}")
+                return
+            GetDllFromWindowsISO.dllListModel.setStringList(findList)
+        GetDllFromWindowsISO.DisbledDown(False)  
+        GetDllFromWindowsISO.DisbledUp(True)
+        GetDllFromWindowsISO.mount = True
+        if len(isoPath) == 0 or isoPath[-1] != GetDllFromWindowsISO.isoPath.currentText():
+            isoPath.append(GetDllFromWindowsISO.isoPath.currentText())  # 将记录写进数组
+            write_txt(get_home() + "/.config/deepin-wine-runner/ISOPath.json", str(json.dumps(ListToDictionary(isoPath))))  # 将历史记录的数组转换为字典并写入
+            GetDllFromWindowsISO.isoPath.clear()
+            GetDllFromWindowsISO.isoPath.addItems(isoPath)
+        #GetDllFromWindowsISO.isoPath['value'] = isoPath
+
+    def UmountDisk():
+        os.system("wimunmount /tmp/wine-runner-getdll-wim")
+        os.system("pkexec umount /tmp/wine-runner-getdll")
+        try:
+            shutil.rmtree("/tmp/wine-runner-getdll")
+            os.system("rm -rf /tmp/wine-runner-getdll-wim")
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(GetDllFromWindowsISO.message, transla.transe("U", "错误"), f"关闭/卸载镜像失败,报错如下:\n{traceback.format_exc()}")
+            return
+        GetDllFromWindowsISO.DisbledDown(True)
+        GetDllFromWindowsISO.DisbledUp(False)
+        GetDllFromWindowsISO.mount = False
+        QtWidgets.QMessageBox.information(GetDllFromWindowsISO.message, transla.transe("U", "提示"), transla.transe("U", "关闭/卸载成功!"))
+
+    def CopyDll():
+        choose = GetDllFromWindowsISO.dllList.selectionModel().selectedIndexes()[0].data()
+        if os.path.exists(f"{GetDllFromWindowsISO.wineBottonPath}/drive_c/windows/system32/{choose}"):
+            if QtWidgets.QMessageBox.question(GetDllFromWindowsISO.message, "提示", f"DLL {choose} 已经存在,是否覆盖?") == QtWidgets.QMessageBox.No:
+                return
+        try:
+            # 要分类讨论
+            if GetDllFromWindowsISO.arch == 0:
+                shutil.copy(f"/tmp/wine-runner-getdll/i386/{choose[:-1]}_", f"{GetDllFromWindowsISO.wineBottonPath}/drive_c/windows/system32/{choose}")
+            elif GetDllFromWindowsISO.arch == 32:
+                shutil.copy(f"/tmp/wine-runner-getdll-wim/Windows/SysWOW64/{choose[:-1]}l", f"{GetDllFromWindowsISO.wineBottonPath}/drive_c/windows/system32/{choose}")
+            elif GetDllFromWindowsISO.arch == 64:
+                shutil.copy(f"/tmp/wine-runner-getdll-wim/Windows/System32/{choose[:-1]}l", f"{GetDllFromWindowsISO.wineBottonPath}/drive_c/windows/system32/{choose}")
+            # 选择原装或优于内建
+            if QtWidgets.QInputDialog.getItem(GetDllFromWindowsISO.message, "选择", "选择模式", ["原装先于内建", "原装"], 0, False) == "原装先于内建":
+                # 原装先于内建
+                os.system(f"WINEPREFIX='{GetDllFromWindowsISO.wineBottonPath}' '{wine[o1.currentText()]}' reg add 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v {os.path.splitext(choose)[0]} /d native,builtin /f")
+            else:
+                # 原装
+                os.system(f"WINEPREFIX='{GetDllFromWindowsISO.wineBottonPath}' '{wine[o1.currentText()]}' reg add 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v {os.path.splitext(choose)[0]} /d native /f")
+            QtWidgets.QMessageBox.information(GetDllFromWindowsISO.message, "提示", "提取成功!")
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(GetDllFromWindowsISO.message, "错误", traceback.format_exc())
+
+choose = None
+class ProgramRunStatusShow():
+    msgWindow = None
+    def ShowWindow():
+        global choose
+        choose = None
+        dateVersion = ""
+        if not os.path.exists(e2.currentText()):
+            QtWidgets.QMessageBox.information(widget, "提示", "您输入的 exe 不存在")
+            return
+        try:
+            sha = ProgramRunStatusUpload.GetSHA1(e2.currentText())
+            lists = json.loads(requests.get(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0L3NwYXJrLWRlZXBpbi13aW5lLXJ1bm5lci9hcHAv").decode("utf-8") + sha + base64.b64decode("L2FsbC5qc29u").decode("utf-8")).text)
+            r = requests.get(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0L3NwYXJrLWRlZXBpbi13aW5lLXJ1bm5lci9hcHAv").decode("utf-8") + sha + base64.b64decode("L3RpdGxlLnR4dA==").decode("utf-8"))
+            r.encoding = "utf-8"
+            title = r.text
+        except:
+            choosemsg = QtWidgets.QMessageBox()
+            choosemsg.setText("""暂时还没有该软件的运行情况信息,请问需要?""")
+            choosemsg.setWindowTitle("提示")
+            def Choose(choices):
+                global choose
+                choose = choices
+            choosemsg.addButton("取消", QtWidgets.QMessageBox.ActionRole).clicked.connect(lambda: Choose(0))
+            choosemsg.addButton("提交评分", QtWidgets.QMessageBox.ActionRole).clicked.connect(lambda: Choose(1))
+            choosemsg.addButton("预测评分(不准确)", QtWidgets.QMessageBox.ActionRole).clicked.connect(lambda: Choose(2))
+            choosemsg.exec_()
+            if choose == None or choose == 0:
+                return
+            if choose == 1:
+                ProgramRunStatusUpload.ShowWindow(sha)
+                return
+            if choose == 2:
+                try:
+                    lists = [0, 0, 0, 0, 0, 0, 0, 0]
+                    info = json.loads(requests.get(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0OjMwMjUwL0FJP1NIQTE9").decode("utf-8") + sha).text)
+                    lists[int(info["Fen"])] = 1
+                    dateVersion = info["Version"]
+                    title = "null"
+                except:
+                    traceback.print_exc()
+                    QtWidgets.QMessageBox.critical(window, "错误", "无法获取预测数值")
+                    return        
+            
+            
+        informationList = [
+            "0分:无法运行并且也没有报错,自己无法解决",
+            "1分:无法运行但有报错,自己无法解决",
+            "2分:可以运行但是效果很差,几乎无法使用",
+            "3分:可以运行且勉强可以使用",
+            "4分:可以运行,体验大差不差,还是有点小问题",
+            "5分:可以运行且完全没有bug和问题,和在 Windows 上一样",
+            "含有不良内容,不宜安装",
+            "含有病毒、木马等对计算机有害的软件"
+        ]
+        try:
+            if title.lower() == "null":
+                title = "未知应用"
+        except:
+            title = "未知应用"
+        maxHead = lists.index(max(lists))
+        ProgramRunStatusShow.msgWindow = QtWidgets.QMainWindow()
+        msgWidget = QtWidgets.QWidget()
+        msgWidgetLayout = QtWidgets.QGridLayout()
+        starLayout = QtWidgets.QHBoxLayout()
+        uploadButton = QtWidgets.QPushButton(transla.transe("U", "点此上传运行情况"))
+        uploadButton.clicked.connect(lambda: ProgramRunStatusUpload.ShowWindow(sha, title))
+        msgWidgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "综合评价:")), 0, 0)
+        msgWidgetLayout.addLayout(starLayout, 0, 1)
+        msgWidgetLayout.addWidget(QtWidgets.QLabel(informationList[maxHead]), 1, 0, 1, 2)
+        msgWidgetLayout.addWidget(QtWidgets.QLabel("" if dateVersion == "" else f"数据版本:{dateVersion}"), 2, 0, 1, 2)
+        msgWidgetLayout.addWidget(uploadButton, 3, 0, 1, 2)
+        end = 5
+        if maxHead > 5:
+            for i in range(end):
+                starLayout.addWidget(QtWidgets.QLabel(f"<img src='{programPath}/Icon/BadStar.svg' width=50>"))
+        else:
+            for i in range(maxHead):
+                starLayout.addWidget(QtWidgets.QLabel(f"<img src='{programPath}/Icon/Star.svg' width=50>"))
+            head = maxHead
+            for i in range(head, end):
+                starLayout.addWidget(QtWidgets.QLabel(f"<img src='{programPath}/Icon/UnStar.svg' width=50>"))
+        msgWidget.setLayout(msgWidgetLayout)
+        ProgramRunStatusShow.msgWindow.setCentralWidget(msgWidget)
+        ProgramRunStatusShow.msgWindow.setWindowIcon(QtGui.QIcon(iconPath))
+        ProgramRunStatusShow.msgWindow.setWindowTitle(f"应用“{title}”的运行情况")
+        ProgramRunStatusShow.msgWindow.show()
+
+class ProgramRunStatusUpload():
+    msgWindow = None
+    starLayout = None
+    fen = None
+    starList = []
+    sha1Value = ""
+    programName = None
+    def ChangeStar():
+        if ProgramRunStatusUpload.fen.currentIndex() > 5:
+            for i in ProgramRunStatusUpload.starList:
+                i.setText(f"<img src='{programPath}/Icon/BadStar.svg' width=25>")
+            return
+        for i in range(ProgramRunStatusUpload.fen.currentIndex()):
+            ProgramRunStatusUpload.starList[i].setText(f"<img src='{programPath}/Icon/Star.svg' width=25>")
+        head = ProgramRunStatusUpload.fen.currentIndex() 
+        end = len(ProgramRunStatusUpload.starList)
+        for i in range(head, end):
+            ProgramRunStatusUpload.starList[i].setText(f"<img src='{programPath}/Icon/UnStar.svg' width=25>")
+        
+    def ShowWindow(sha="", title=""):
+        ProgramRunStatusUpload.starList = []
+        ProgramRunStatusUpload.sha1Value = sha
+        ProgramRunStatusUpload.msgWindow = QtWidgets.QMainWindow()
+        msgWidget = QtWidgets.QWidget()
+        msgWidgetLayout = QtWidgets.QGridLayout()
+        ProgramRunStatusUpload.programName = QtWidgets.QLineEdit()
+        ProgramRunStatusUpload.fen = QtWidgets.QComboBox()
+        ProgramRunStatusUpload.starLayout = QtWidgets.QHBoxLayout()
+        upload = QtWidgets.QPushButton(transla.transe("U", "上传"))
+        upload.clicked.connect(ProgramRunStatusUpload.Upload)
+        if title != "":
+            ProgramRunStatusUpload.programName.setText(title)
+            ProgramRunStatusUpload.programName.setDisabled(True)
+        # 生成星星列表
+        for i in [1, 1, 1, 1, 0]:
+            ProgramRunStatusUpload.starList.append(QtWidgets.QLabel(f"<img src='{programPath}/Icon/{['Un', ''][i]}Star.svg' width=25>"))
+            ProgramRunStatusUpload.starLayout.addWidget(ProgramRunStatusUpload.starList[-1])
+        ProgramRunStatusUpload.starLayout.addItem(QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum))
+        ProgramRunStatusUpload.programName.setPlaceholderText(transla.transe("U", "如果这个程序和程序名确实是合法还是检测到敏感词,改为“NULL”即可"))
+        ProgramRunStatusUpload.fen.addItems(["0分:无法运行并且也没有报错,自己无法解决",
+    "1分:无法运行但有报错,自己无法解决",
+    "2分:可以运行但是效果很差,几乎无法使用",
+    "3分:可以运行且勉强可以使用",
+    "4分:可以运行,体验大差不差,还是有点小问题",
+    "5分:可以运行且完全没有bug和问题,和在 Windows 上一样",
+    "含有不良内容,不宜安装",
+    "含有病毒、木马等对计算机有害的软件"])
+        ProgramRunStatusUpload.fen.setCurrentIndex(4)
+        ProgramRunStatusUpload.fen.currentIndexChanged.connect(ProgramRunStatusUpload.ChangeStar)
+        msgWidgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "程序名:")), 0, 0)
+        msgWidgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "评分:")), 1, 0)
+        msgWidgetLayout.addWidget(ProgramRunStatusUpload.programName, 0, 1)
+        msgWidgetLayout.addWidget(ProgramRunStatusUpload.fen, 1, 1)
+        msgWidgetLayout.addLayout(ProgramRunStatusUpload.starLayout, 2, 1)
+        msgWidgetLayout.addWidget(upload, 3, 1)
+        msgWidget.setLayout(msgWidgetLayout)
+        ProgramRunStatusUpload.msgWindow.setCentralWidget(msgWidget)
+        ProgramRunStatusUpload.msgWindow.setWindowTitle(transla.transe("U", "上传程序运行情况"))
+        ProgramRunStatusUpload.msgWindow.setWindowIcon(QtGui.QIcon(iconPath))
+        ProgramRunStatusUpload.msgWindow.show()
+
+    def Upload():
+        if not os.path.exists(e2.currentText()):
+            QtWidgets.QMessageBox.critical(None, "错误", "exe 文件不存在!")
+            return
+        if ProgramRunStatusUpload.programName.text() == "":
+            QtWidgets.QMessageBox.critical(None, "错误", "程序名称不能为空!")
+            return
+        try:
+            if ProgramRunStatusUpload.sha1Value == "":
+                ProgramRunStatusUpload.sha1Value = ProgramRunStatusUpload.GetSHA1(e2.currentText())
+            QtWidgets.QMessageBox.information(None, transla.transe("U", "提示"), json.loads(requests.post(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0OjMwMjUw").decode("utf-8"), {
+            "SHA1": ProgramRunStatusUpload.sha1Value,
+            "Name": ProgramRunStatusUpload.programName.text(),
+            "Fen": ProgramRunStatusUpload.fen.currentIndex(),
+            "Wine": o1.currentText()
+            }).text)["Error"])
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(None, transla.transe("U", "错误"), transla.transe("U", "数据上传失败!"))
+
+    def GetSHA1(filePath):
+        sha1 = hashlib.sha1()
+        file = open(filePath, "rb")
+        while True:
+            readByte = file.read(1024 * 1024)
+            sha1.update(readByte)
+            if not readByte:
+                break
+        file.close()
+        return sha1.hexdigest()
+
+class ProgramSetting():
+    wineBottonA = None
+    wineDebug = None
+    defultWine = None
+    defultBotton = None
+    terminalOpen = None
+    wineOption = None
+    #wineBottonDifferent = None
+    centerWindow = None
+    message = None
+    theme = None
+    monogeckoInstaller = None
+    autoWine = None
+    runtimeCache = None
+    buildByBottleName = None
+    autoPath = None
+    qemuUnmountHome = None
+    def ShowWindow():
+        ProgramSetting.message = QtWidgets.QMainWindow()
+        widget = QtWidgets.QWidget()
+        widgetLayout = QtWidgets.QGridLayout()
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "选择 Wine 容器版本:")), 0, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "wine DEBUG 信息输出:")), 1, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "默认 Wine:")), 2, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "默认 Wine 容器:")), 3, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "使用终端打开:")), 4, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "自定义 wine 参数:")), 5, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "程序主题:")), 6, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "Wine 默认 Mono 和 Gecko 安装器:")), 7, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "忽略未安装的 Wine:")), 8, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "下载缓存:")), 9, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "图标生成:")), 10, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "自动根据EXE名称生成路径:")), 11, 0, 1, 1)
+        widgetLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "Qemu + Chroot 挂载用户目录:")), 12, 0, 1, 1)
+        ProgramSetting.wineBottonA = QtWidgets.QComboBox()
+        ProgramSetting.wineDebug = QtWidgets.QCheckBox(transla.transe("U", "开启 DEBUG 输出"))
+        ProgramSetting.defultWine = QtWidgets.QComboBox()
+        ProgramSetting.defultBotton = QtWidgets.QLineEdit()
+        ProgramSetting.theme = QtWidgets.QComboBox()
+        ProgramSetting.theme.addItems(QtWidgets.QStyleFactory.keys())
+        ProgramSetting.theme.setCurrentText(setting["Theme"])
+        save = QtWidgets.QPushButton(transla.transe("U", "保存"))
+        save.clicked.connect(ProgramSetting.Save)
+        defultBottonButton = QtWidgets.QPushButton(transla.transe("U", "浏览"))
+        defultBottonButton.clicked.connect(ProgramSetting.Browser)
+        themeTry = QtWidgets.QPushButton(transla.transe("U", "测试(重启后变回设置的主题)"))
+        themeTry.clicked.connect(ProgramSetting.Try)
+        ProgramSetting.terminalOpen = QtWidgets.QCheckBox(transla.transe("U", "使用终端打开(deepin 终端)"))
+        ProgramSetting.wineOption = QtWidgets.QLineEdit()
+        ProgramSetting.monogeckoInstaller = QtWidgets.QCheckBox(transla.transe("U", "屏蔽 Wine 默认 Mono 和 Gecko 安装器"))
+        ProgramSetting.autoWine = QtWidgets.QCheckBox(transla.transe("U", "不显示未检测到的 Wine"))
+        ProgramSetting.runtimeCache = QtWidgets.QCheckBox(transla.transe("U", "开启下载缓存"))
+        ProgramSetting.buildByBottleName = QtWidgets.QCheckBox(transla.transe("U", "本软件构建的图标后面添加容器名"))
+        ProgramSetting.autoPath = QtWidgets.QCheckBox(transla.transe("U", "自动根据文件名生成容器路径(开启后必须通过修改默认wine容器路径才可指定其它路径,重启程序后生效)"))
+        ProgramSetting.qemuUnmountHome = QtWidgets.QCheckBox(transla.transe("U", "使用 Qemu + Chroot 时不挂载用户目录并与系统隔离(修改后重启操作系统生效)"))
+        ProgramSetting.wineBottonA.addItems(["Auto", "win32", "win64"])
+        ProgramSetting.wineBottonA.setCurrentText(setting["Architecture"])
+        ProgramSetting.wineDebug.setChecked(setting["Debug"])
+        ProgramSetting.defultWine.addItems(wine.keys())
+        ProgramSetting.defultWine.setCurrentText(setting["DefultWine"])
+        ProgramSetting.defultBotton.setText(setting["DefultBotton"])
+        ProgramSetting.terminalOpen.setChecked(setting["TerminalOpen"])
+        ProgramSetting.wineOption.setText(setting["WineOption"])
+        ProgramSetting.monogeckoInstaller.setChecked(setting["MonoGeckoInstaller"])
+        ProgramSetting.autoWine.setChecked(setting["AutoWine"])
+        ProgramSetting.runtimeCache.setChecked(setting["RuntimeCache"])
+        ProgramSetting.buildByBottleName.setChecked(setting["BuildByBottleName"])
+        ProgramSetting.autoPath.setChecked(setting["AutoPath"])
+        ProgramSetting.qemuUnmountHome.setChecked(setting["QemuUnMountHome"])
+        # QemuUnMountHome
+        widgetLayout.addWidget(ProgramSetting.wineBottonA, 0, 1, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.wineDebug, 1, 1, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.defultWine, 2, 1, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.defultBotton, 3, 1, 1, 1)
+        widgetLayout.addWidget(defultBottonButton, 3, 2, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.terminalOpen, 4, 1, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.wineOption, 5, 1, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.theme, 6, 1, 1, 1)
+        widgetLayout.addWidget(themeTry, 6, 2, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.monogeckoInstaller, 7, 1, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.autoWine, 8, 1, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.runtimeCache, 9, 1, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.buildByBottleName, 10, 1, 1, 1)
+        widgetLayout.addWidget(ProgramSetting.autoPath, 11, 1, 1, 2)
+        widgetLayout.addWidget(ProgramSetting.qemuUnmountHome, 12, 1, 1, 2)
+        widgetLayout.addWidget(save, 13, 2, 1, 1)
+        widget.setLayout(widgetLayout)
+        ProgramSetting.message.setCentralWidget(widget)
+        ProgramSetting.message.setWindowIcon(QtGui.QIcon(iconPath))
+        ProgramSetting.message.setWindowTitle(f"设置 wine 运行器 {version}")
+        ProgramSetting.message.show()
+
+    def Browser():
+        path = QtWidgets.QFileDialog.getExistingDirectory(ProgramSetting.message, transla.transe("U", "选择 Wine 容器"), json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/WineBotton.json"))["path"])
+        if path == "" or path == None or path == "()" or path == ():
+            return
+        ProgramSetting.defultBotton.setText(path)
+
+    def Try():
+        app.setStyle(QtWidgets.QStyleFactory.create(ProgramSetting.theme.currentText()))
+
+    def Save():
+        # 写入容器位数设置
+        setting["Architecture"] = ProgramSetting.wineBottonA.currentText()
+        setting["Debug"] = ProgramSetting.wineDebug.isChecked()
+        setting["DefultWine"] = ProgramSetting.defultWine.currentText()
+        setting["DefultBotton"] = ProgramSetting.defultBotton.text()
+        setting["TerminalOpen"] = ProgramSetting.terminalOpen.isChecked()
+        setting["WineOption"] = ProgramSetting.wineOption.text()
+        setting["Theme"] = ProgramSetting.theme.currentText()
+        setting["MonoGeckoInstaller"] = ProgramSetting.monogeckoInstaller.isChecked()
+        setting["AutoWine"] = ProgramSetting.autoWine.isChecked()
+        setting["RuntimeCache"] = ProgramSetting.runtimeCache.isChecked()
+        setting["BuildByBottleName"] = ProgramSetting.buildByBottleName.isChecked()
+        setting["AutoPath"] = ProgramSetting.autoPath.isChecked()
+        setting["QemuUnMountHome"] = ProgramSetting.qemuUnmountHome.isChecked()
+        try:
+            write_txt(get_home() + "/.config/deepin-wine-runner/WineSetting.json", json.dumps(setting))
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(ProgramSetting.message, "错误", traceback.format_exc())
+            return
+        QtWidgets.QMessageBox.information(ProgramSetting.message, "提示", "保存完毕!")
+
+class ValueCheck():
+    def __init__(self):
+        pass
+        
+    def BASE64(self, filePath):
+        src = ""
+        with open(filePath, "rb") as f:
+            base64Byte = base64.b64encode(f.read())
+            src += base64Byte.decode("utf-8")
+        return src
+
+    def SHA1(self, filePath):
+        sha1 = hashlib.sha1()
+        file = open(filePath, "rb")
+        while True:
+            readByte = file.read(1024 * 1024)
+            sha1.update(readByte)
+            if not readByte:
+                break
+        file.close()
+        return sha1.hexdigest()
+
+    def MD5(self, filePath):
+        md5 = hashlib.md5()
+        file = open(filePath, "rb")
+        while True:
+            readByte = file.read(1024 * 1024)
+            md5.update(readByte)
+            if not readByte:
+                break
+        file.close()
+        return md5.hexdigest()
+
+    def SHA256(self, filePath):
+        value = hashlib.sha256()
+        file = open(filePath, "rb")
+        while True:
+            readByte = file.read(1024 * 1024)
+            value.update(readByte)
+            if not readByte:
+                break
+        file.close()
+        return value.hexdigest()
+
+    def SHA384(self, filePath):
+        value = hashlib.sha384()
+        file = open(filePath, "rb")
+        while True:
+            readByte = file.read(1024 * 1024)
+            value.update(readByte)
+            if not readByte:
+                break
+        file.close()
+        return value.hexdigest()
+
+    def SHA224(self, filePath):
+        value = hashlib.sha224()
+        file = open(filePath, "rb")
+        while True:
+            readByte = file.read(1024 * 1024)
+            value.update(readByte)
+            if not readByte:
+                break
+        file.close()
+        return value.hexdigest()
+
+    def SHA512(self, filePath):
+        value = hashlib.sha512()
+        file = open(filePath, "rb")
+        while True:
+            readByte = file.read(1024 * 1024)
+            value.update(readByte)
+            if not readByte:
+                break
+        file.close()
+        return value.hexdigest()
+
+    link = {
+        "SHA1": SHA1,
+        "MD5": MD5,
+        "SHA256": SHA256,
+        "SHA512": SHA512,
+        "SHA224": SHA224,
+        "SHA384": SHA384,
+        "BASE64": BASE64
+    }
+
+    def Get(self, types):
+        QtWidgets.QMessageBox.information(window, "提示", "在计算过程中,程序可能会出现无响应的问题,请稍后\n请在接下来的打开对话框中选择要计算的文件")
+        file = QtWidgets.QFileDialog.getOpenFileName(window, "打开")[0]
+        if file == "":
+            return
+        try:
+            QtWidgets.QInputDialog.getMultiLineText(window, "值", "计算得到的值", self.link[types](self, file))
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(window, "错误", traceback.format_exc())
+
+def ChangePath():
+    e1.setCurrentText(f'{setting["DefultBotton"]}/{os.path.splitext(os.path.basename(e2.currentText()))[0]}')
+
+def UploadLog():
+    if QtWidgets.QMessageBox.question(window, "提示", "您确定要上传吗?上传内容将不会公开,将用于加强日志分析功能") == QtWidgets.QMessageBox.Yes:
+        text = QtWidgets.QInputDialog.getMultiLineText(window, "输入内容", "输入描述信息")
+        try:
+            returnList = requests.post(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0OjMwMjUwL2xvZw==").decode("utf-8"), {
+                "Log": returnText.toPlainText(),
+                "Wine": wine[o1.currentText()],
+                "Tips": text
+                }).json()
+            if returnList["ExitCode"] == 0:
+                QtWidgets.QMessageBox.information(window, "提示", "上传成功!")    
+            else:
+                print(returnList)
+                QtWidgets.QMessageBox.critical(window, "错误", "上传失败!")    
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(window, "错误", "上传失败!")
+
+
+def SaveLog():
+    path = QtWidgets.QFileDialog.getSaveFileName(window, "保存日志", get_home(), "txt文件(*.txt);;html 文件(*.html);;所有文件(*.*))")
+    if not path[1]:
+        return
+    print(path)
+    try:
+        with open(path[0], "w") as file:
+            if path[1] == "html 文件(*.html)":
+                file.write(returnText.toHtml())
+            else:
+                file.write(returnText.toPlainText())
+    except:
+        traceback.print_exc()
+        QtWidgets.QMessageBox.critical(window, "错误", traceback.format_exc())
+
+def GetNewInformation():
+    try:
+        text = requests.get("https://code.gitlink.org.cn/gfdgd_xi/wine-runner-list/raw/branch/master/information/index.html").text
+    except:
+        traceback.print_exc()
+        text = """<p>无法连接到服务器</p>
+            <hr/>
+            <p>你可以尝试:</p>
+            <p>1. 判断使用的是否使用吾爱版本,如果使用吾爱版本则无法连接</p>
+            <p>2. 判断是否能正常连接网络</p>"""
+    global webInformation
+    if bad:
+        webInformation = QtWidgets.QTextBrowser()
+    else:
+        webInformation = QtWebEngineWidgets.QWebEngineView()
+    webInformation.setHtml(text)
+    webInformation.setWindowTitle("获取程序公告")
+    webInformation.setWindowIcon(QtGui.QIcon(iconPath))
+    webInformation.resize(int(webInformation.frameGeometry().width() * 1.3), int(webInformation.frameGeometry().height() * 1.1))
+    webInformation.show()
+
+def getFileFolderSize(fileOrFolderPath):
+    """get size for file or folder"""
+    totalSize = 0
+    try:
+        if not os.path.exists(fileOrFolderPath):
+            return totalSize
+        if os.path.isfile(fileOrFolderPath):
+            totalSize = os.path.getsize(fileOrFolderPath)  # 5041481
+            return totalSize
+        if os.path.isdir(fileOrFolderPath):
+            with os.scandir(fileOrFolderPath) as dirEntryList:
+                for curSubEntry in dirEntryList:
+                    curSubEntryFullPath = os.path.join(fileOrFolderPath, curSubEntry.name)
+                    if curSubEntry.is_dir():
+                        curSubFolderSize = getFileFolderSize(curSubEntryFullPath)  # 5800007
+                        totalSize += curSubFolderSize
+                    elif curSubEntry.is_file():
+                        curSubFileSize = os.path.getsize(curSubEntryFullPath)  # 1891
+                        totalSize += curSubFileSize
+                return totalSize
+    except:
+        return totalSize
+
+# 获取当前语言
+def get_now_lang()->"获取当前语言":
+    return os.getenv('LANG')
+
+# 又需要修复多线程导致的控件问题
+def AddDockerMenu():
+    global dockers
+    global openFileManager
+    global openTerminal
+    dockers = menu.addMenu("该 Docker 基础管理")
+    openFileManager = QtWidgets.QAction("打开默认文件管理器")
+    openTerminal = QtWidgets.QAction("打开默认终端")
+    openFileManager.triggered.connect(lambda: threading.Thread(target=os.system, args=[f"xdg-open '{get_home()}'"]).start())
+    openTerminal.triggered.connect(lambda: threading.Thread(target=os.system, args=[f"x-terminal-emulator"]).start())
+    dockers.addAction(openFileManager)
+    dockers.addAction(openTerminal)
+newPackage = False
+class GetVersionThread(QtCore.QThread):
+    signal = QtCore.pyqtSignal(str)
+    def __init__(self) -> None:
+        super().__init__()
+
+    def run(self):
+        global about
+        global window
+        global newPackage
+        global programVersionType
+        # 目前分为几个版本(在 control 文件区分):
+        # 星火版本:~spark
+        # 商店版本:~uos
+        # 编译版本:无版本号
+        # Gitee/Github……:正常版本
+        # Docker 版本
+        programVersionTypeLnk = {
+            "spark": "星火应用商店版本",
+            "uos": "deepin/UOS 应用商店版本<带签名>"
+        }
+        # 直接判断是不是 Docker 版本
+        if os.path.exists(f"{programPath}/docker.txt") or os.path.exists("/.dockerenv"):
+            programVersionType = "Docker/Chroot 内置版本"
+            window.setWindowTitle(f"{title} (Docker/Chroot 内置版本)")
+            self.signal.emit("")
+        else:
+            programVersionType = "从源码运行的版本"
+            try:
+                if not os.path.exists("/var/lib/dpkg/status"):
+                    print("无 dpkg,结束")
+                file = open("/var/lib/dpkg/status", "r")
+                fileName = file.read().splitlines()
+                package = False
+                for i in range(0, len(fileName)):
+                    if fileName[i] == "Package: spark-deepin-wine-runner-docker":
+                        programVersionType = "Docker 内置版本"
+                        window.setWindowTitle(f"{title} (Docker 内置版本)")
+                        #AddDockerMenu()
+                        self.signal.emit("")
+                        break
+                    if fileName[i] == "Package: spark-deepin-wine-runner-52":
+                        programVersionType = "吾爱专版"
+                        window.setWindowTitle(f"{title}(吾爱专版)")
+                        newPackage = False
+                        break
+                    if fileName[i] == "Package: spark-deepin-wine-runner":
+                        package = True
+                        newPackage = True
+                        continue
+                    if fileName[i] == "Package: wine-runner-linux":
+                        package = True
+                        continue
+                    if not package:
+                        continue
+                    if fileName[i].replace(" ", "").replace("\n", "") == "":
+                        # 空行,不再考虑
+                        break
+                    # 搜索版本号
+                    try:
+                        if fileName[i][:fileName[i].index(":")] == "Version":
+                            version = fileName[i][fileName[i].index(":") + 1:].strip()
+                            print(f"版本号为:{version}")
+                            if not "-" in version:
+                                programVersionType = "从Gitee/Github/Gitlink等平台获取的版本"
+                                break
+                            programVersionType = version[version.index("-") + 1:]
+                            print(programVersionType)
+                            if "-" in programVersionType:
+                                # 考虑到如 2.1.0-2-spark 的情况
+                                programVersionType = programVersionType[programVersionType.index("-") + 1:]
+                            try:
+                                programVersionType = programVersionTypeLnk[programVersionType]    
+                            except:
+                                programVersionType = "从Gitee/Github/Gitlink等平台获取的版本"
+                            break
+                    except:
+                        traceback.print_exc()
+                        continue
+            except:
+                print("无法读取,当没有处理")
+        print(programVersionType)
+        about = about.replace("@VersionForType@", programVersionType)
+        # 获取程序体积
+        about = about.replace("@programSize@", str(int(getFileFolderSize(programPath) / 1024 / 1024)))
+
+def GetVersion():
+    global runVersion
+    runVersion = GetVersionThread()
+    runVersion.signal.connect(AddDockerMenu)
+    runVersion.start()
+
+def UnPackage():
+    QtWidgets.QMessageBox.information(window, "提示", "请在下面两个对话框中选择 deb 包所在路径和容器解压到的路径")
+    debPath = QtWidgets.QFileDialog.getOpenFileName(window, get_home(), "deb 文件(*.deb);;所有文件(*.*)")
+    if not debPath[1]:
+        return
+    path = QtWidgets.QFileDialog.getExistingDirectory(window, get_home())
+    print(path)
+    if not path:
+        return
+    tempDebDir = f"/tmp/wine-runner-unpack-deb-{random.randint(0, 1000)}"
+    if os.system(f"dpkg -x '{debPath[0]}' '{tempDebDir}'"):
+        QtWidgets.QMessageBox.critical(window, "错误", "解压失败!")
+        return
+    zippath = FindFile(tempDebDir, "files.7z")
+    if zippath == None:
+        QtWidgets.QMessageBox.critical(window, "错误", "解压失败!")
+        return
+    print(path)
+    # 解压文件
+    os.system(f"mkdir -p '{path}'")
+    os.system(f"7z x -y '{zippath}' -o'{path}'")
+    os.system(f"rm -rfv '{tempDebDir}'")
+    QtWidgets.QMessageBox.information(window, "提示", "解压完成!")
+
+def FindFile(file, name):
+    for i in os.listdir(file):
+        path = f"{file}/{i}"
+        if os.path.isdir(path):
+            returnPath = FindFile(path, name)
+            if returnPath != None:
+                return returnPath.replace("//", "/")
+        if os.path.isfile(path):
+            if i == name:
+                return path
+    return None
+
+def TransLog():
+    oldText = returnText.toPlainText()
+    lineNumber = 0
+    transText = ""
+    chooseText = ""
+    for i in oldText.splitlines():
+        lineNumber += 1
+        chooseText += f"{i}\n"
+        if lineNumber >= 50:
+            lineNumber = 0
+            try:
+                data = { 'doctype': 'json', 'type': 'auto','i': chooseText.replace("\n\n", "\n")}
+                jsonReturn = requests.post("http://fanyi.youdao.com/translate", data=data).json()["translateResult"]
+                for i in jsonReturn:
+                    print(i)
+                    transText += f'{i[0]["tgt"]}\n'
+                chooseText = ""
+            except:
+                transText += f"{chooseText}\n"
+                chooseText = ""
+    if lineNumber != 0:
+        lineNumber = 0
+        try:
+            data = { 'doctype': 'json', 'type': 'auto','i': chooseText.replace("\n\n", "\n")}
+            jsonReturn = requests.post("http://fanyi.youdao.com/translate", data=data).json()["translateResult"]
+            for i in jsonReturn:
+                print(i[0])
+                transText += f'{i[0]["tgt"]}\n'
+            chooseText = ""
+        except:
+            transText += f"{chooseText}\n"
+            chooseText = ""
+    #return transText
+    returnText.setText(transText.replace("\n\n", "\n"))
+
+###########################
+# 加载配置
+###########################
+defultProgramList = {
+    "Architecture": "Auto",
+    "Debug": True,
+    "DefultWine": "deepin-wine6 stable",
+    "DefultBotton" : get_home() + "/.wine",
+    "TerminalOpen": False,
+    "WineOption": "",
+    "WineBottonDifferent": False,
+    "CenterWindow": False,
+    "Theme": "",
+    "MonoGeckoInstaller": False,
+    "AutoWine": True,
+    "RuntimeCache": True,
+    "MustRead": False,
+    "BuildByBottleName": False,
+    "AutoPath": False,
+    "QemuUnMountHome": False
+}
+if not os.path.exists(get_home() + "/.config/"):  # 如果没有配置文件夹
+    os.mkdir(get_home() + "/.config/")  # 创建配置文件夹
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner"):  # 如果没有配置文件夹
+    os.mkdir(get_home() + "/.config/deepin-wine-runner")  # 创建配置文件夹
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner/ShellHistory.json"):  # 如果没有配置文件
+    write_txt(get_home() + "/.config/deepin-wine-runner/ShellHistory.json", json.dumps({}))  # 创建配置文件
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner/FindExeHistory.json"):  # 如果没有配置文件
+    write_txt(get_home() + "/.config/deepin-wine-runner/FindExeHistory.json", json.dumps({}))  # 创建配置文件
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner/WineBottonHistory.json"):  # 如果没有配置文件
+    write_txt(get_home() + "/.config/deepin-wine-runner/WineBottonHistory.json", json.dumps({}))  # 创建配置文件
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner/ISOPath.json"):  # 如果没有配置文件
+    write_txt(get_home() + "/.config/deepin-wine-runner/ISOPath.json", json.dumps({}))  # 写入(创建)一个配置文件
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner/ISOPathFound.json"):  # 如果没有配置文件
+    write_txt(get_home() + "/.config/deepin-wine-runner/ISOPathFound.json", json.dumps({}))  # 写入(创建)一个配置文件
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner/FindExe.json"):  # 如果没有配置文件
+    write_txt(get_home() + "/.config/deepin-wine-runner/FindExe.json", json.dumps({"path": "~"}))  # 写入(创建)一个配置文件
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner/FindISO.json"):  # 如果没有配置文件
+    write_txt(get_home() + "/.config/deepin-wine-runner/FindISO.json", json.dumps({"path": "~"}))  # 写入(创建)一个配置文件
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner/WineBotton.json"):  # 如果没有配置文件
+    write_txt(get_home() + "/.config/deepin-wine-runner/WineBotton.json", json.dumps({"path": "~/.deepinwine"}))  # 写入(创建)一个配置文件
+if not os.path.exists(get_home() + "/.config/deepin-wine-runner/WineSetting.json"):  # 如果没有配置文件
+    write_txt(get_home() + "/.config/deepin-wine-runner/WineSetting.json", json.dumps(defultProgramList))  # 写入(创建)一个配置文件
+
+###########################
+# 设置变量
+###########################
+programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
+# 如果要添加其他 wine,请使用安装更多 Wine 功能
+#############
+# 检测 Wine
+#############
+try:
+    wine = {
+        "基于 UOS box86 的 deepin-wine6-stable": f"WINEPREDLL='{programPath}/dlls-arm' WINEDLLPATH=/opt/deepin-wine6-stable/lib BOX86_NOSIGSEGV=1 /opt/deepin-box86/box86 /opt/deepin-wine6-stable/bin/wine ",
+        "基于 UOS exagear 的 deepin-wine6-stable": f"WINEPREDLL='{programPath}/dlls-arm' WINEDLLPATH=/opt/deepin-wine6-stable/lib /opt/exagear/bin/ubt_x64a64_al --path-prefix {get_home()}/.deepinwine/debian-buster --utmp-paths-list {get_home()}/.deepinwine/debian-buster/.exagear/utmp-list --vpaths-list {get_home()}/.deepinwine/debian-buster/.exagear/vpaths-list --opaths-list {get_home()}/.deepinwine/debian-buster/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al -- /opt/deepin-wine6-stable/bin/wine ",
+        "deepin-wine6 stable": "deepin-wine6-stable", 
+        "deepin-wine5 stable": "deepin-wine5-stable", 
+        "spark-wine7-devel": "spark-wine7-devel", 
+        "deepin-wine": "deepin-wine", 
+        "deepin-wine5": "deepin-wine5", 
+        "wine": "wine", 
+        "wine64": "wine64", 
+        "ukylin-wine": "ukylin-wine",
+        "mono(这不是 wine,但可以实现初步调用运行 .net 应用)": "mono",
+        "基于 linglong 的 deepin-wine6-stable(不推荐)": f"ll-cli run '' --exec '/bin/deepin-wine6-stable'"
+    }
+    untipsWine = ["基于 exagear 的 deepin-wine6-stable", "基于 UOS box86 的 deepin-wine6-stable", "基于 UOS exagear 的 deepin-wine6-stable", "基于 linglong 的 deepin-wine6-stable(不推荐)"]
+    canUseWine = []
+    if os.path.exists("/opt/deepin-box86/box86") and os.path.exists("/opt/deepin-wine6-stable/bin/wine"):
+        canUseWine.append("基于 UOS box86 的 deepin-wine6-stable")
+    if os.path.exists("/opt/exagear/bin/ubt_x64a64_al") and os.path.exists("/opt/deepin-wine6-stable/bin/wine"):
+        canUseWine.append("基于 UOS exagear 的 deepin-wine6-stable")
+    if not os.system("which exagear") and os.path.exists("/opt/deepin-wine6-stable/bin/wine"):
+        canUseWine.append("基于 exagear 的 deepin-wine6-stable")
+    for i in wine.keys():
+        if not os.system(f"which '{wine[i]}'"):
+            canUseWine.append(i)
+    if os.path.exists("/persistent/linglong/layers/"):  # 判断是否使用 linglong
+        for i in os.listdir("/persistent/linglong/layers/"):
+            try:
+                dire = os.listdir(f"/persistent/linglong/layers/{i}")[-1]
+                arch = os.listdir(f"/persistent/linglong/layers/{i}/{dire}")[-1]
+                if os.path.exists(f"/persistent/linglong/layers/{i}/{dire}/{arch}/runtime/bin/deepin-wine6-stable"):
+                    wine["基于 linglong 的 deepin-wine6-stable(不推荐)"] = f"ll-cli run {i} --exec '/bin/deepin-wine6-stable'"
+                    canUseWine.append("基于 linglong 的 deepin-wine6-stable(不推荐)")
+                    break
+            except:
+                pass
+    # 读取自定义安装的 Wine(需要解包的才能使用)
+    qemuBottleList = []
+    qemuPath = f"{get_home()}/.deepin-wine-runner-ubuntu-images"
+    if not os.system("which qemu-i386-static"):
+        if os.path.exists(qemuPath):
+            for g in os.listdir(qemuPath):
+                archPath = f"{qemuPath}/{g}"
+                arch = g
+                if os.path.isdir(archPath):
+                    for d in os.listdir(archPath):
+                        bottlePath = f"{archPath}/{d}"
+                        if os.path.isdir(bottlePath):
+                            qemuBottleList.append([
+                                arch,
+                                d,
+                                bottlePath
+                            ])
+    shellHistory = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/ShellHistory.json")).values())
+    findExeHistory = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/FindExeHistory.json")).values())
+    wineBottonHistory = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/WineBottonHistory.json")).values())
+    isoPath = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/ISOPath.json")).values())
+    isoPathFound = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/ISOPathFound.json")).values())
+    setting = json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/WineSetting.json"))
+    change = False
+    if not os.path.exists(get_home() + "/.config/deepin-wine-runner/mono-lock"):
+        os.mknod(f"{get_home()}/.config/deepin-wine-runner/mono-lock")
+        setting["MonoGeckoInstaller"] = False
+        change = True
+    for i in defultProgramList.keys():
+        if not i in setting:
+            change = True
+            setting[i] = defultProgramList[i]
+    if change:
+        write_txt(get_home() + "/.config/deepin-wine-runner/WineSetting.json", json.dumps(setting))
+    try:
+        # 不再从列表读取,直接读目录
+        for i in os.listdir(f"{programPath}/wine/"):
+        #for i in json.loads(readtxt(f"{programPath}/wine/winelist.json")):
+            if os.path.exists(f"{programPath}/wine/{i}") and os.path.isdir(f"{programPath}/wine/{i}"):
+                name = ""
+                qemuInstall = False
+                nameValue = [["", ""]]
+                try:
+                    if os.path.exists("/opt/deepin-box86/box86"):
+                        nameValue.append(
+                            [
+                                "基于 UOS box86 的 ", 
+                                f"WINEPREDLL='{programPath}/dlls-arm' WINEDLLPATH=/opt/deepin-wine6-stable/lib BOX86_NOSIGSEGV=1 /opt/deepin-box86/box86  "
+                            ]
+                            )
+                    if os.system("which box86") == 0:
+                        nameValue.append(
+                            [
+                                "基于 box86 的 ",
+                                f"box86  "
+                            ]
+                        )
+                    if os.system("which box64") == 0:
+                        nameValue.append(
+                            [
+                                "基于 box64 的 ",
+                                f"box64  "
+                            ]
+                        )
+                    if os.system("which exagear") == 0:
+                        nameValue.append(
+                            [
+                                "基于 exagear 的 ",
+                                f"exagear  "
+                            ]
+                        )
+                    if os.path.exists("/opt/exagear/bin/ubt_x64a64_al"):
+                        nameValue.append(
+                            [
+                                "基于 UOS exagear 的 ",
+                                f"WINEPREDLL='{programPath}/dlls-arm' WINEDLLPATH=/opt/deepin-wine6-stable/lib /opt/exagear/bin/ubt_x64a64_al --path-prefix {get_home()}/.deepinwine/debian-buster --utmp-paths-list {get_home()}/.deepinwine/debian-buster/.exagear/utmp-list --vpaths-list {get_home()}/.deepinwine/debian-buster/.exagear/vpaths-list --opaths-list {get_home()}/.deepinwine/debian-buster/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al --  "
+                            ]
+                        )
+                    for g in qemuBottleList:
+                        nameValue.append([
+                            f"使用qemu-{g[0]}-static 调用容器{g[1]}运行 ",
+                            f"python3 '{programPath}/QemuRun.py' '{g[0]}/{g[1]}' {int(setting['QemuUnMountHome'])} "
+                        ])
+                except:
+                    traceback.print_exc()
+                for k in nameValue:
+                    print(k)
+                    if "qemu" in k[0]:
+                        chrootProgramPath = "/opt/apps/deepin-wine-runner"
+                    else:
+                        chrootProgramPath = programPath
+                    if os.path.exists(f"{programPath}/wine/{i}/bin/wine"):        
+                        wine[f"{k[0]}{chrootProgramPath}/wine/{i}/bin/wine"] = f"{k[1]}{chrootProgramPath}/wine/{i}/bin/wine"
+                        canUseWine.append(f"{k[0]}{chrootProgramPath}/wine/{i}/bin/wine")
+                        untipsWine.append(f"{k[0]}{chrootProgramPath}/wine/{i}/bin/wine")
+                    if os.path.exists(f"{programPath}/wine/{i}/bin/wine64"):
+                        wine[f"{k[0]}{chrootProgramPath}/wine/{i}/bin/wine64"] = f"{k[1]}{chrootProgramPath}/wine/{i}/bin/wine64"
+                        canUseWine.append(f"{k[0]}{chrootProgramPath}/wine/{i}/bin/wine64")
+                        untipsWine.append(f"{k[0]}{chrootProgramPath}/wine/{i}/bin/wine64")
+    except:
+        pass
+    try:
+        for i in os.listdir(f"{get_home()}/.deepinwine/"):
+            if os.path.exists(f"{get_home()}/.deepinwine/{i}/bin/wine"):
+                wine[f"{get_home()}/.deepinwine/{i}/bin/wine"] = f"{get_home()}/.deepinwine/{i}/bin/wine"
+                canUseWine.append(f"{get_home()}/.deepinwine/{i}/bin/wine")
+            if os.path.exists(f"{get_home()}/.deepinwine/{i}/bin/wine64"):
+                wine[f"{get_home()}/.deepinwine/{i}/bin/wine64"] = f"{get_home()}/.deepinwine/{i}/bin/wine64"
+                canUseWine.append(f"{get_home()}/.deepinwine/{i}/bin/wine64")
+    except:
+        pass
+except:
+    traceback.print_exc()
+    app = QtWidgets.QApplication(sys.argv)
+    QtWidgets.QMessageBox.critical(None, "错误", f"无法读取配置,无法继续\n{traceback.format_exc()}")
+    sys.exit(1)
+
+# transla.transe
+
+programVersionType = ""
+print(wine)
+###########################
+# 程序信息
+###########################
+# 语言载入
+if not "zh_CN".lower() in get_now_lang().lower():
+    transla = Trans("en_US", f"{programPath}/trans/deepin-wine-runner.json")
+else:
+    transla = Trans("zh_CN")
+iconPath = "{}/deepin-wine-runner.svg".format(programPath)
+#iconPath = "{}/Icon/Program/wine运行器.png".format(programPath)
+programUrl = "https://gitee.com/gfdgd-xi/deep-wine-runner\nhttps://github.com/gfdgd-xi/deep-wine-runner\nhttps://www.gitlink.org.cn/gfdgd_xi/deep-wine-runner\nhttps://gfdgd-xi.github.io"
+information = json.loads(readtxt(f"{programPath}/information.json"))
+version = information["Version"]
+goodRunSystem = transla.transe("U", "常见 Linux 发行版")
+thankText = ""
+tips = transla.transe("U", '''<h4>提示:</h4>
+1、使用终端运行该程序,可以看到 wine 以及程序本身的提示和报错;
+2、wine 32 位和 64 位的容器互不兼容;
+3、所有的 wine 和 winetricks 均需要自行安装(可以从 菜单栏=>程序 里面进行安装);
+4、本程序支持带参数运行 wine 程序(之前版本也可以),只需要按以下格式即可:
+exe路径\' 参数 \'
+即可(单引号需要输入);
+5、wine 容器如果没有指定,则会默认为 ~/.wine;
+6、如果可执行文件比较大的话,会出现点击“获取该程序运行情况”出现假死的情况,因为正在后台读取 SHA1,只需要等一下即可(读取速度依照您电脑处理速度、读写速度、可执行文件大小等有关);
+7、对于非 X86 的用户来说,请不要使用本程序自带的 Wine 安装程序和 Windows 虚拟机安装功能(检测到为非 X86 架构会自动禁用);
+8、如果非 X86 的用户的 UOS 专业版用户想要使用的话,只需要在应用商店安装一个 Wine 版本微信即可在本程序选择正确的 Wine 运行程序;
+9、在使用 linglong 包的 Wine 应用时,必须安装至少一个 linglong 的使用 Wine 软件包才会出现该选项,
+而程序识别到的 Wine 是按 linglong 的使用 Wine 软件包名的字母排序第一个的 Wine,且生成的容器不在用户目录下,而是在容器的用户目录下(~/.deepinwine、/tmp、桌面、下载、文档等被映射的目录除外),
+同理需要运行的 EXE 也必须在被映射的目录内;
+10、如果是使用 Deepin 23 的 Wine 安装脚本,请切记——安装过程会临时添加 Deepin 20 的 apt 源,不要中断安装以及
+<b>千万不要中断后不删除源的情况下 apt upgrade !!!</b>中断后只需重新打开脚本输入 repair 或者随意安装一个 Wine(会自动执行恢复操作)即可
+以及此脚本安装的 Wine 无法保证 100% 能使用,以及副作用是会提示;
+<code>N: 鉴于仓库 'https://community-packages.deepin.com/beige beige InRelease' 不支持 'i386' 体系结构,跳过配置文件 'main/binary-i386/Packages' 的获取。</code>''')
+updateThingsString = transla.transe("U", '''※1、不基于生态适配脚本打包器支持禁用 Mono/Gecko 打包器;
+※2、自动容器配置脚本新增命令 decompressionbottle、programforum、installmsi 以及上述命令的帮助;
+※3、自动容器配置脚本新增评论功能;
+※4、自动容器配置脚本新增许多应用安装脚本;
+※5、安装 Windows 虚拟机功能更换应答镜像图标并添加常用 Windows 组件安装功能;
+※6、安装 Windows 虚拟机功能提供镜像下载的网盘链接;
+※7、简易打包器支持自动添加宋体;
+8、修复 installfont 命令下载的字体目录错误问题;
+9、修复提交日志功能在提交成功时依旧提示提交失败问题;
+10、支持强制启用所有被禁用的组件(不推荐)。
+''')
+for i in information["Thank"]:
+    thankText += f"{i}\n"
+updateTime = "2023年01月06日"
+aboutProgram = transla.transe("U", """<p>Wine运行器是一个能让Linux用户更加方便地运行Windows应用的程序,内置了对Wine图形化的支持、各种Wine工具、自制的Wine程序打包器和运行库安装工具等。</p>
+<p>它同时还内置了基于VirtualBox制作的、专供小白使用的Windows虚拟机安装工具,可以做到只需下载系统镜像并点击安装即可,无需考虑虚拟机的安装、创建、分区等操作。</p>
+<pre>
+
+一个图形化了如下命令的程序(最简单格式)
+<code>env WINEPREFIX=容器路径 wine(wine的路径) 可执行文件路径</code>
+让你可以简易方便的使用 wine""")
+about = f'''<style>
+a:link, a:active {{
+    text-decoration: none;
+}}
+</style>
+<h1>关于</h1>
+{aboutProgram}
+
+版本:{version}
+适用平台:{goodRunSystem}(@VersionForType@)
+Qt 版本:{QtCore.qVersion()}
+程序官网:{programUrl}
+当前程序占用体积:@programSize@MB</pre>
+<p>本程序依照 GPLV3 协议开源</p>
+<hr>
+<h1>鸣谢名单</h1>
+<pre>{thankText}</pre>
+<hr>
+<h1>更新内容</h1>
+<pre>{updateThingsString}
+<b>更新时间:{updateTime}</b></pre>
+<hr>
+<h1>提示</h1>
+<pre>{tips}
+</pre>
+<hr>
+<h1>关于 RacoonGX 项目组</h1>
+<p>是由 @gfdgd xi 带头的团队,gfdgd xi开发了UEngine运行器等好用的开源软件。</p>
+<hr>
+<h1>友谊链接</h1>
+<pre>星火应用商店:https://spark-app.store/
+Deepin 官网:https://www.deepin.org
+Deepin 论坛:https://bbs.deepin.org
+论坛:https://gfdgdxi.flarum.cloud/</pre>
+<hr>
+<h1>©2020~{time.strftime("%Y")} By gfdgd xi、为什么您不喜欢熊出没和阿布呢,RacoonGX 团队作品</h1>'''
+title = "Wine 运行器 {}".format(version)
+#<h1>©2020~{time.strftime("%Y")} <a href="https://gitee.com/gfdgd-xi">RacoonGX 团队,By gfdgd xi、为什么您不喜欢熊出没和阿布呢</h1>'''
+updateThings = "{} 更新内容:\n{}\n更新时间:{}".format(version, updateThingsString, updateTime, time.strftime("%Y"))
+try:
+    threading.Thread(target=requests.get, args=[parse.unquote(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0L3NwYXJrLWRlZXBpbi13aW5lLXJ1bm5lci9vcGVuL0luc3RhbGwucGhw").decode("utf-8")) + "?Version=" + version]).start()
+except:
+    pass
+iconListUnBuild = json.loads(readtxt(f"{programPath}/IconList.json"))[0]
+iconList = json.loads(readtxt(f"{programPath}/IconList.json"))[1]
+for i in iconListUnBuild:
+    iconList.append(i)
+print(iconList)
+
+# Qemu Lock
+try:
+    if os.path.exists("/tmp/deepin-wine-runner-lock.txt"):
+        print("lock")
+        with open(f"/tmp/deepin-wine-runner-lock.txt", "r") as file:
+            setting["QemuUnMountHome"] = bool(int(file.read()))
+    else:
+        print("unlock")
+        with open(f"/tmp/deepin-wine-runner-lock.txt", "w") as file:
+            # = bool(int(file.read()))
+            file.write(str(int(setting["QemuUnMountHome"])))
+except:
+    traceback.print_exc()
+
+###########################
+# 窗口创建
+###########################
+# 读取主题
+# Qt 窗口
+app = QtWidgets.QApplication(sys.argv)
+window = QtWidgets.QMainWindow()
+window.setWindowTitle(title)
+widget = QtWidgets.QWidget()
+window.setCentralWidget(widget)
+mainLayout = QtWidgets.QGridLayout()
+# 权重
+size = QtWidgets.QSizePolicy()
+size.setHorizontalPolicy(0)
+widgetSize = QtWidgets.QSizePolicy()
+#size.setHorizontalPolicy(0)
+widgetSize.setVerticalPolicy(0)
+#
+leftUp = QtWidgets.QWidget()
+mainLayout.addWidget(leftUp, 0, 0, 1, 1)
+leftUpLayout = QtWidgets.QGridLayout()
+leftUp.setLayout(leftUpLayout)
+fastLabel = QtWidgets.QLabel(transla.transe("U", "快速启动"))
+fastLabel.setStyleSheet("font: 30px;")
+leftUpLayout.addWidget(fastLabel, 0, 0, 1, 2)
+leftUpLayout.addWidget(QtWidgets.QLabel("<hr>"), 1, 0, 1, 2)
+leftUpLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "请选择容器路径:")), 2, 0, 1, 1)
+e1 = QtWidgets.QComboBox()
+e1.setEditable(True)
+leftUpLayout.addWidget(e1, 3, 0, 1, 1)
+button1 = QtWidgets.QPushButton("浏览")
+button1.clicked.connect(liulanbutton)
+leftUpLayout.addWidget(button1, 3, 1, 1, 1)
+leftUpLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "请选择要执行的程序(EXE、MSI或者命令):")), 4, 0, 1, 1)
+e2 = QtWidgets.QComboBox()
+if setting["AutoPath"]:
+    e2.editTextChanged.connect(ChangePath)
+e2.setEditable(True)
+leftUpLayout.addWidget(e2, 5, 0, 1, 1)
+button2 = QtWidgets.QPushButton(transla.transe("U", "浏览"))
+button2.clicked.connect(liulanexebutton)
+leftUpLayout.addWidget(button2, 5, 1, 1, 1)
+leftUpLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "请选择WINE版本:")), 6, 0, 1, 1)
+o1 = QtWidgets.QComboBox()
+leftUpLayout.addWidget(o1, 7, 0, 1, 1)
+# 设置空间权重
+button1.setSizePolicy(size)
+button2.setSizePolicy(size)
+
+
+leftDown = QtWidgets.QWidget()
+mainLayout.addWidget(leftDown, 1, 0, 1, 1)
+leftDownLayout = QtWidgets.QVBoxLayout()
+leftDown.setLayout(leftDownLayout)
+highLabel = QtWidgets.QLabel(transla.transe("U", "高级功能"))
+highLabel.setStyleSheet("font: 30px;")
+leftDownLayout.addWidget(highLabel)
+leftDownLayout.addWidget(QtWidgets.QLabel("<hr>"))
+leftDownLayout.addWidget(QtWidgets.QLabel(transla.transe("U", "创建快捷方式(Desktop文件):")))
+createDesktopLink = QtWidgets.QHBoxLayout()
+label_r_2 = QtWidgets.QLabel(transla.transe("U", "名称:"))
+createDesktopLink.addWidget(label_r_2)
+combobox1 = QtWidgets.QComboBox()
+combobox1.setEditable(True)
+createDesktopLink.addWidget(combobox1)
+button5 = QtWidgets.QPushButton(transla.transe("U", "创建到桌面"))
+button5.clicked.connect(make_desktop_on_desktop)
+createDesktopLink.addWidget(button5)
+saveDesktopFileOnLauncher = QtWidgets.QPushButton(transla.transe("U", "创建到开始菜单"))
+saveDesktopFileOnLauncher.clicked.connect(make_desktop_on_launcher)
+createDesktopLink.addWidget(saveDesktopFileOnLauncher)
+leftDownLayout.addLayout(createDesktopLink)
+programManager = QtWidgets.QGridLayout()
+leftDownLayout.addLayout(programManager)
+programManager.addWidget(QtWidgets.QLabel(transla.transe("U", "程序管理:")), 0, 0, 1, 1)
+getProgramIcon = QtWidgets.QPushButton(transla.transe("U", "提取图标"))
+getProgramIcon.clicked.connect(lambda: RunWineProgram(f"{programPath}/BeCyIconGrabber.exe' '{e2.currentText()}" if e2.currentText()[:2].upper() == "C:" else f"{programPath}/BeCyIconGrabber.exe' 'z:/{e2.currentText()}"))
+programManager.addWidget(getProgramIcon, 1, 0, 1, 1)
+programManager.addWidget(QtWidgets.QLabel(" "*5), 1, 1, 1, 1)
+trasButton = QtWidgets.QPushButton(transla.transe("U", "窗口透明工具"))
+trasButton.clicked.connect(lambda: RunWineProgram(f"{programPath}/窗体透明度设置工具.exe"))
+programManager.addWidget(trasButton, 1, 2, 1, 1)
+uninstallProgram = QtWidgets.QPushButton(transla.transe("U", "卸载程序"))
+uninstallProgram.clicked.connect(lambda: RunWineProgram(f"{programPath}/geek.exe"))
+programManager.addWidget(QtWidgets.QLabel(" "*5), 1, 3, 1, 1)
+programManager.addWidget(uninstallProgram, 1, 4, 1, 1)
+miniAppStore = QtWidgets.QPushButton(transla.transe("U", "微型应用商店"))
+miniAppStore.clicked.connect(lambda: threading.Thread(target=MiniAppStore).start())
+programManager.addWidget(QtWidgets.QLabel(" "*5), 1, 5, 1, 1)
+programManager.addWidget(miniAppStore, 1, 6, 1, 1)
+programManager.addWidget(QtWidgets.QLabel(" "*5), 1, 7, 1, 1)
+getProgramStatus = QtWidgets.QPushButton(transla.transe("U", "获取该程序运行情况"))
+getProgramStatus.clicked.connect(ProgramRunStatusShow.ShowWindow)
+programManager.addWidget(getProgramStatus, 1, 8, 1, 1)
+getLoseDll = QtWidgets.QPushButton(transla.transe("U", "检测静态下程序缺少DLL"))
+getLoseDll.clicked.connect(GetLoseDll)
+programManager.addWidget(QtWidgets.QLabel(" "*5), 1, 9, 1, 1)
+programManager.addWidget(getLoseDll, 1, 10, 1, 1)
+programManager.addItem(QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum), 1, 11, 1, 1)
+programManager.addWidget(QtWidgets.QLabel(transla.transe("U", "WINE配置:")), 2, 0, 1, 1)
+wineConfig = QtWidgets.QPushButton(transla.transe("U", "配置容器"))
+wineConfig.clicked.connect(lambda: RunWineProgram("winecfg"))
+programManager.addWidget(wineConfig, 3, 0, 1, 1)
+fontAppStore = QtWidgets.QPushButton(transla.transe("U", "字体商店"))
+fontAppStore.clicked.connect(FontAppStore)
+programManager.addWidget(fontAppStore, 3, 2, 1, 1)
+button_r_6 = QtWidgets.QPushButton(transla.transe("U", "RegShot"))
+button_r_6.clicked.connect(lambda: RunWineProgram(f"{programPath}/RegShot/regshot.exe"))
+programManager.addWidget(button_r_6, 3, 4, 1, 1)
+sparkWineSetting = QtWidgets.QPushButton(transla.transe("U", "星火wine配置"))
+sparkWineSetting.clicked.connect(lambda: threading.Thread(target=os.system, args=["/opt/durapps/spark-dwine-helper/spark-dwine-helper-settings/settings.sh"]).start())
+programManager.addWidget(sparkWineSetting, 3, 6, 1, 1)
+wineAutoConfig = QtWidgets.QPushButton(transla.transe("U", "自动/手动配置 Wine 容器"))
+wineAutoConfig.clicked.connect(WineBottonAutoConfig)
+programManager.addWidget(wineAutoConfig, 3, 8, 1, 1)
+# 权重
+button5.setSizePolicy(size)
+saveDesktopFileOnLauncher.setSizePolicy(size)
+label_r_2.setSizePolicy(size)
+getProgramIcon.setSizePolicy(size)
+#trasButton.setSizePolicy(size)
+button_r_6.setSizePolicy(size)
+wineConfig.setSizePolicy(size)
+
+returnText = QtWidgets.QTextBrowser()
+returnText.setStyleSheet("""
+background-color: black;
+color: white;
+""")
+returnText.setText(transla.transe("U", "在此可以看到wine安装应用时的终端输出内容"))
+mainLayout.setRowStretch(0, 2)
+mainLayout.setRowStretch(1, 1)
+mainLayout.setColumnStretch(0, 2)
+mainLayout.setColumnStretch(1, 1)
+mainLayout.addWidget(returnText, 0, 1, 2, 1)
+
+# 版权
+copy = QtWidgets.QLabel(f"""\n程序版本:{version},<b>提示:Wine 无法运行保证可以运行所有的 Windows 程序,如果想要运行更多可执行程序,可以考虑虚拟机和双系统</b><br>
+©2020~{time.strftime("%Y")} gfdgd xi、为什么您不喜欢熊出没和阿布呢,RacoonGX 团队作品""")
+mainLayout.addWidget(copy, 2, 0, 1, 1)
+
+# 程序运行
+programRun = QtWidgets.QWidget()
+programRunLayout = QtWidgets.QHBoxLayout()
+programRun.setLayout(programRunLayout)
+programRunLayout.addItem(QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum))
+button3 = QtWidgets.QPushButton(transla.transe("U", "运行程序"))
+button3.clicked.connect(runexebutton)
+programRunLayout.addWidget(button3)
+killProgram = QtWidgets.QPushButton(transla.transe("U", "终止程序"))
+killProgram.clicked.connect(KillProgram)
+programRunLayout.addWidget(killProgram)
+killBottonProgram = QtWidgets.QPushButton(transla.transe("U", "终止指定容器的程序"))
+killBottonProgram.clicked.connect(lambda: threading.Thread(target=os.system, args=[f"'{programPath}/kill.sh' '{os.path.basename(e1.currentText())}'"]).start())
+programRunLayout.addWidget(killBottonProgram)
+mainLayout.addWidget(programRun, 2, 1, 1, 1)
+
+# 菜单栏
+menu = window.menuBar()
+programmenu = menu.addMenu(transla.transe("U", "程序(&P)"))
+p1 = QtWidgets.QAction(QtGui.QIcon(f"{programPath}/Icon/Function/wine.png"), transla.transe("U", "安装 wine(&I)"))
+installWineOnDeepin23 = QtWidgets.QAction(QtGui.QIcon(f"{programPath}/Icon/Function/wine23P.png"), transla.transe("U", "安装 wine(只限Deepin23 Preview)"))
+installWineOnDeepin23Alpha = QtWidgets.QAction(QtGui.QIcon(f"{programPath}/Icon/Function/wine23A.png"), transla.transe("U", "安装 wine(只限Deepin23 Alpha)"))
+installWineHQ = QtWidgets.QAction(QtGui.QIcon(f"{programPath}/Icon/Function/wine.png"), transla.transe("U", "安装 WineHQ"))
+installMoreWine = QtWidgets.QAction(QtGui.QIcon(f"{programPath}/Icon/Function/more-wine.png"), transla.transe("U", "安装更多 Wine"))
+downloadChrootBottle = QtWidgets.QAction(QtGui.QIcon(f"{programPath}/Icon/Function/CHROOT.png"), transla.transe("U", "下载 Chroot 容器"))
+p2 = QtWidgets.QAction(transla.transe("U", "设置程序(&S)"))
+enabledAll = QtWidgets.QAction(transla.transe("U", "强制启用所有被禁用的组件(不推荐)"))
+p3 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(47), transla.transe("U", "清空软件历史记录(&C)"))
+cleanCache = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(47), transla.transe("U", "清空软件缓存"))
+cleanProgramUnuse = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(47), transla.transe("U", "删除程序组件"))
+p4 = QtWidgets.QAction(transla.transe("U", "退出程序(&E)"))
+programmenu.addAction(p1)
+programmenu.addAction(installWineOnDeepin23)
+programmenu.addAction(installWineOnDeepin23Alpha)
+programmenu.addAction(installWineHQ)
+programmenu.addAction(installMoreWine)
+programmenu.addAction(downloadChrootBottle)
+programmenu.addSeparator()
+programmenu.addAction(p2)
+programmenu.addAction(enabledAll)
+programmenu.addSeparator()
+programmenu.addAction(p3)
+programmenu.addAction(cleanCache)
+programmenu.addAction(cleanProgramUnuse)
+programmenu.addSeparator()
+programmenu.addAction(p4)
+p1.triggered.connect(InstallWine)
+installWineOnDeepin23.triggered.connect(InstallWineOnDeepin23)
+installWineOnDeepin23Alpha.triggered.connect(InstallWineOnDeepin23Alpha)
+installWineHQ.triggered.connect(InstallWineHQ)
+installMoreWine.triggered.connect(lambda: threading.Thread(target=os.system, args=[f"'{programPath}/wine/installwine'"]).start())
+downloadChrootBottle.triggered.connect(lambda: threading.Thread(target=os.system, args=[f"'{programPath}/QemuDownload.py'"]).start())
+p2.triggered.connect(ProgramSetting.ShowWindow)
+enabledAll.triggered.connect(lambda: DisableButton(False))
+p3.triggered.connect(CleanProgramHistory)
+cleanCache.triggered.connect(CleanProgramCache)
+cleanProgramUnuse.triggered.connect(CleanProgram)
+p4.triggered.connect(window.close)
+
+wineOption = menu.addMenu(transla.transe("U", "Wine(&W)"))
+w1 = QtWidgets.QAction(transla.transe("U", "打开 Wine 容器目录"))
+w2 = QtWidgets.QAction(QtGui.QIcon.fromTheme("font"), transla.transe("U", "安装常见字体"))
+w3 = QtWidgets.QAction(QtGui.QIcon.fromTheme("font"), transla.transe("U", "安装自定义字体"))
+w4 = QtWidgets.QAction(transla.transe("U", "删除选择的 Wine 容器"))
+cleanBottonUOS = QtWidgets.QAction(transla.transe("U", "清理 Wine 容器(基于 Wine 适配活动脚本)"))
+wineKeyboardLnk = QtWidgets.QAction(transla.transe("U", "Wine 快捷键映射"))
+w5 = QtWidgets.QAction(QtGui.QIcon.fromTheme("deb"), transla.transe("U", "打包 wine 应用"))
+w6 = QtWidgets.QAction(QtGui.QIcon.fromTheme("deb"), transla.transe("U", "使用官方 Wine 适配活动的脚本进行打包"))
+easyPackager = QtWidgets.QAction(QtGui.QIcon.fromTheme("deb"), transla.transe("U", "使用简易打包器进行打包(小白且无特殊需求建议使用这个)"))
+getDllOnInternet = QtWidgets.QAction(QtGui.QIcon.fromTheme("1CD8_rundll32.0"), transla.transe("U", "从互联网获取DLL"))
+w7 = QtWidgets.QAction(transla.transe("U", "从镜像获取DLL(只支持官方安装镜像,DOS内核如 Windows 95 暂不支持)"))
+updateGeek = QtWidgets.QAction(transla.transe("U", "从 Geek Uninstaller 官网升级程序"))
+deletePartIcon = QtWidgets.QAction(transla.transe("U", "快捷方式管理工具"))
+deleteDesktopIcon = QtWidgets.QAction(transla.transe("U", "删除所有 Wine 程序在启动器的快捷方式"))
+wineOption.addAction(w1)
+wineOption.addAction(w2)
+wineOption.addAction(w3)
+wineOption.addAction(w4)
+wineOption.addAction(cleanBottonUOS)
+wineOption.addSeparator()
+wineOption.addAction(w5)
+wineOption.addAction(w6)
+wineOption.addAction(easyPackager)
+wineOption.addAction(deletePartIcon)
+wineOption.addSeparator()
+wineOption.addAction(wineKeyboardLnk)
+wineOption.addSeparator()
+wineOption.addAction(getDllOnInternet)
+wineOption.addAction(w7)
+wineOption.addSeparator()
+wineOption.addAction(updateGeek)
+wineOption.addSeparator()
+wm1 = wineOption.addMenu(transla.transe("U", "在指定 Wine、容器安装组件"))
+wm1_1 = QtWidgets.QAction(transla.transe("U", "在指定wine、指定容器安装 .net framework"))
+wm1_2 = QtWidgets.QAction(transla.transe("U", "在指定wine、指定容器安装 Visual Studio C++"))
+wm1_3 = QtWidgets.QAction(transla.transe("U", "在指定wine、指定容器安装 MSXML"))
+wm1_4 = QtWidgets.QAction(transla.transe("U", "在指定wine、指定容器安装 gecko"))
+wm1_5 = QtWidgets.QAction(QtGui.QIcon.fromTheme("mono"), transla.transe("U", "在指定wine、指定容器安装 mono"))
+wm1_7 = QtWidgets.QAction(transla.transe("U", "在指定wine、指定容器安装 Visual Basic Runtime"))
+wm1_6 = QtWidgets.QAction(transla.transe("U", "在指定wine、指定容器安装其它运行库"))
+wm1.addAction(wm1_1)
+wm1.addAction(wm1_2)
+wm1.addAction(wm1_3)
+wm1.addAction(wm1_4)
+wm1.addAction(wm1_5)
+wm1.addAction(wm1_7)
+wm1.addAction(wm1_6)
+wm2 = wineOption.addMenu(transla.transe("U", "在指定 Wine、容器运行基础应用"))
+wm2_1 = QtWidgets.QAction(QtGui.QIcon.fromTheme("control-center2"), transla.transe("U", "打开指定wine、指定容器的控制面板"))
+wm2_2 = QtWidgets.QAction(QtGui.QIcon.fromTheme("web-browser"), transla.transe("U", "打开指定wine、指定容器的浏览器"))
+wm2_3 = QtWidgets.QAction(QtGui.QIcon.fromTheme("regedit"), transla.transe("U", "打开指定wine、指定容器的注册表"))
+wm2_4 = QtWidgets.QAction(transla.transe("U", "打开指定wine、指定容器的任务管理器"))
+wm2_5 = QtWidgets.QAction(transla.transe("U", "打开指定wine、指定容器的资源管理器"))
+wm2_6 = QtWidgets.QAction(transla.transe("U", "打开指定wine、指定容器的关于 wine"))
+wm2.addAction(wm2_1)
+wm2.addAction(wm2_2)
+wm2.addAction(wm2_3)
+wm2.addAction(wm2_4)
+wm2.addAction(wm2_5)
+wm2.addAction(wm2_6)
+wineOption.addSeparator()
+settingRunV3Sh = wineOption.addMenu(transla.transe("U", "run_v3.sh 管理"))
+w8 = QtWidgets.QAction(transla.transe("U", "设置 run_v3.sh 的文管为 Deepin 默认文管"))
+w9 = QtWidgets.QAction(transla.transe("U", "设置 run_v3.sh 的文管为 Wine 默认文管"))
+w10 = QtWidgets.QAction(transla.transe("U", "重新安装 deepin-wine-helper"))
+w11 = QtWidgets.QAction(QtGui.QIcon.fromTheme("winetricks"), transla.transe("U", "使用winetricks打开指定容器"))
+settingRunV3Sh.addAction(w8)
+settingRunV3Sh.addAction(w9)
+settingRunV3Sh.addAction(w10)
+wineOption.addSeparator()
+wineOption.addAction(w11)
+wineOption.addSeparator()
+optionCheckDemo = wineOption.addMenu(transla.transe("U", "组件功能测试"))
+vbDemo = QtWidgets.QAction(transla.transe("U", "测试 Visual Basic 6 程序"))
+netDemo = QtWidgets.QAction(transla.transe("U", "测试 .net framework 程序"))
+netIEDemo = QtWidgets.QAction(transla.transe("U", "测试 .net framework + Internet Explorer 程序"))
+optionCheckDemo.addAction(vbDemo)
+optionCheckDemo.addAction(netDemo)
+optionCheckDemo.addAction(netIEDemo)
+wineOption.addSeparator()
+wm3 = wineOption.addMenu(transla.transe("U", "启用/禁用功能"))
+ed1 = wm3.addMenu(transla.transe("U", "启用/禁用 opengl"))
+wm3_1 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(45), transla.transe("U", "开启 opengl"))
+wm3_2 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(40), transla.transe("U", "禁用 opengl"))
+ed1.addAction(wm3_1)
+ed1.addAction(wm3_2)
+ed2 = wm3.addMenu(transla.transe("U", "安装/卸载 winbind"))
+wm4_1 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(45), transla.transe("U", "安装 winbind"))
+wm4_2 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(40), transla.transe("U", "卸载 winbind"))
+ed2.addAction(wm4_1)
+ed2.addAction(wm4_2)
+dxvkMenu = wm3.addMenu(transla.transe("U", "安装/卸载 DXVK"))
+installDxvk = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(45), transla.transe("U", "安装 DXVK"))
+uninstallDxvk = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(40), transla.transe("U", "卸载 DXVK"))
+dxvkMenu.addAction(installDxvk)
+dxvkMenu.addAction(uninstallDxvk)
+vkd3dMenu = wm3.addMenu(transla.transe("U", "安装/卸载 Vkd3d"))
+installvkd3d = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(45), transla.transe("U", "安装 Vkd3d"))
+uninstallvkd3d = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(40), transla.transe("U", "卸载 Vkd3d"))
+vkd3dMenu.addAction(installvkd3d)
+vkd3dMenu.addAction(uninstallvkd3d)
+wineOption.addSeparator()
+wineOption.addAction(deleteDesktopIcon)
+wineOption.addSeparator()
+settingWineBottleCreateLink = wm3.addMenu(transla.transe("U", "启用/禁止指定 wine 容器生成快捷方式"))
+enabledWineBottleCreateLink = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(45), transla.transe("U", "允许指定 wine 容器生成快捷方式"))
+disbledWineBottleCreateLink = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(40), transla.transe("U", "禁止指定 wine 容器生成快捷方式"))
+settingWineBottleCreateLink.addAction(enabledWineBottleCreateLink)
+settingWineBottleCreateLink.addAction(disbledWineBottleCreateLink)
+settingWineCrashDialog = wm3.addMenu(transla.transe("U", "启用/禁用指定 wine 容器崩溃提示窗口"))
+disbledWineCrashDialog = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(40), transla.transe("U", "禁用指定 wine 容器崩溃提示窗口"))
+enabledWineCrashDialog = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(45), transla.transe("U", "启用指定 wine 容器崩溃提示窗口"))
+settingWineCrashDialog.addAction(enabledWineCrashDialog)
+settingWineCrashDialog.addAction(disbledWineCrashDialog)
+settingOpenProgram = wm3.addMenu(transla.transe("U", "启用/禁止指定 wine 容器创建文件关联"))
+enabledOpenProgram = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(45), transla.transe("U", "允许指定 wine 容器创建文件关联"))
+disbledOpenProgram = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(40), transla.transe("U", "禁止指定 wine 容器创建文件关联"))
+settingOpenProgram.addAction(enabledOpenProgram)
+settingOpenProgram.addAction(disbledOpenProgram)
+settingHttpProxy = wineOption.addMenu(transla.transe("U", "设置指定 Wine 容器代理"))
+enabledHttpProxy = QtWidgets.QAction(transla.transe("U", "设置指定 wine 容器的代理"))
+disbledHttpProxy = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(40), transla.transe("U", "禁用指定 wine 容器的代理"))
+settingHttpProxy.addAction(enabledHttpProxy)
+settingHttpProxy.addAction(disbledHttpProxy)
+dllOver = wineOption.addMenu(transla.transe("U", "函数顶替库列表"))
+saveDllOver = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(43), transla.transe("U", "导出函数顶替列表"))
+addDllOver = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(32), transla.transe("U", "导入函数顶替列表"))
+editDllOver = QtWidgets.QAction(transla.transe("U", "编辑函数顶替库列表"))
+dllOver.addAction(saveDllOver)
+dllOver.addAction(addDllOver)
+dllOver.addAction(editDllOver)
+w1.triggered.connect(OpenWineBotton)
+w2.triggered.connect(InstallWineFont)
+w3.triggered.connect(OpenWineFontPath)
+w4.triggered.connect(DeleteWineBotton)
+cleanBottonUOS.triggered.connect(CleanWineBottonByUOS)
+w5.triggered.connect(BuildExeDeb)
+w6.triggered.connect(UOSPackageScript)
+easyPackager.triggered.connect(lambda: threading.Thread(target=os.system, args=[f"'{programPath}/deepin-wine-easy-packager.py' '{e2.currentText()}'"]).start())
+wineKeyboardLnk.triggered.connect(lambda: threading.Thread(target=os.system, args=[f"'{programPath}/key/key-add-gui.py'"]).start())
+getDllOnInternet.triggered.connect(GetDllFromInternet)
+w7.triggered.connect(GetDllFromWindowsISO.ShowWindow)
+updateGeek.triggered.connect(lambda: os.system(f"'{programPath}/launch.sh' deepin-terminal -C '\"{programPath}/UpdateGeek.sh\"' --keep-open"))
+w8.triggered.connect(SetDeepinFileDialogDeepin)
+w9.triggered.connect(SetDeepinFileDialogDefult)
+w10.triggered.connect(SetDeepinFileDialogRecovery)
+w11.triggered.connect(lambda: RunWinetricks())
+wm1_1.triggered.connect(lambda: threading.Thread(target=InstallNetFramework).start())
+wm1_2.triggered.connect(lambda: threading.Thread(target=InstallVisualStudioCPlusPlus).start())
+wm1_3.triggered.connect(lambda: threading.Thread(target=InstallMSXML).start())
+wm1_4.triggered.connect(lambda: threading.Thread(target=InstallMonoGecko, args=["gecko"]).start())
+wm1_5.triggered.connect(lambda: threading.Thread(target=InstallMonoGecko, args=["mono"]).start())
+wm1_7.triggered.connect(lambda: threading.Thread(target=InstallVB).start())
+wm1_6.triggered.connect(lambda: threading.Thread(target=InstallOther).start())
+wm2_1.triggered.connect(lambda: RunWineProgram("control"))
+wm2_2.triggered.connect(lambda: RunWineProgram("iexplore' 'https://gfdgd-xi.github.io"))
+wm2_3.triggered.connect(lambda: RunWineProgram("regedit"))
+wm2_4.triggered.connect(lambda: RunWineProgram("taskmgr"))
+wm2_5.triggered.connect(lambda: RunWineProgram("explorer"))
+wm2_6.triggered.connect(lambda: RunWineProgram("winver"))
+wm3_1.triggered.connect(lambda: RunWineProgram(f"regedit.exe' /s '{programPath}/EnabledOpengl.reg"))
+wm3_2.triggered.connect(lambda: RunWineProgram(f"regedit.exe' /s '{programPath}/DisabledOpengl.reg"))
+wm4_1.triggered.connect(lambda: os.system(f"'{programPath}/launch.sh' deepin-terminal -C 'pkexec apt install winbind -y' --keep-open"))
+wm4_2.triggered.connect(lambda: os.system(f"'{programPath}/launch.sh' deepin-terminal -C 'pkexec apt purge winbind -y' --keep-open"))
+installDxvk.triggered.connect(InstallDXVK)
+uninstallDxvk.triggered.connect(UninstallDXVK)
+installvkd3d.triggered.connect(InstallVkd3d)
+uninstallvkd3d.triggered.connect(UninstallVkd3d)
+deletePartIcon.triggered.connect(lambda: threading.Thread(target=os.system, args=[f"python3 '{programPath}/BuildDesktop.py'"]).start())
+deleteDesktopIcon.triggered.connect(DeleteDesktopIcon)
+enabledWineBottleCreateLink.triggered.connect(lambda: RunWineProgram("reg' delete 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v winemenubuilder.exe '/f"))
+disbledWineBottleCreateLink.triggered.connect(lambda: RunWineProgram("reg' add 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v winemenubuilder.exe '/f"))
+disbledWineCrashDialog.triggered.connect(lambda: RunWineProgram("reg' add 'HKEY_CURRENT_USER\Software\Wine\WineDbg' /v ShowCrashDialog /t REG_DWORD /d 00000000 '/f"))
+enabledWineCrashDialog.triggered.connect(lambda: RunWineProgram("reg' add 'HKEY_CURRENT_USER\Software\Wine\WineDbg' /v ShowCrashDialog /t REG_DWORD /d 00000001 '/f"))
+disbledOpenProgram.triggered.connect(lambda: RunWineProgram("reg' add 'HKEY_CURRENT_USER\Software\Wine\FileOpenAssociations' /v Enable /d N '/f"))
+enabledOpenProgram.triggered.connect(lambda: RunWineProgram("reg' add 'HKEY_CURRENT_USER\Software\Wine\FileOpenAssociations' /v Enable /d Y '/f"))
+enabledHttpProxy.triggered.connect(SetHttpProxy)
+disbledHttpProxy.triggered.connect(DisbledHttpProxy)
+saveDllOver.triggered.connect(SaveDllList)
+addDllOver.triggered.connect(AddReg)
+editDllOver.triggered.connect(lambda: RunWineProgram("winecfg"))
+vbDemo.triggered.connect(lambda: RunWineProgram(f"{programPath}/Test/vb.exe"))
+netDemo.triggered.connect(lambda: RunWineProgram(f"{programPath}/Test/net.exe"))
+netIEDemo.triggered.connect(lambda: RunWineProgram(f"{programPath}/Test/netandie.exe"))
+
+virtualMachine = menu.addMenu(transla.transe("U", "虚拟机(&V)"))
+v1 = QtWidgets.QAction(QtGui.QIcon.fromTheme("virtualbox"), transla.transe("U", "使用 Virtualbox 虚拟机运行 Windows 应用"))
+virtualMachine.addAction(v1)
+v1.triggered.connect(RunVM)
+
+checkValue = menu.addMenu(transla.transe("U", "校验值计算(&S)"))
+md5Value = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(32), transla.transe("U", "MD5(&M)"))
+sha1Value = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(32), transla.transe("U", "SHA1(&M)"))
+base64Value = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(32), transla.transe("U", "Base64(建议小文件)(&B)"))
+sha256Value = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(32), transla.transe("U", "SHA256(&S)"))
+sha512Value = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(32), transla.transe("U", "SHA512(&S)"))
+md5Value.triggered.connect(lambda: ValueCheck().Get("MD5"))
+sha1Value.triggered.connect(lambda: ValueCheck().Get("SHA1"))
+base64Value.triggered.connect(lambda: ValueCheck().Get("BASE64"))
+sha256Value.triggered.connect(lambda: ValueCheck().Get("SHA256"))
+sha512Value.triggered.connect(lambda: ValueCheck().Get("SHA512"))
+checkValue.addAction(md5Value)
+checkValue.addAction(sha1Value)
+checkValue.addAction(base64Value)
+checkValue.addAction(sha256Value)
+checkValue.addAction(sha512Value)
+
+
+safeWebsize = menu.addMenu(transla.transe("U", "云沙箱(&C)"))
+s1 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(9), transla.transe("U", "360 沙箱云"))
+s2 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(9), transla.transe("U", "微步云沙箱"))
+s3 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(9), transla.transe("U", "VIRUSTOTAL"))
+safeWebsize.addAction(s1)
+safeWebsize.addAction(s2)
+safeWebsize.addAction(s3)
+s1.triggered.connect(lambda: webbrowser.open_new_tab("https://ata.360.net/"))
+s2.triggered.connect(lambda: webbrowser.open_new_tab("https://s.threatbook.cn/"))
+s3.triggered.connect(lambda: webbrowser.open_new_tab("https://www.virustotal.com/"))
+
+log = menu.addMenu(transla.transe("U", "日志(&L)"))
+getDllInfo = QtWidgets.QAction(transla.transe("U", "查询 Dll"))
+checkLogText = QtWidgets.QAction(transla.transe("U", "日志分析"))
+saveLogText = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(16), transla.transe("U", "另存为日志"))
+transLogText = QtWidgets.QAction(transla.transe("U", "翻译日志(翻译后日志分析功能会故障)"))
+uploadLogText = QtWidgets.QAction(transla.transe("U", "上传日志"))
+getDllInfo.triggered.connect(DllWindow.ShowWindow)
+checkLogText.triggered.connect(LogChecking.ShowWindow)
+saveLogText.triggered.connect(SaveLog)
+transLogText.triggered.connect(TransLog)
+uploadLogText.triggered.connect(UploadLog)
+log.addAction(getDllInfo)
+log.addAction(checkLogText)
+log.addAction(saveLogText)
+log.addAction(transLogText)
+log.addAction(uploadLogText)
+
+qemuMenu = menu.addMenu(transla.transe("U", "容器(&C)"))
+unpackDeb = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(32), transla.transe("U", "解包 deb 提取容器"))
+qemuMenu.addAction(unpackDeb)
+unpackDeb.triggered.connect(UnPackage)
+if len(qemuBottleList) >= 1:
+    configMenu = QtWidgets.QAction(QtGui.QIcon(f"{programPath}/Icon/Function/CHROOT.png"), transla.transe("U", "配置指定 Chroot 容器"))
+    qemuMenu.addAction(configMenu)
+    configMenu.triggered.connect(ConfigQemu)
+    print(qemuBottleList)
+
+help = menu.addMenu(transla.transe("U", "帮助(&H)"))
+runStatusWebSize = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "查询程序在 Wine 的运行情况"))
+h1 = help.addMenu(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "程序官网"))
+h2 = QtWidgets.QAction(transla.transe("U", "小提示"))
+wineRunnerHelp = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "Wine运行器和Wine打包器傻瓜式使用教程(小白专用) By 鹤舞白沙"))
+h3 = QtWidgets.QAction(transla.transe("U", "更新内容"))
+h4 = QtWidgets.QAction(transla.transe("U", "鸣谢名单"))
+h5 = QtWidgets.QAction(transla.transe("U", "更新这个程序"))
+programInformation = QtWidgets.QAction(transla.transe("U", "获取程序公告"))
+h6 = QtWidgets.QAction(transla.transe("U", "反馈这个程序的建议和问题"))
+fenUpload = QtWidgets.QAction(transla.transe("U", "程序评分"))
+h7 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(9), transla.transe("U", "关于这个程序"))
+h8 = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(9), transla.transe("U", "关于 Qt"))
+gfdgdxiio = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "作者个人站"))
+forumWebsize = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "程序论坛"))
+gitee = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "Gitee"))
+github = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "Github"))
+gitlink = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "Gitlink"))
+gitlab = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "Gitlab"))
+jihu = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "极狐"))
+h1.addAction(gfdgdxiio)
+h1.addAction(gitee)
+h1.addAction(github)
+h1.addAction(gitlink)
+h1.addAction(gitlab)
+h1.addAction(jihu)
+help.addSeparator()
+help.addAction(forumWebsize)
+help.addAction(wineRunnerHelp)
+help.addAction(runStatusWebSize)
+help.addSeparator()
+help.addAction(h2)
+help.addAction(h3)
+help.addAction(h4)
+help.addSeparator()
+wikiHelp = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "程序 Wiki"))
+help.addAction(wikiHelp)
+videoHelp = help.addMenu(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "视频教程"))
+easyHelp = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "简易使用教程"))
+buildHelp = QtWidgets.QAction(QtWidgets.QApplication.style().standardIcon(20), transla.transe("U", "打包教程"))
+videoHelp.addAction(easyHelp)
+videoHelp.addAction(buildHelp)
+help.addSeparator()
+help.addAction(h5)
+help.addAction(h6)
+help.addAction(fenUpload)
+help.addAction(programInformation)
+help.addAction(h7)
+help.addAction(h8)
+help.addSeparator()
+hm1 = help.addMenu(transla.transe("U", "更多生态适配应用"))
+hm1_1 = QtWidgets.QAction(transla.transe("U", "运行 Android 应用:UEngine 运行器"))
+hm1.addAction(hm1_1)
+gfdgdxiio.triggered.connect(lambda: webbrowser.open_new_tab("https://gfdgd-xi.github.io"))
+gitee.triggered.connect(lambda: webbrowser.open_new_tab("https://gitee.com/gfdgd-xi/deep-wine-runner"))
+github.triggered.connect(lambda: webbrowser.open_new_tab("https://github.com/gfdgd-xi/deep-wine-runner"))
+gitlink.triggered.connect(lambda: webbrowser.open_new_tab("https://gitlink.org.cn/gfdgd_xi/deep-wine-runner"))
+gitlab.triggered.connect(lambda: webbrowser.open_new_tab("https://gitlab.com/gfdgd-xi/deep-wine-runner"))
+jihu.triggered.connect(lambda: webbrowser.open_new_tab("https://jihulab.com//gfdgd-xi/deep-wine-runner"))
+runStatusWebSize.triggered.connect(lambda: webbrowser.open_new_tab("https://gfdgd-xi.github.io/wine-runner-info"))
+forumWebsize.triggered.connect(lambda: webbrowser.open_new_tab("https://gfdgdxi.flarum.cloud/"))
+h2.triggered.connect(helps)
+h3.triggered.connect(UpdateThings)
+wineRunnerHelp.triggered.connect(lambda: webbrowser.open_new_tab("https://bbs.deepin.org/post/246837"))
+h4.triggered.connect(ThankWindow)
+wikiHelp.triggered.connect(lambda: webbrowser.open_new_tab("https://gfdgd-xi.github.io/wine-runner-wiki"))
+easyHelp.triggered.connect(lambda: webbrowser.open_new_tab("https://www.bilibili.com/video/BV1ma411972Y"))
+buildHelp.triggered.connect(lambda: webbrowser.open_new_tab("https://www.bilibili.com/video/BV1EU4y1k7zr"))
+h5.triggered.connect(UpdateWindow.ShowWindow)
+h6.triggered.connect(WineRunnerBugUpload)
+fenUpload.triggered.connect(lambda: threading.Thread(target=os.system, args=[f"python3 '{programPath}/ProgramFen.py'"]).start())
+h7.triggered.connect(about_this_program)
+h8.triggered.connect(lambda: QtWidgets.QMessageBox.aboutQt(widget))
+hm1_1.triggered.connect(lambda: webbrowser.open_new_tab("https://gitee.com/gfdgd-xi/uengine-runner"))
+programInformation.triggered.connect(GetNewInformation)
+# 异同步获取信息
+#threading.Thread(target=GetVersion).start()
+GetVersion()
+# 窗口设置
+window.resize(widget.frameGeometry().width() * 2, widget.frameGeometry().height())
+widget.setLayout(mainLayout)
+window.setWindowIcon(QtGui.QIcon(f"{programPath}/deepin-wine-runner.svg"))
+widget.show()
+window.show()
+
+# 控件设置
+app.setStyle(QtWidgets.QStyleFactory.create(setting["Theme"]))
+e1.addItems(findExeHistory)
+e2.addItems(wineBottonHistory)
+combobox1.addItems(shellHistory)
+if setting["AutoWine"]:
+    o1.addItems(canUseWine)
+else:
+    o1.addItems(wine.keys())
+# 禁用被精简掉的控件
+for i in [
+    [[p1, installWineOnDeepin23, installWineHQ, installMoreWine], f"{programPath}/InstallWineOnDeepin23.py"],
+    [[w5], f"{programPath}/deepin-wine-packager.py"],
+    [[w6], f"{programPath}/deepin-wine-packager-with-script.py"],
+    [[p1, v1], f"{programPath}/RunVM.sh"],
+    [[getProgramIcon, uninstallProgram, updateGeek, trasButton, miniAppStore, fontAppStore, wm1_1, wm1_2, wm1_3, wm1_6, w7, w2], f"{programPath}/geek.exe"],
+]:
+    if not os.path.exists(i[1]):
+        for x in i[0]:
+            x.setDisabled(True)
+# 有些功能是非 X86 不适用的,需要屏蔽
+if subprocess.getoutput("arch").lower() != "x86_64":
+    p1.setDisabled(True)
+    installWineOnDeepin23.setDisabled(True)
+    installMoreWine.setEnabled(True)
+    virtualMachine.setDisabled(True)
+    v1.setDisabled(True)
+    installWineHQ.setDisabled(True)
+    pass
+o1.setCurrentText(setting["DefultWine"])
+e1.setEditText(setting["DefultBotton"])
+e2.setEditText("")
+combobox1.setEditText("")
+if len(sys.argv) > 1 and sys.argv[1]:
+    e2.setEditText(sys.argv[1])
+if not os.path.exists("/opt/durapps/spark-dwine-helper/spark-dwine-helper-settings/settings.sh"):
+    sparkWineSetting.setEnabled(False)
+if o1.currentText() == "":
+    # 一个 Wine 都没有却用 Wine 的功能
+    # 还是要处理的,至少不会闪退
+    wine["没有识别到任何Wine,请在菜单栏“程序”安装Wine或安装任意Wine应用"] = "没有识别到任何Wine,请在菜单栏“程序”安装Wine或安装任意Wine应用"
+    canUseWine.append("没有识别到任何Wine,请在菜单栏“程序”安装Wine或安装任意Wine应用")
+    o1.addItem("没有识别到任何Wine,请在菜单栏“程序”安装Wine或安装任意Wine应用")
+
+
+sys.exit(app.exec_())
diff --git a/req/__init__.py b/req/__init__.py
new file mode 100755
index 0000000..f52e5c6
--- /dev/null
+++ b/req/__init__.py
@@ -0,0 +1,27 @@
+# 此库用于实现 52 版不连接程序服务器
+import requests
+
+unConnect = False
+with open("/var/lib/dpkg/status", "r") as i:
+    unConnect = "Package: spark-deepin-wine-runner-52" in open("/var/lib/dpkg/status", "r").read()
+if unConnect:
+    print("52专版,将会无法连接服务器")
+
+class Respon:
+    text = ""
+
+def get(url, timeout=None): # -> requests.Response:
+    if unConnect:
+        # 全部 Url 都拦截
+        raise Exception("52专版不支持连接服务器")
+    if timeout == None:
+        return requests.get(url)
+    return requests.get(url, timeout=timeout)
+
+def post(url, data, timeout=None):
+    if unConnect:
+        # 全部 Url 都拦截
+        raise Exception("52专版不支持连接服务器")
+    if timeout == None:
+        return requests.post(url, data)
+    return requests.post(url, data, timeout=timeout)
\ No newline at end of file
diff --git a/req/__pycache__/__init__.cpython-310.pyc b/req/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ae95dabd4c4cc1ea9aac70ef0a43ec4d39141465
GIT binary patch
literal 1163
zcmZWo&1(}u6rY)$w40cwtyWPH^&mpTWZT$Q6cMq0+=3_~24q=x#&m7EyPci2F+@<K
zqGI)+;s-@qLC}+emmVtqAA2>8dh+1Si@w?PBht6LxAWeceKWt`d+YV|q!7sG-xd2M
zMd+JyIz<QP7-(=C3_}c8Pzf<o!kjRT(FS?aU(#4&#hat^=o%{F3$T+SiW(Y5u0Di<
zUDFsN^;`tySnT5o*42Pm8L{rSxYTtTF`XsvAeL;9Qa8)66x(nImvmUASr4p|44*^U
z-k)#}R6JE1Fs@m`s5qAm=1-K3Kw2^kA}nfq&RF(@Rpy6x2figHa*T7|adXp-%X1=h
zT`qDXg>Wxa87VXuo_>FD|JUN9rBC;oi?3TR=31Yh|M>c*_4r+Dc4q0}{L-uUSz6mX
zE~S6iFop_)`NBwkXyibCXn44`U4;XP9~c}SEsXky3J3FLZ`{k<UT3bVl843%tGO-9
z<;quBnN^+qWZ(vQ+qD(4PQl<D0}cAXaA1|85@8tlCcuOib)Dsb@3|2wW@)6GrfW@d
z(~MH4Iq9*mqSk5CoC>YVa)wG?l^>8uLcQ4h*>8BhG%Vi_jP*Pjf=?Ny>9~$G&AfkI
zXz*RXx)4kX(vgnih)uv-5w%5S$3TOlU?dW~5}!bqQa4DQ)L}YAMgockzKy479WYH0
zu~lkww2tPX!&18nD~OXBK>0x{{@1GJ!c6Pg$JV1;?Itz9%>KA}cdb=8>XyzV_d=OX
zM9I({^Pu0hjJhsc?7XN%$&*!^`_ci@bO0CfKn9Uk<`US{LQxTExN(G?HHL)xJ%j>1
z02+6KVx8z%$K<b0QaFR-tgV2rh$0{X8k2Aw79AvLb!{C9Bqm{7n}j-^2jD9-)Cmxw
zokL;+l*uMU54=Q1nO<eoWJJ{W0-2>^W9%?XS}_i>N$ptebsLF7u@iJ1k~HqaLS?hK
zm`%ln<HI8A`P_|bMO1K$MG0Rxu54dIp^ov#pLQG;AFH^F^ds$QJgUYy*aAk!l%(+h
Q-tm_zB1xt@rDan80QC|cV*mgE

literal 0
HcmV?d00001

diff --git a/req/__pycache__/__init__.cpython-36.pyc b/req/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b9c480a0dcc27cf4d6c7089ac5cbcebb35536524
GIT binary patch
literal 1180
zcmb7C&1=*^6rV}5+ibf1(kexYh={OYH|_RAEF#5fy%nv95|EH)#%<hfl1?VNmKD^k
zqSER?#Se<;LC}+emmVtqA9J-`>&b&RPrk{vwWVI1<o$SgZ}Mh-zxVoET8z)X%I*sd
zp>Jr*Y6gD<EMfoz5nM(VB8r8nLR6yFl*e6`N>UqNSG5`{r7e6BcAi5M=n|rsjnEWH
z*Dyw;iRdIljG|_x&mhuFvU7-JYl_uGI!Fs?ox_$+c9AyH4qk@f^C-9b2b_z>$7Vat
zYYsEZ-lR#wQqhdK!{bO`Hhbu-<CdHv9X=3+4lDH#N<+`@x$gP2hsC~6S<hf0J`7a`
z3oA=czCXDCb9sLC)4i4DSM}#_>YtyjeSKYj^sc_Ru=?=r>dW`Dd!{%KhfTAu(3>v|
z=KBWw^L+yYv-@N?f_Q)Lz))c*JXScGF9uUV-VL_qDl&O&s<4^cyI!t%g%nA}%TGss
zly`ks^4eG!oDs079e^SW6J#j_gR%-}po;Vajl#eeXgsG0-L`#an%cH7Y<oH&aasCV
z+n$M?@_I(&w8B3imVtT+{61m^Avc{cjLe-1nT*buw(a>Ix9xm*gQ@UehrEyipyTA*
zmA+gu33Gx*!J?A@9I=CyZjMi(%bhoss#1j+U<L;UHGBup7#C3$7?l(@z}2f-71f}#
z4G-eVLc(!;TZ>kf7V1ww*5_|GnzQm{aqZUK%@*abXyV>94Pu^4iA?N|2GD1hi}a*J
zF0iu5oUXVu<Q_<-1GSh&JQ8Y=a?nzZS((YP7TEi%4>KUbr2L&=Q7Zt#nqpubXTc1d
z<XlNzE=fNHmPjxL&Nd0us`?KJlthA|4dOMRz2R3CkU^EL{y!NK9=R0D!VOr91bK1R
z1|YOBh<Hw8vW-F`4tJ8>Y?s`zITsDyyCJq8YzOZwW-^z<<MK6<%E@U$3qtBA#e~MF
zLqsZMp3fV%kTNBLC4X-@Ejd?8E%f7!(LEujD(V8z6%DlR#v0aD1<NO`wyK8l2b@DS
A{{R30

literal 0
HcmV?d00001

diff --git a/req/__pycache__/__init__.cpython-37.pyc b/req/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d1051f7a43a4cb97cee64e1165f9ee71ec234c41
GIT binary patch
literal 980
zcma))&ui2`6vyXHvfJ!-w^dN^Aku>f0oO>O2qIFfKW>XwLCGb=o#~qHZjw$WTFYK^
zi>S1EP!UC>dl2-b;H8Ix|AWW5+OB%??#VY(7hCb*Bk$$SOfoZ{?|Wye)iOc*oUb&l
zScH7hgQ1l$nMTj%FfhWPO?<+r51cZK***IBfN!zFaI|LkNvr6?Rs8Z2nI+c<2QkeH
ztk?q}7YG|+&N5+6kNQPcWhGW#27iQ&u~AmR%wceuxZ~gPEK)zew9mU43a=eq_gLC$
zdYKGmo+%JZhcAYWR@mexC$cmYts3JzjpEv^DCRYh$1xYRsmc5Z?lLvGx&GwqgZn==
zR<=Ie+uV3Lc)m9H`0U%K*MmoI2Cr7P9`?6hylv<MhX$BTqi1_CaN+|aK4pNI6fb9~
z;w;b7Bvz#E+R6!nIPCBsP~{-#BrI?1yb=TpdD#BFVoSa#-w~m;G~wq7??%$$UUQB$
zS+E#+XL;6=N$P2iofMwn3tkXJaU_G_SbAGvd5A7nMlm>G#tofo({CGn20c59K@w4s
zz@P_rp^F$TDh^4yW_3v)b(VA<Gn}WZ2CSY>;6FpbHrH1NPu~w#?))W{3u;709iHS8
z@k@C;lc3%WsY>S-8$6W}D&yd_bDqgeSxqios;peJ#VGFnM+2cT#5jg3dS*HhZ0djm
zWiay%4XaJR3+RUHI3~NesNtH}=ITNpS%zd?ifooH+W)edOS-nG;3-01OpIYrcA8|;
zwS?{nWwTI*|D@TA%lpxH(NsX_c^B&XDVYt;{>n~L9xI5HEqKUOAr(<9O-T*E`E7?_
erhT+d$~m>&X{U9?O`AH@h6)@68yq@jm7QPY%m1|i

literal 0
HcmV?d00001

diff --git a/spark-deepin-wine-runner-new.png b/spark-deepin-wine-runner-new.png
new file mode 100755
index 0000000000000000000000000000000000000000..772cb6d94993a37a766971f933677a1456b81876
GIT binary patch
literal 21752
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
POd+@R&Gf2uP_h35KM&Ga

literal 0
HcmV?d00001

diff --git a/trans/__init__.py b/trans/__init__.py
new file mode 100644
index 0000000..1635c5a
--- /dev/null
+++ b/trans/__init__.py
@@ -0,0 +1,53 @@
+#!/usr/bin/env python3
+import os
+import json
+import requests
+import traceback
+
+class Trans():
+    isTrans = False
+    unCloudTrans = True
+    word = {}
+    fileName = ""
+
+    def __init__(self, lang="zh_CN", fileName=f"trans.json") -> None:
+        self.fileName = fileName
+        self.isTrans = (lang != "zh_CN")
+        if self.isTrans:
+            try:
+                if not os.path.exists(fileName):
+                    with open(fileName, "w") as file:
+                        file.write("{}")
+                with open(fileName, "r") as file:
+                    self.word = json.loads(file.read())
+            except:
+                traceback.print_exc()
+                self.isTrans = False
+
+    def transe(self, temp, text) -> str:
+        if not self.isTrans:
+            return text
+        try:
+            return self.word[text].replace("(", "(").replace(")", ")")
+        except:
+            if self.unCloudTrans:
+                return text
+            # 机翻
+            data = { 'doctype': 'json', 'type': 'auto','i': text}
+            jsonReturn = requests.post("http://fanyi.youdao.com/translate", data=data).json()["translateResult"]
+            transText = ""
+            for i in jsonReturn:
+                print(i[0])
+                transText += f'{i[0]["tgt"]}\n'
+            if "\n" in text:
+                transText = transText.replace("\n\n", "\n")[:-1]
+            else:
+                transText = transText[:-1]
+            self.word[text] = transText.replace("(", "(").replace(")", ")")
+            try:
+                with open(self.fileName, "w") as file:
+                    file.write(json.dumps(self.word, ensure_ascii=False))
+            except:
+                traceback.print_exc()
+            print(f"{text}=>{transText}")
+            return transText
\ No newline at end of file
diff --git a/trans/__pycache__/__init__.cpython-37.pyc b/trans/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..bb50965d6770cfeaad0a4fca1708237ea1e4ed74
GIT binary patch
literal 1618
zcmZux&1)M+6rY*>&}zMsoy0M<S_&zpRE0>vhn9vkgxa__K^@big0gHhV|(S*?s|3>
zTk7g$7gA^_^qK^uWBWH0`hU!|r<{8CrG0NUZc^wh^Jd<>d2imw@9meZmQP^hfBZ69
zYY_4$GFQWb%>$Ul77$K2O~|lb>5v+p4VhW3q4gEvj9V9kTjy+ObNY~U?N^{j1|y_b
z!-mZRn8jTnf}kC+L5CIxt(XiQZVg=?aF;h;Q10>Og)?jj&u~6pxv+;#?t<->cJ^hI
z7Q6eJXlHg5ZVxVfg(tmnk)?w!)vgq(l<5e=z=2OUVQ#}LegaaliiD)1oE}@SqZJub
z`E>e?Vq<GzS8Pd(9pzMvvvc<I+T5zFh0CoarQ{K$;cK!-9up(CLB27!RAb@6o#v7(
z!B*(Mx%G&o9ZK+1D~n(WD|hh4Z%N7?gDnWi9Y}Og)6*IIey*w9g&4hqI1z(rB6K4z
zOuU+9g|_oZ9cfpb#f1Vc%SEc4QyD9vZH!(!NfvRCND*;upJtNlCM0Jho<yT#-OOd2
zs!*Jby0*3pksN3{iPA%f+0iz>`74o|z+8UbKguSee|W$Td3YB0cSLclvb@iQ$Zwy<
zskkl6G!?RMQr{25IE_^p_VTIru9y}WD&7G?s7rmAj0W(n!+ak&kIvdAwBD7%zZLU9
zCxB@xwnd?0WK0UbVh_o*gVn0oCRqS{I9oDUEp9JCR%aUImi!d&a)-N6#l{N@YGjWc
z4prjKXKdjv3HLY2+~zBD=d4%RJLJ2M=B{c~0KrXi4wbH)de2*%<T>H(m+Uh#cTS!_
zZQB()cI9uC123=g_7YoR?FaB^?xaEGyy47^|M*z@eveGIln47JzXk|;Z{DaH3tze8
z6_oSq{KhlD;M-^e9Id~`QLtzsj%oyf#|*q%ubk)PrB(Y4aU-s74oYl*zkYvuNk4wQ
z{qd4^<r<u7J1SMywRD4LBQ?zdKZeqHcI!x~{BFO05T(<&H_b{OWxY{0sVkjCN<fR*
zJW`QfHO0rHJyDd2lK7y6auIE*L#3%dW4{0DZx|B(F=Q7s1CbV`6k$}1;&{fsxZiC{
z{1eF=sMe4oPXMkuDAVl(-ZlWyo)jmgFqqG?Le(KS2F<dK$_QY&iWVGRPVz#o<H1cJ
zT~BV{xvj(`M|!5@2YBFP!|a(qh3S#B*hkqdR7B94KB!3t@4F^g@h<F(J3tWBHbA-q
zE9_W6H-Ps6+#P`S2Jjt_w&{l;ZPV*?7Sv#`&2*XRdg*|nu8%#FLbr#Z_QP<J@iM`E
z5QZmZl+=<sOI^5cQdNhH-e?OlBJo%Kmdn`068)A82qwS4hVsBg^RczIk#rrog0~P9
c@)IN`bEx!x*0gu8_U=C3D6mgGh!#Hf53gr~;{X5v

literal 0
HcmV?d00001

diff --git a/trans/deepin-wine-packager.json b/trans/deepin-wine-packager.json
new file mode 100644
index 0000000..ae0f8a2
--- /dev/null
+++ b/trans/deepin-wine-packager.json
@@ -0,0 +1 @@
+{"浏览……": "Browse...", "打包……": "Packaging...", "安装打包完成的 deb……": "Install complete packaging deb...", "根据填写内容打包模板": "According to fill in the content packaging template", "打包容器 7z 包": "Packing container 7 z packages", "设置卸载该 deb 后自动删除该容器": "Set automatically deleted the container after unloading the deb", "使用统信 Wine 生态适配活动容器清理脚本": "Used series Wine container cleaning the ecological adaptation activities", "使用星火wine helper\n(如不勾选默认为deepin-wine-helper)": "Using the spark wine helper\n(if you don't check the default deepin - wine - helper)", "要打包的 deb 包的包名(※必填):": "To pack deb package package name (does required) :", "deb 包的版本号(※必填):": "Deb package version number (does required) :", "deb 包的说明(※必填):": "Deb package instructions (does required) :", "deb 包的维护者(※必填):": "Deb package maintainer (does required) :", "要解压的 wine 容器的名称(※必填):": "To extract the name of the wine containers (does required) :", "要打包的 wine 容器路径(※必填):": "To the wine packaging container path (does required) :", "wine 容器里需要运行的可执行文件路径(※必填):": "Wine containers need to run the executable file path (does required) :", "要显示的 .desktop 文件的分类(※必填):": "To display the desktop file classification (does required) :", "wine 容器里需要运行的可执行文件的参数:": "Wine containers need to run the executable file parameters:", "要显示的 .desktop 文件的名称(※必填):": "To display the desktop file name (does required) :", "要显示的 .desktop 文件的图标:": "The icon to display the desktop file:", "选择打包的 wine 版本(※必选):": "Choose the wine packaging version (does will choose) :", "打包 deb 的保存路径(※必填):": "Packaging deb save path (does required) :", "高级设置": "Advanced Settings", "deb 包的依赖(如无特殊需求默认即可)": "Deb package dependency (if there is no special requirements for the default)", "deb 包的推荐依赖(非强制,一般默认即可)": "Recommend relying on deb package (optional, generally the default)", "Wine 位数(只限本地需要打包集成的Wine):\n提示:32位的Wine不能使用64位容器": "Wine digits (only for local Wine packaging integration) :\nTip: 32-bit Wine 64 containers cannot be used", "deb 包选项:": "Deb package options:", "deb 的依赖(强制,如无特殊需求默认即可):": "Deb dependent (mandatory, such as no special requirements for the default) :", "deb 的推荐依赖(非强制,一般默认即可):": "Deb recommend relying on (optional, generally the default) :", "要显示的 .desktop 文件的 MimeType:": "To display the desktop MimeType file:", "打包 deb 架构:": "Packaging deb architecture:", "程序": "The program", "deb 包": "Deb package", "投稿到星火应用商店": "Contribute to spark the app store", "帮助": "help", "退出程序": "Exit the program", "只读取 Control 信息": "Only reads the Control information", "读取所有(需解包,时间较久)": "Read all (need to unpack, for a long time)", "从网页端投稿": "From the web", "使用投稿器投稿(推荐)": "Use contribute contributes (recommended)", "小提示": "tip", "Wine 运行器和 Wine 打包器傻瓜式使用教程(小白专用)\nBy @雁舞白沙": "Run Wine and Wine packaging machine fool tutorial (white)\nBy @ white goose dance", "提示:\n1、deb 打包软件包名要求:\n软件包名只能含有小写字母(a-z)、数字(0-9)、加号(+)和减号(-)、以及点号(.),软件包名最短长度两个字符;它必须以字母开头\n2、如果要填写路径,有“浏览……”按钮的是要填本计算机对应文件的路径,否则就是填写安装到其他计算机使用的路径\n3、输入 wine 的容器路径时最后面请不要输入“/”\n4、输入可执行文件的运行路径时是以“C:/XXX/XXX.exe”的格式进行输入,默认是以 C: 为开头,不用“\\”做命令的分隔,而是用“/”\n5、.desktop 的图标只支持 PNG 格式和 SVG 格式,其他格式无法显示图标\n6、路径建议不要带空格,容易出问题": "Tip:\nRequirements: 1, deb package package name\nPackage name can only contain lowercase letters (a-z), Numbers (0-9), plus sign (+) and minus (-) and dot (.), the package of the shortest length two characters;\n2, if you want to fill in the path, have \"browse...\n3, input the wine container path behind the please don't input \"/\"\n4, input the operation of the executable file path is \"C: / / XXX XXX. Exe format for input, the default is C: as the beginning, instead of a\" \\ \"do command space, with a\"/\"\n. 5, the desktop icon only supports the PNG format and SVG format, other format can not display icon\n6, the path with the blank space is not recommended, easy to a problem", "支持 png 和 svg 格式,不支持 ico 格式": "Support PNG or SVG format, the ico format is not supported", "Wine运行器和Wine打包器傻瓜式使用教程(小白专用)\nBy @雁舞白沙": "Run Wine and Wine packaging machine fool tutorial (white)\nBy @ white goose dance", "6.5.50(随便填写或填写该软件的windows版本的版本号,6.5.50只是示例)。": "6.5.50 (literally fill out or fill in the Windows version of the software version number, 6.5.50 just sample).", "随便填写或使用该软件的windows版本的软件简介。": "Fill in or use the software freely introduction to the Windows version of the software.", "填写自己的网名,若是自用软件,不上架至应用商店,不进行后续维护,可随便填写。": "Fill in his name, if self-use software, not application stores to shop, not for the follow-up maintenance, can literally fill in.", "要打包的容器所在路径,也可以选择已经好打包的 7z 文件,一般自动带出": "To packaging containers in the path, also can choose the 7 z file has good packaging, general out automatically", "选择生成 deb 包所对应的架构": "Select generate deb package of the architecture", "清理容器无用内容,一般建议勾选,最新版本默认勾选,如果有特殊需求(如容器内有 mono、gecko 等)建议取消勾选": "Clean container useless content, general advice to check, check the latest version of the default, if you have special requirements, such as container with mono, gecko, etc.) suggest cancel the check", "生成 deb 包所需的依赖,一般情况下默认即可": "Generate deb package needed to rely on, normally the default", "生成 deb 包的推荐依赖,一般情况下为空即可": "Rely on the recommendation of generated deb package, usually is empty", "使用星火 dwine helper 替换 Deepin Wine Helper,投稿星火应用商店的话建议勾选,最新版本默认勾选(如果打包 arm 包将不会提供选择)": "Using the spark dwine helper to replace Deepin Wine helper, contribute the spark app store that if checked, the latest version of the default check (if packaging arm package will not provide choice)", "填写该软件的中文或英文名称。": "Fill in Chinese or English name of this software.", "图标只支持PNG格式和SVG格式,其他格式无法显示。": "Icon only supports the PNG format and SVG format, other format cannot be displayed.", "快捷方式的 MimeType 项,一般为空即可": "The MimeType, shortcut, as a general rule, be empty", "打包的 Wine 版本,根据实际情况选择(如果打包 arm 包将不会提供选择)": "Packaging Wine version, choose according to actual situation (if packaging arm package will not provide choice)", "打包出的 deb 生成的位置,一般自动生成": "Packaging deb generation of location, general automatically generated", "程序参数,如%u,一般不需要": "Process parameters, such as % u, generally do not need", "只打包容器生成 7z 包,不做其它操作": "Packaging containers generated 7 z package only, no other operation", "构建 deb 包目录,但不打包成 deb": "Build deb package directory, but it's not packaged into deb", "查看打包过程中命令返回内容": "Check the command returns the content in the process of packaging", "点击该按钮打包生成 deb": "Click this button to generate deb package", "调用默认的 deb 安装工具安装生成的 deb": "Calls the default installed deb tools generated deb"}
\ No newline at end of file
diff --git a/trans/deepin-wine-runner-qemu-download.json b/trans/deepin-wine-runner-qemu-download.json
new file mode 100644
index 0000000..7b8b389
--- /dev/null
+++ b/trans/deepin-wine-runner-qemu-download.json
@@ -0,0 +1 @@
+{"更换源": "Change the source", "Gitlink 源(推荐)": "Gitlink source (recommended)", "备用源(只支持 IPv6 用户)": "The alternate source (only support IPv6 users)", "本地测试源(127.0.0.1)": "Local test source (127.0.0.1)", "使用前须知:\n1、Qemu 跨架构效率较低,如果有条件建议优先使用 box86、exagear 等效率较高的转换层;\n2、使用此方案需要使用到 Root 权限(需开启管理员模式)并安装 qemu-user-static;\n3、chroot 时候可能会出现问题导致程序闪退或异常,出现该问题重启电脑即可;\n4、在此环境使用 Wine 时,只能读取到您用户目录或本程序文件夹下的文件,其它路径无法读取;\n5、移除容器时请保证在这次打开电脑时没有调用过需要删除容器,如果有调用过建议重启电脑后再移除;\n6、暂时属于测试功能;": "Instructions before use:\n1, Qemu across architecture efficiency is low, if there is condition is preferred to use box86, exagear high efficiency transformation layer;\n2, use this program to need to use the Root administrator mode (open) and install qemu - user - static;\n3, when chroot flash back problems may cause the program or abnormal, the problems to restart the computer;\n4, in this environment using Wine, can only read your user directory or folder of the program files, other path cannot read;\n5, remove the container please make sure that no calls while in the open a computer need to delete the container, if there is a call after advice to restart the computer to remove;\n6, a temporary belong to test functionality;"}
\ No newline at end of file
diff --git a/trans/deepin-wine-runner.json b/trans/deepin-wine-runner.json
new file mode 100644
index 0000000..90bf49e
--- /dev/null
+++ b/trans/deepin-wine-runner.json
@@ -0,0 +1 @@
+{"快速启动": "Quick start", "请选择容器路径:": "Please select a container path:", "请选择要执行的程序(EXE、MSI或者命令):": "Please select the application that performs (EXE, MSI or command) :", "浏览": "browse", "请选择WINE版本:": "Please select a WINE version:", "高级功能": "Advanced features", "创建快捷方式(Desktop文件):": "Create a shortcut (Desktop file) :", "名称:": "Name:", "创建到桌面": "Create to the desktop", "创建到开始菜单": "Create to the start menu", "程序管理:": "Program management:", "提取图标": "Extract the icon", "窗口透明工具": "Transparent Windows tool", "卸载程序": "Uninstall program", "微型应用商店": "The micro app store", "获取该程序运行情况": "To get the program running situation", "检测静态下程序缺少DLL": "Test under static program lacks the DLL", "WINE配置:": "WINE configuration:", "配置容器": "Configuration of the container", "字体商店": "Font store", "RegShot": "RegShot", "星火wine配置": "The spark wine configuration", "自动/手动配置 Wine 容器": "Automatic/manual configuration Wine containers", "在此可以看到wine安装应用时的终端输出内容": "Here you can see the terminal output content of wine installation application", "运行程序": "To run the program", "终止程序": "To terminate the program", "终止指定容器的程序": "The designated container program", "程序(&P)": "Program (& P)", "安装 wine(&I)": "Install wine (& I)", "安装 wine(只限Deepin23 Preview)": "Install wine (only Deepin23 Preview)", "安装 wine(只限Deepin23 Alpha)": "Install wine (only Deepin23 Alpha)", "安装 WineHQ": "Install the WineHQ", "安装更多 Wine": "Install more Wine", "下载 Chroot 容器": "Download the Chroot container", "设置程序(&S)": "Setup (& S)", "清空软件历史记录(&C)": "Empty the software history (& C)", "清空软件缓存": "Empty the software cache", "删除程序组件": "Delete the component", "退出程序(&E)": "Exit the program (& E)", "Wine(&W)": "酒(易名)", "打开 Wine 容器目录": "Open the Wine container directory", "安装常见字体": "Common fonts installed", "安装自定义字体": "Install custom fonts", "删除选择的 Wine 容器": "Delete selected Wine vessel", "清理 Wine 容器(基于 Wine 适配活动脚本)": "Clean up the Wine containers (script) based on Wine adaptation activity", "Wine 快捷键映射": "Wine shortcut key mapping", "打包 wine 应用": "Wine packaging application", "使用官方 Wine 适配活动的脚本进行打包": "Using official script package Wine adaptation activities", "使用简易打包器进行打包(小白且无特殊需求建议使用这个)": "Using simple packaging machine for packaging (white and no special requirements for recommended this)", "从互联网获取DLL": "Get the DLL from the Internet", "从镜像获取DLL(只支持官方安装镜像,DOS内核如 Windows 95 暂不支持)": "Official from image acquisition DLL (only support the installation image, DOS kernel, such as Windows 95 temporary does not support)", "从 Geek Uninstaller 官网升级程序": "From the Geek Uninstaller website update", "删除部分 Wine 程序在启动器的快捷方式": "Delete some Wine program in a shortcut to the starter", "删除所有 Wine 程序在启动器的快捷方式": "Delete all Wine program in a shortcut to the starter", "在指定 Wine、容器安装组件": "In the designated Wine, container installation components", "在指定wine、指定容器安装 .net framework": "Container specified in the designated wine, install the.net framework", "在指定wine、指定容器安装 Visual Studio C++": "Specified in the designated wine, container install Visual Studio c + +", "在指定wine、指定容器安装 MSXML": "Install MSXML in designated wine, designated container", "在指定wine、指定容器安装 gecko": "In the designated wine, designated container installation gecko", "在指定wine、指定容器安装 mono": "Specified in the designated wine, container install mono", "在指定wine、指定容器安装 Visual Basic Runtime": "Container installation specified in the designated wine, Visual Basic Runtime", "在指定wine、指定容器安装其它运行库": "In the designated wine, designated container install other runtime", "在指定 Wine、容器运行基础应用": "In the designated Wine, container operation based applications", "打开指定wine、指定容器的控制面板": "Open the specified wine, the control panel of the specified container", "打开指定wine、指定容器的浏览器": "Open the specified wine, browser of the specified container", "打开指定wine、指定容器的注册表": "Open the specified wine, specify the registry of the vessel", "打开指定wine、指定容器的任务管理器": "Open the specified wine, specify the task manager of the vessel", "打开指定wine、指定容器的资源管理器": "Open the specified wine, specify the container resource manager", "打开指定wine、指定容器的关于 wine": "Open the specified wine, specify the vessel about wine", "设置 run_v3.sh 的文管为 Deepin 默认文管": "Set run_v3. Sh tube for Deepin tube by default", "设置 run_v3.sh 的文管为 Wine 默认文管": "Set run_v3. Sh tube for Wine tube by default", "重新安装 deepin-wine-helper": "Reinstall the deepin - wine - a helper", "使用winetricks打开指定容器": "Using winetricks open the specified container", "组件功能测试": "Component function test", "测试 Visual Basic 6 程序": "Test the Visual Basic 6 program", "测试 .net framework 程序": "Test the.net framework application", "测试 .net framework + Internet Explorer 程序": "Test the.net framework + Internet Explorer program", "启用/禁用功能": "Enable/disable function", "启用/禁用 opengl": "Enable/disable opengl", "开启 opengl": "Open the opengl", "禁用 opengl": "Disable the opengl", "安装/卸载 winbind": "Install/uninstall the winbind", "安装 winbind": "Install the winbind", "卸载 winbind": "Uninstall the winbind", "安装/卸载 DXVK": "Install/uninstall DXVK", "安装 DXVK": "Install DXVK", "卸载 DXVK": "Uninstall DXVK", "允许/禁止指定 wine 容器生成快捷方式": "Allowed/prohibited specified wine containers generated shortcuts", "允许指定 wine 容器生成快捷方式": "Allows you to specify wine containers generated shortcuts", "禁止指定 wine 容器生成快捷方式": "Designated wine containers generated shortcut is prohibited", "启用/禁用指定 wine 容器崩溃提示窗口": "Enable/disable specified wine containers collapse prompt window", "禁用指定 wine 容器崩溃提示窗口": "Disable specified wine containers collapse prompt window", "启用指定 wine 容器崩溃提示窗口": "Enable the specified wine containers collapse prompt window", "设置指定 Wine 容器代理": "Set the specified Wine vessel agent", "设置指定 wine 容器的代理": "Set the specified wine vessel agent", "禁用指定 wine 容器的代理": "Disable specified wine vessel agent", "函数顶替库列表": "Function library list", "导出函数顶替列表": "Export function list", "导入函数顶替列表": "The import function list", "编辑函数顶替库列表": "Edit function library list", "虚拟机(&V)": "The virtual machine (& V)", "使用 Virtualbox 虚拟机运行 Windows 应用": "Using Virtualbox virtual machine run Windows applications", "校验值计算(&S)": "Check value calculation (& S)", "MD5(&M)": "MD5(&M)", "SHA1(&M)": "SHA1(&M)", "Base64(建议小文件)(&B)": "Base64 (small files) proposed (& B)", "SHA256(&S)": "SHA256(谨此告知)", "SHA512(&S)": "SHA512(&S)", "云沙箱(&C)": "Cloud sandbox (& C)", "360 沙箱云": "360 the sandbox cloud", "微步云沙箱": "Micro step cloud sandbox", "VIRUSTOTAL": "VIRUSTOTAL", "日志(&L)": "Log (& L)", "查询 Dll": "Query the Dll", "日志分析": "Log analysis", "另存为日志": "Save as logs", "翻译日志(翻译后日志分析功能会故障)": "Translation log (translated will log analysis function failure)", "上传日志": "Upload the log", "容器(&C)": "The container (& C)", "解包 deb 提取容器": "Unpack the deb extraction container", "配置指定 Chroot 容器": "Configure Chroot container specified", "帮助(&H)": "Help (& H)", "查询程序在 Wine 的运行情况": "The operation of the query in the Wine", "程序官网": "The program's website", "小提示": "tip", "Wine运行器和Wine打包器傻瓜式使用教程(小白专用) By 鹤舞白沙": "Run Wine and Wine packaging machine fool (white) By using the tutorial crane dancing baisha", "更新内容": "Update the content", "谢明名单": "Iv list", "更新这个程序": "Update the program", "反馈这个程序的建议和问题": "Suggestions and feedback on this procedure", "关于这个程序": "About this program", "关于 Qt": "On Qt", "作者个人站": "The author stood", "程序论坛": "BBS program", "Gitee": "Gitee", "Github": "Github", "Gitlink": "Gitlink", "Gitlab": "Gitlab", "极狐": "A fox", "程序 Wiki": "Program the Wiki", "视频教程": "Video tutorial", "更多生态适配应用": "More ecological adaptation", "运行 Android 应用:UEngine 运行器": "Run Android applications: UEngine runner", "选择 Wine 容器版本:": "Choose the Wine container version:", "wine DEBUG 信息输出:": "Wine the DEBUG information output:", "默认 Wine:": "The default Wine:", "默认 Wine 容器:": "The default Wine container:", "使用终端打开:": "Use terminal to open:", "自定义 wine 参数:": "Custom wine parameters:", "程序主题:": "Program topics:", "Wine 默认 Mono 和 Gecko 安装器:": "Wine default Mono and Gecko installer:", "忽略未安装的 Wine:": "Ignore the Wine not installed:", "下载缓存:": "Download cache:", "图标生成:": "Icon to generate:", "自动根据EXE名称生成路径:": "Automatically generated path according to EXE name:", "开启 DEBUG 输出": "Open the DEBUG output", "保存": "save", "测试(重启后变回设置的主题)": "The theme of the test (back after restart set)", "使用终端打开(deepin 终端)": "Use terminal open (deepin terminal)", "屏蔽 Wine 默认 Mono 和 Gecko 安装器": "Shielding Wine default Mono and Gecko installer", "不显示未检测到的 Wine": "Don't show the Wine not detected", "开启下载缓存": "Open the download cache", "本软件构建的图标后面添加容器名": "Add container name behind the software build icon", "自动根据文件名生成容器路径(开启后必须通过修改默认wine容器路径才可指定其它路径,重启后生效)": "Automatic container path was generated according to the file name (open must by modifying the default after wine container path to specify other paths, to take effect after a restart)", "ISO镜像:": "ISO image:", "读取/挂载ISO镜像": "Read/mount the ISO image", "关闭/卸载ISO镜像": "Close/uninstall ISO image", "查找": "To find the", "保存到 wine 容器中": "Save the wine containers", "设置 wine 容器": "Set up the wine containers", "查找DLL\n(为空则代表不查找,\n将显示全部内容):": "Find the DLL\n(null represents not find,\nWill show all content) :", "提示:\n    目前本提取功能暂只支持 NT 内核系统的官方安装镜像,不支持读取 ghost 等第三方封装方式的安装镜像\n    以及不要拷贝/替换太多的 dll,否则可能会导致 wine 容器异常,以及不要替换 Wine 的核心 dll\n    最后,拷贝/替换 dll 后,建议点击下面“设置 wine 容器”按钮==》函数库 进行设置\n当前选择的 Wine 容器:/home/gfdgd_xi/.wine": "Tip:\nCurrently used to extract features of this temporary support only official installation image, NT kernel system does not support read ghost third party packaging approaches such as the installation image\nAnd don't copy/replace the DLL too much, otherwise it may cause the wine vessel abnormalities, and not to replace the wine at the core of the DLL\nFinally, after copy/replace the DLL, it is recommended that the click \"Settings\" wine containers below button = = \"function library to set\nThe currently selected Wine container: / home/gfdgd_xi /. Wine", "常见 Linux 发行版": "Common Linux distributions", "<h4>提示:</h4>\n1、使用终端运行该程序,可以看到 wine 以及程序本身的提示和报错;\n2、wine 32 位和 64 位的容器互不兼容;\n3、所有的 wine 和 winetricks 均需要自行安装(可以从 菜单栏=>程序 里面进行安装);\n4、本程序支持带参数运行 wine 程序(之前版本也可以),只需要按以下格式即可:\nexe路径' 参数 '\n即可(单引号需要输入);\n5、wine 容器如果没有指定,则会默认为 ~/.wine;\n6、如果可执行文件比较大的话,会出现点击“获取该程序运行情况”出现假死的情况,因为正在后台读取 SHA1,只需要等一下即可(读取速度依照您电脑处理速度、读写速度、可执行文件大小等有关);\n7、对于非 X86 的用户来说,请不要使用本程序自带的 Wine 安装程序和 Windows 虚拟机安装功能(检测到为非 X86 架构会自动禁用);\n8、如果非 X86 的用户的 UOS 专业版用户想要使用的话,只需要在应用商店安装一个 Wine 版本微信即可在本程序选择正确的 Wine 运行程序;\n9、在使用 linglong 包的 Wine 应用时,必须安装至少一个 linglong 的使用 Wine 软件包才会出现该选项,\n而程序识别到的 Wine 是按 linglong 的使用 Wine 软件包名的字母排序第一个的 Wine,且生成的容器不在用户目录下,而是在容器的用户目录下(~/.deepinwine、/tmp、桌面、下载、文档等被映射的目录除外),\n同理需要运行的 EXE 也必须在被映射的目录内;\n10、如果是使用 Deepin 23 的 Wine 安装脚本,请切记——安装过程会临时添加 Deepin 20 的 apt 源,不要中断安装以及\n<b>千万不要中断后不删除源的情况下 apt upgrade !!!</b>中断后只需重新打开脚本输入 repair 或者随意安装一个 Wine(会自动执行恢复操作)即可\n以及此脚本安装的 Wine 无法保证 100% 能使用,以及副作用是会提示;\n<code>N: 鉴于仓库 'https://community-packages.deepin.com/beige beige InRelease' 不支持 'i386' 体系结构,跳过配置文件 'main/binary-i386/Packages' 的获取。</code>": "< h4 > tip: < / h4 >\n1, use terminal run the program, you can see wine as well as the program itself hints and error;\n2, wine containers of 32-bit and 64 - bit incompatible;\n3, need to install in all types of wine and winetricks (available from the menu bar = > application for installation);\n4, a parameter with this program run wine program (previous version), you just need to in the following format:\nExe path 'parameters'\n(single quotes need to input);\n5, wine containers if not specified, will default to ~ /. Wine;\n6, if the executable file is large, there will be a click on the \"get the program running situation\" suspended animation, because reading SHA1 backstage, you just need to wait (read speed according to your computer processing speed, to read and write speed and the executable file size, etc).\n7, for non-x86 user, please do not use this program with the Wine of the installer and install Windows virtual machine function (detected for the X86 architecture will be automatically disabled);\n8, if users of non-x86 UOS pro users want to use, only need to install a Wine in the app store version WeChat can choose the right Wine in the this program to run the program;\nSeptember and, when it is applied in Wine of linglong package must be installed at least one linglong using this option, Wine package will start\nAnd procedures to identify the Wine is according to the use of linglong Wine package name alphabetical order the first Wine, and generate the container is not in the user directory, but the user directory in the container (~ /. Deepinwine, / TMP, desktop, download, and document except mapped directory).\nSimilarly need to run the EXE also must be mapped directory;\n10, if is to use Deepin 23 Wine install script, please bear in mind - the installation process will temporarily add Deepin 20 apt source, installation and don't interrupt\nDon't delete after < b > don't interrupt source under the condition of apt upgrade!!!!!!\nAnd 100% can use this script installed Wine cannot be guaranteed, and the side effect is prompt;\n< code > N: since the warehouse 'https://community-packages.deepin.com/beige beige InRelease' does not support 'i386 architecture, skip the configuration file' main/binary - i386 / Packages' acquisition.", "※1、支持使用 Qemu + Chroot 跨运行 Wine 以及指定程序的功能;\n※2、提供了简易打包器以用于打包简易 deb;\n※3、支持下载配置过的 Qemu + Chroot 容器;\n※4、支持解压指定 deb 的内打包好的容器;\n5、优化 Wine 列表显示;\n6、优化非基于生态适配脚本的打包器内容自动填充功能;\n7、新增程序论坛和教程入口;\n8、优化程序文案\n": "※ 1 support using Qemu + Chroot run across the Wine and the function of the designated procedures;\n※ 2 provides a simple packaging machine for packaging simple deb;\n※ 3 support download Qemu + Chroot container configuration before;\n※ 4 support decompression specified deb packed in containers;\n5, optimization of Wine list;\n6, an optimization based on the ecological adaptation that pack the script content automatically filled function;\n7, new procedures BBS and tutorial entry;\n8, optimization of procedure document", "确定": "determine", "<p>Wine运行器是一个能让Linux用户更加方便地运行Windows应用的程序,内置了对Wine图形化的支持、各种Wine工具、自制的Wine程序打包器和运行库安装工具等。</p>\n<p>它同时还内置了基于VirtualBox制作的、专供小白使用的Windows虚拟机安装工具,可以做到只需下载系统镜像并点击安装即可,无需考虑虚拟机的安装、创建、分区等操作。</p>\n<pre>\n\n一个图形化了如下命令的程序(最简单格式)\n<code>env WINEPREFIX=容器路径 wine(wine的路径) 可执行文件路径</code>\n让你可以简易方便的使用 wine": "< p > Wine runner is a could make Linux users more convenient to run Windows application program, with built-in support for Wine graphical, all kinds of Wine packaging tools, homemade Wine program and runtime installation tools, etc.\n< p > it also has a built-in based on VirtualBox, meant for use by small white Windows virtual machine installation tools, can simply download the system image and click install, do not need to consider the installation of the virtual machine, such as creating, partition operation.\n<pre>\nA graphical the program of the following commands (the simplest format)\n< code > env WINEPREFIX = wine container path (path) of wine executable file path < / code >\nLet the wine you can easy to use", "简易使用教程": "Simple to use the tutorial", "打包教程": "Packaging tutorial", "※1、支持使用 Qemu + Chroot 跨运行 Wine 以及指定程序的功能;\n※2、提供了简易打包器以用于打包简易 deb;\n※3、支持下载配置过的 Qemu + Chroot 容器;\n※4、支持解压指定 deb 的内打包好的容器;\n5、优化 Wine 列表显示;\n6、优化非基于生态适配脚本的打包器内容自动填充功能;\n7、新增程序论坛和教程入口;\n8、优化程序文案;\n9、新增日志翻译功能;\n10、程序进一步完善英语翻译(机翻);\n11、优化程序更新策略;\n": "※ 1 support using Qemu + Chroot run across the Wine and the function of the designated procedures;\n※ 2 provides a simple packaging machine for packaging simple deb;\n※ 3 support download Qemu + Chroot container configuration before;\n※ 4 support decompression specified deb packed in containers;\n5, optimization of Wine list;\n6, an optimization based on the ecological adaptation that pack the script content automatically filled function;\n7, new procedures BBS and tutorial entry;\n8, optimization copywriting program;\n9, new log function;\n10, program, we will further improve the English translation (machine);\n11, optimization program update strategy;", "更新(更新后需要自行手动重启程序)": "Need to manually restart the program after update (update)", "检查更新": "Check the update", "※1、支持使用 Qemu + Chroot 跨运行 Wine 以及指定程序的功能;\n※2、提供了简易打包器以用于打包简易 deb;\n※3、支持下载配置过的 Qemu + Chroot 容器;\n※4、支持解压指定 deb 的内打包好的容器;\n※5、优化 Wine 列表显示;\n※6、新增程序论坛和教程入口;\n7、优化非基于生态适配脚本的打包器内容自动填充功能;\n8、优化程序文案;\n9、新增日志翻译功能;\n10、程序进一步完善英语翻译(机翻);\n11、优化程序更新策略;\n12、新增程序评分功能。\n": "※ 1 support using Qemu + Chroot run across the Wine and the function of the designated procedures;\n※ 2 provides a simple packaging machine for packaging simple deb;\n※ 3 support download Qemu + Chroot container configuration before;\n※ 4 support decompression specified deb packed in containers;\n※ 5 optimize Wine list;\n※ 6 new BBS and tutorial entrance program;\n7, an optimization based on ecological adaptation that pack the script content automatically filled function;\n8, optimization copywriting program;\n9, new log function;\n10, program, we will further improve the English translation (machine);\n11, optimization program update strategy;\n12, new scoring function.", "程序评分": "Program ratings", "※1、支持使用 Qemu + Chroot 跨运行 Wine 以及指定程序的功能;\n※2、提供了简易打包器以用于打包简易 deb;\n※3、支持下载配置过的 Qemu + Chroot 容器;\n※4、支持解压指定 deb 的内打包好的容器;\n※5、优化 Wine 列表显示;\n※6、新增程序论坛和教程入口;\n7、优化非基于生态适配脚本的打包器内容自动填充功能;\n8、优化程序文案;\n9、新增日志翻译功能;\n10、程序进一步完善英语翻译(机翻);\n11、优化程序更新策略;\n12、优化日志分析功能;\n13、新增程序评分功能。\n": "※ 1 support using Qemu + Chroot run across the Wine and the function of the designated procedures;\n※ 2 provides a simple packaging machine for packaging simple deb;\n※ 3 support download Qemu + Chroot container configuration before;\n※ 4 support decompression specified deb packed in containers;\n※ 5 optimize Wine list;\n※ 6 new BBS and tutorial entrance program;\n7, an optimization based on ecological adaptation that pack the script content automatically filled function;\n8, optimization copywriting program;\n9, new log function;\n10, program, we will further improve the English translation (machine);\n11, optimization program update strategy;\n12, optimization of log analysis function;\n13, the new scoring function.", "获取程序公告": "Access to program announcement", "※1、支持使用 Qemu + Chroot 跨运行 Wine 以及指定程序的功能;\n※2、提供了简易打包器以用于打包简易 deb;\n※3、支持下载配置过的 Qemu + Chroot 容器;\n※4、支持在隔离的 Chroot 容器内运行 Wine;\n※5、支持解压指定 deb 的内打包好的容器;\n※6、优化 Wine 列表显示;\n※7、新增程序论坛和教程入口;\n※8、程序公告功能;\n※9、新增程序评分功能;\n※10、新增解包 deb 内 Wine 容器功能;\n※11、新增 Vkd3d Proton 安装功能,更新 dxvk 版本至 2.0.0;\n※12、新增程序菜单栏部分栏目图标;\n13、优化非基于生态适配脚本的打包器内容自动填充功能;\n14、优化程序文案;\n15、新增日志翻译功能;\n16、程序进一步完善英语翻译(机翻);\n17、优化程序更新策略;\n18、优化日志分析功能;\n19、优化程序 UI。": "※ 1 support using Qemu + Chroot run across the Wine and the function of the designated procedures;\n※ 2 provides a simple packaging machine for packaging simple deb;\n※ 3 support download Qemu + Chroot container configuration before;\n※ 4 support running in isolated Chroot container Wine;\n※ 5 support decompression specified deb packed in containers;\n※ 6 optimize Wine list;\n※ 7 new BBS and tutorial entrance program;\n※ 8 program announcement function;\n※ 9 new program grading function;\n※ 10 new unpacking deb Wine containers within the function;\n※ 11 new Vkd3d Proton installation function, update DXVK version to 2.0.0;\n※ 12 new program menu bar section column icon;\n13, an optimization based on the ecological adaptation that pack the script content automatically filled function;\n14, optimization copywriting program;\n15, new log function;\n16, program, we will further improve the English translation (machine);\n17, optimization program update strategy;\n18, optimization of log analysis function;\n19, optimization program UI.", "快捷方式管理工具": "Shortcut management tools", "run_v3.sh 管理": "Run_v3. Sh management", "安装/卸载 Vkd3d": "Install/uninstall Vkd3d", "安装 Vkd3d": "Install Vkd3d", "卸载 Vkd3d": "Uninstall Vkd3d", "启用/禁止指定 wine 容器生成快捷方式": "Enable/designated wine containers generated shortcut is prohibited", "启用/禁止指定 wine 容器创建文件关联": "Enable/designated wine containers to create file associations is prohibited", "允许指定 wine 容器创建文件关联": "Allows you to specify wine containers to create file associations", "禁止指定 wine 容器创建文件关联": "Designated wine containers to create file associations is prohibited"}
\ No newline at end of file
diff --git a/违反开源协议应用事例.md b/违反开源协议应用事例.md
new file mode 100755
index 0000000..579eec9
--- /dev/null
+++ b/违反开源协议应用事例.md
@@ -0,0 +1,3 @@
+下面将会详细标注违反本程序 GPLV3 开源协议的应用以及其违反代码和来源  
+
+# 超级 Wine
\ No newline at end of file