mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
M130 pre-stage
This commit is contained in:
parent
0ec03682a0
commit
e061852f46
7 changed files with 15 additions and 8 deletions
|
@ -1 +1 @@
|
|||
START "" "%cd%\BIN\128.0.6613.194\thorium_shell.exe" --user-data-dir="%~dp0%\USER_DATA\thorium_shell" --allow-outdated-plugins --disable-logging --disable-breakpad --enable-experimental-web-platform-features --disable-encryption --disable-machine-id
|
||||
START "" "%cd%\BIN\130.0.6723.125\thorium_shell.exe" --user-data-dir="%~dp0%\USER_DATA\thorium_shell" --allow-outdated-plugins --disable-logging --disable-breakpad --enable-experimental-web-platform-features --disable-encryption --disable-machine-id
|
||||
|
|
|
@ -89,6 +89,10 @@ bool IsComponentExtensionAllowlisted(const std::string& extension_id) {
|
|||
return false;
|
||||
}
|
||||
|
||||
bool IsThoriumID(const std::string& extension_id) {
|
||||
return extension_id == kThoriumHangoutsId;
|
||||
}
|
||||
|
||||
bool IsComponentExtensionAllowlisted(int manifest_resource_id) {
|
||||
switch (manifest_resource_id) {
|
||||
// Please keep the list in alphabetical order.
|
||||
|
@ -117,6 +121,9 @@ bool IsComponentExtensionAllowlisted(int manifest_resource_id) {
|
|||
#endif // BUILDFLAG(IS_CHROMEOS)
|
||||
return true;
|
||||
}
|
||||
if (IsThoriumID)
|
||||
return true;
|
||||
}
|
||||
|
||||
LOG(ERROR) << "Component extension with manifest resource id "
|
||||
<< manifest_resource_id << " not in allowlist and is not being "
|
||||
|
|
|
@ -28,7 +28,7 @@ const wchar_t kUpdateClientsRegKey[] = L"Software\\Google\\Update\\Clients";
|
|||
const wchar_t kBrowserAppGuid[] = L"{8A69D345-D564-463c-AFF1-A69D9E530F96}";
|
||||
const wchar_t kSxSBrowserAppGuid[] = L"{4ea16ac7-fd5a-47c3-875b-dbf4a2008c20}";
|
||||
#else
|
||||
const wchar_t kInstallationRegKey[] = L"Software\\Chromium";
|
||||
const wchar_t kInstallationRegKey[] = L"Software\\Thorium";
|
||||
#endif
|
||||
|
||||
// Copied from util_constants.cc.
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
CANVAS_DIMENSIONS, 24,
|
||||
FILL_RULE_NONZERO,
|
||||
MOVE_TO, 15.12f, 3.17f,
|
||||
MOVE_TO, 14.80f, 3.17f,
|
||||
R_ARC_TO, 0.92f, 0.92f, 0, 1, 1, 1.3f, 1.3f,
|
||||
R_LINE_TO, -7.1f, 7.1f,
|
||||
R_CUBIC_TO, -0.24f, 0.24f, -0.24f, 0.63f, 0, 0.87f,
|
||||
|
@ -13,5 +13,5 @@ R_LINE_TO, 7.1f, 7.1f,
|
|||
R_ARC_TO, 0.92f, 0.92f, 0, 1, 1, -1.3f, 1.3f,
|
||||
R_LINE_TO, -7.1f, -7.1f,
|
||||
R_ARC_TO, 2.45f, 2.45f, 0, 0, 1, 0, -3.47f,
|
||||
R_LINE_TO, 7.1f, -7.1f,
|
||||
//R_LINE_TO, 7.1f, -7.1f,
|
||||
CLOSE
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
CANVAS_DIMENSIONS, 24,
|
||||
FILL_RULE_NONZERO,
|
||||
MOVE_TO, 8.88f, 3.17f,
|
||||
MOVE_TO, 9.20f, 3.17f,
|
||||
R_ARC_TO, 0.92f, 0.92f, 0, 0, 0, -1.3f, 1.3f,
|
||||
R_LINE_TO, 7.1f, 7.1f,
|
||||
R_CUBIC_TO, 0.24f, 0.24f, 0.24f, 0.63f, 0, 0.87f,
|
||||
|
@ -13,5 +13,5 @@ R_LINE_TO, -7.1f, 7.1f,
|
|||
R_ARC_TO, 0.92f, 0.92f, 0, 1, 0, 1.3f, 1.3f,
|
||||
R_LINE_TO, 7.1f, -7.1f,
|
||||
R_ARC_TO, 2.45f, 2.45f, 0, 0, 0, 0, -3.47f,
|
||||
LINE_TO, 8.88f, 3.17f,
|
||||
//LINE_TO, 8.88f, 3.17f,
|
||||
CLOSE
|
||||
|
|
|
@ -36,7 +36,7 @@ else
|
|||
export CR_SRC_DIR
|
||||
fi
|
||||
|
||||
CR_VER="128.0.6613.194"
|
||||
CR_VER="130.0.6723.125"
|
||||
|
||||
export CR_VER &&
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ else
|
|||
export CR_SRC_DIR
|
||||
fi
|
||||
|
||||
THOR_VER="128.0.6613.194"
|
||||
THOR_VER="130.0.6723.125"
|
||||
|
||||
export THOR_VER &&
|
||||
|
||||
|
|
Loading…
Reference in a new issue