summaryrefslogtreecommitdiff
path: root/xmake
diff options
context:
space:
mode:
authorruki <[email protected]>2025-07-03 23:01:48 +0800
committerruki <[email protected]>2025-07-03 23:01:48 +0800
commitd7fefefea5959ae89694891b2a034ec274eb2fe3 (patch)
treec626025fdbbafe3e9fb70a898eebd28755be52f3 /xmake
parentf1c7a3d3e666b4e0dee06d7739c77663de100386 (diff)
remove tboox.org
Diffstat (limited to 'xmake')
-rw-r--r--xmake/core/main.lua2
-rw-r--r--xmake/modules/private/xrepo/main.lua2
-rw-r--r--xmake/modules/utils/wdk/testcert.lua4
-rw-r--r--xmake/rules/wdk/sign/sign.lua2
-rw-r--r--xmake/rules/wdk/sign/xmake.lua2
5 files changed, 6 insertions, 6 deletions
diff --git a/xmake/core/main.lua b/xmake/core/main.lua
index 4cbffc98a..055675183 100644
--- a/xmake/core/main.lua
+++ b/xmake/core/main.lua
@@ -46,7 +46,7 @@ local debugger = require("base/debugger")
local menu =
{
title = "${bright}xmake v" .. _VERSION .. ", A cross-platform build utility based on " .. (xmake._LUAJIT and "LuaJIT" or "Lua") .. "${clear}"
-, copyright = "Copyright (C) 2015-present Ruki Wang, ${underline}tboox.org${clear}, ${underline}xmake.io${clear}"
+, copyright = "Copyright (C) 2015-present Ruki Wang, ${underline}https://xmake.io${clear}"
-- the tasks: xmake [task]
, function ()
diff --git a/xmake/modules/private/xrepo/main.lua b/xmake/modules/private/xrepo/main.lua
index 986860fab..61d69c0d4 100644
--- a/xmake/modules/private/xrepo/main.lua
+++ b/xmake/modules/private/xrepo/main.lua
@@ -29,7 +29,7 @@ function _show_version()
cprint("${bright}xRepo %s/xmake, A cross-platform C/C++ package manager based on Xmake.", xmake.version())
-- show copyright
- cprint("Copyright (C) 2015-present Ruki Wang, ${underline}tboox.org${clear}, ${underline}xmake.io${clear}")
+ cprint("Copyright (C) 2015-present Ruki Wang, ${underline}https://xmake.io${clear}")
print("")
-- show logo
diff --git a/xmake/modules/utils/wdk/testcert.lua b/xmake/modules/utils/wdk/testcert.lua
index 696533efe..59c144f5b 100644
--- a/xmake/modules/utils/wdk/testcert.lua
+++ b/xmake/modules/utils/wdk/testcert.lua
@@ -62,7 +62,7 @@ function _install(wdk)
if not os.isfile(tmpfile) then
os.cp(os.programfile(), tmpfile)
end
- os.vrunv(signtool, {"sign", "/v", "/a", "/s", "PrivateCertStore", "/n", "tboox.org(test)", tmpfile})
+ os.vrunv(signtool, {"sign", "/v", "/a", "/s", "PrivateCertStore", "/n", "xmake.io(test)", tmpfile})
return true
end
}
@@ -78,7 +78,7 @@ function _install(wdk)
-- get a test certificate
local testcer = path.join(global.directory(), "sign", "test.cer")
- local company = "tboox.org(test)"
+ local company = "xmake.io(test)"
-- make a new test certificate @note need re-generate certificate when reinstalling
local signdir = path.directory(testcer)
diff --git a/xmake/rules/wdk/sign/sign.lua b/xmake/rules/wdk/sign/sign.lua
index 8bf68b53a..9e4a11198 100644
--- a/xmake/rules/wdk/sign/sign.lua
+++ b/xmake/rules/wdk/sign/sign.lua
@@ -94,7 +94,7 @@ function main(target, filepath, mode)
if mode == "test" and (not certfile and not thumbprint and not store) then
table.insert(argv, "/a")
table.insert(argv, "/n")
- table.insert(argv, "tboox.org(test)")
+ table.insert(argv, "xmake.io(test)")
table.insert(argv, "/s")
table.insert(argv, "PrivateCertStore")
end
diff --git a/xmake/rules/wdk/sign/xmake.lua b/xmake/rules/wdk/sign/xmake.lua
index 32d8fc936..72592b344 100644
--- a/xmake/rules/wdk/sign/xmake.lua
+++ b/xmake/rules/wdk/sign/xmake.lua
@@ -24,7 +24,7 @@
-- - wdk.sign.mode: nosign/test/release (default: nosign)
-- - wdk.sign.store: PrivateCertStore
-- - wdk.sign.thumbprint: 032122545DCAA6167B1ADBE5F7FDF07AE2234AAA
--- - wdk.sign.company: tboox.org
+-- - wdk.sign.company: xmake.io
-- - wdk.sign.certfile: signcert.cer
-- - wdk.sign.timestamp: http://timestamp.verisign.com/scripts/timstamp.dll
--