-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdc32ed
commit f47f004
Showing
15 changed files
with
109 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<assembly | ||
xmlns="urn:schemas-microsoft-com:asm.v1" | ||
manifestVersion="1.0"> | ||
<assemblyIdentity | ||
processorArchitecture="x86" | ||
version="5.1.0.0" | ||
type="win32" | ||
name="edge-TTS-record.exe"/> | ||
<description>edge-TTS-record</description> | ||
<dependency> | ||
<dependentAssembly> | ||
<assemblyIdentity | ||
type="win32" | ||
name="Microsoft.Windows.Common-Controls" | ||
version="6.0.0.0" | ||
publicKeyToken="6595b64144ccf1df" | ||
language="*" | ||
processorArchitecture="x86"/> | ||
</dependentAssembly> | ||
</dependency> | ||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | ||
<application> | ||
<!--Windows Vista --> | ||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> | ||
<!--Windows 7 --> | ||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | ||
<!--Windows 8 --> | ||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> | ||
<!-- Windows 8.1 --> | ||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> | ||
<!-- Windows 10 --> | ||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> | ||
</application> | ||
</compatibility> | ||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | ||
<security> | ||
<requestedPrivileges> | ||
<!-- | ||
可任选以下配置之一指定一个进程权限: | ||
<requestedExecutionLevel level="asInvoker" uiAccess="false" /> | ||
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> | ||
<requestedExecutionLevel level="highestAvailable" uiAccess="false" /> | ||
requireAdministrator 为管理员权限, | ||
highestAvailable 为可以获取到的最高权限, | ||
asInvoker 为默认值,即调用进程当前权限,一般不需要显式指定,指定后会禁用虚拟化。 | ||
虚拟化指Vista以后系统禁止写 Program File目录,启用虚拟化则重定向到%localappdata%\VirtualStore目录, | ||
而注册表 HKEY_LOCAL_MACHINE\Software 则重定向到HKEY_CURRENT_USER\Software\Classes\VirtualStore\MACHINE\Software | ||
--> | ||
</requestedPrivileges> | ||
</security> | ||
</trustInfo> | ||
<asmv3:application xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" > | ||
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> | ||
<dpiAware>True/PM</dpiAware> | ||
</asmv3:windowsSettings> | ||
</asmv3:application> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
//发布前触发 | ||
import ide; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//此触发器在生成EXE以后执行 | ||
import ide; | ||
import fsys; | ||
|
||
//获取生成的EXE文件路径 | ||
var publishFile = ide.getPublishPath(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
801102483 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<project ver="10" name="edge-TTS-record" libEmbed="true" icon="..." ui="win" output="edge-TTS-record.exe" CompanyName="单位名称" FileDescription="edge-TTS-record" LegalCopyright="Copyright (C) 作者 2021" ProductName="edge-TTS-record" InternalName="edge-TTS-record" FileVersion="0.0.0.1" ProductVersion="0.0.0.1" publishDir="/dist/" dstrip="false"> | ||
<project ver="10" name="edge-TTS-record" libEmbed="true" icon="E:\data\20200218100823254_easyicon_net_64.ico" ui="win" output="edge-TTS-record.exe" CompanyName="单位名称" FileDescription="edge-TTS-record" LegalCopyright="Copyright (C) 作者 2021" ProductName="edge-TTS-record" InternalName="edge-TTS-record" FileVersion="0.0.0.1" ProductVersion="0.0.0.1" publishDir="/dist/" dstrip="false" local="false" ignored="false"> | ||
<file name="main.aardio" path="main.aardio" comment="main.aardio"/> | ||
<folder name="资源文件" path="res" embed="true"/> | ||
<folder name="窗体文件" path="dlg" comment="目录" embed="true"/> | ||
<folder name="资源文件" path="res" embed="true" local="false" ignored="false"> | ||
<file name="favicon.ico" path="res\favicon.ico" comment="res\favicon.ico"/> | ||
<file name="index.html" path="res\index.html" comment="res\index.html"/> | ||
<folder name="css" path="res\css" comment="res\css" local="false" embed="false" ignored="false"> | ||
<file name="chunk-vendors.30cd8522.css" path="res\css\chunk-vendors.30cd8522.css" comment="res\css\chunk-vendors.30cd8522.css"/> | ||
</folder> | ||
<folder name="js" path="res\js" comment="res\js"> | ||
<file name="app.5d183bbe.js" path="res\js\app.5d183bbe.js" comment="res\js\app.5d183bbe.js"/> | ||
<file name="app.5d183bbe.js.map" path="res\js\app.5d183bbe.js.map" comment="res\js\app.5d183bbe.js.map"/> | ||
<file name="chunk-vendors.37ca2be4.js" path="res\js\chunk-vendors.37ca2be4.js" comment="res\js\chunk-vendors.37ca2be4.js"/> | ||
<file name="chunk-vendors.37ca2be4.js.map" path="res\js\chunk-vendors.37ca2be4.js.map" comment="res\js\chunk-vendors.37ca2be4.js.map"/> | ||
</folder> | ||
</folder> | ||
<folder name="窗体文件" path="dlg" comment="目录" embed="true" local="false" ignored="false"/> | ||
</project> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="favicon.ico"><title>tts-record-html</title><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css"><link href="css/chunk-vendors.30cd8522.css" rel="preload" as="style"><link href="js/app.5d183bbe.js" rel="preload" as="script"><link href="js/chunk-vendors.37ca2be4.js" rel="preload" as="script"><link href="css/chunk-vendors.30cd8522.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but tts-record-html doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="js/chunk-vendors.37ca2be4.js"></script><script src="js/app.5d183bbe.js"></script></body></html> | ||
<!DOCTYPE html><html lang="zh-cn" style="overflow-y: auto;"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="favicon.ico"><title>tts-record-html</title><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css"><link href="css/chunk-vendors.30cd8522.css" rel="preload" as="style"><link href="js/app.c0d949ef.js" rel="preload" as="script"><link href="js/chunk-vendors.cdd7361f.js" rel="preload" as="script"><link href="css/chunk-vendors.30cd8522.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but tts-record-html doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="js/chunk-vendors.cdd7361f.js"></script><script src="js/app.c0d949ef.js"></script></body></html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.