1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-18 03:42:44 +02:00

Compare commits

..

No commits in common. "065b5a751bf79a5131fb980b63cca1afdd0df695" and "7a338076dba0a2a587a0a2a7d569f6f2af38ea8d" have entirely different histories.

47 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,6 @@
namespace TweetDuck { namespace TweetDuck {
internal static class Version { internal static class Version {
public const string Tag = "1.25.2"; public const string Tag = "1.25.1";
} }
} }

Binary file not shown.

View File

@ -77,8 +77,10 @@ Type: files; Name: "{app}\cef_200_percent.pak"
Type: files; Name: "{app}\cef_extensions.pak" Type: files; Name: "{app}\cef_extensions.pak"
Type: files; Name: "{app}\devtools_resources.pak" Type: files; Name: "{app}\devtools_resources.pak"
Type: files; Name: "{app}\natives_blob.bin" Type: files; Name: "{app}\natives_blob.bin"
Type: files; Name: "{app}\api-ms-win-*.dll"
Type: files; Name: "{app}\dbgshim.dll" Type: files; Name: "{app}\dbgshim.dll"
Type: files; Name: "{app}\mscordaccore_x86_x86_6.*.dll" Type: files; Name: "{app}\mscordaccore_x86_x86_6.*.dll"
Type: files; Name: "{app}\ucrtbase.dll"
Type: filesandordirs; Name: "{app}\guide" Type: filesandordirs; Name: "{app}\guide"
Type: filesandordirs; Name: "{app}\plugins\official" Type: filesandordirs; Name: "{app}\plugins\official"
Type: filesandordirs; Name: "{app}\resources" Type: filesandordirs; Name: "{app}\resources"

View File

@ -23,7 +23,6 @@ public bool Launch() {
FileName = Path, FileName = Path,
Arguments = arguments, Arguments = arguments,
Verb = runElevated ? "runas" : string.Empty, Verb = runElevated ? "runas" : string.Empty,
UseShellExecute = true,
ErrorDialog = true ErrorDialog = true
})) { })) {
return true; return true;