summaryrefslogtreecommitdiff
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
parentf1c7a3d3e666b4e0dee06d7739c77663de100386 (diff)
remove tboox.org
-rw-r--r--README.md2
-rw-r--r--README_zh.md2
-rwxr-xr-xconfigure2
-rwxr-xr-xscripts/get.sh2
-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
9 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 48011b2a9..ad2418ecd 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
<div align="center">
<a href="https://xmake.io">
- <img width="160" height="160" src="https://tboox.org/static/img/xmake/logo256c.png">
+ <img width="160" height="160" src="https://xmake.io/assets/img/logo.png">
</a>
<h1>xmake</h1>
diff --git a/README_zh.md b/README_zh.md
index 00ee7ba8b..c065378bc 100644
--- a/README_zh.md
+++ b/README_zh.md
@@ -1,6 +1,6 @@
<div align="center">
<a href="https://xmake.io/cn">
- <img width="160" height="160" src="https://tboox.org/static/img/xmake/logo256c.png">
+ <img width="160" height="160" src="https://xmake.io/assets/img/logo.png">
</a>
<h1>xmake</h1>
diff --git a/configure b/configure
index f15d99164..c9df52128 100755
--- a/configure
+++ b/configure
@@ -27,7 +27,7 @@ xmake_sh_builddir="build"
xmake_sh_version="1.0.5"
xmake_sh_verbose=false
xmake_sh_diagnosis=false
-xmake_sh_copyright="Copyright (C) 2022-present Ruki Wang, tboox.org, xmake.io."
+xmake_sh_copyright="Copyright (C) 2022-present Ruki Wang, https://xmake.io."
xmake_sh_makefile="${xmake_sh_projectdir}/Makefile"
#-----------------------------------------------------------------------------
diff --git a/scripts/get.sh b/scripts/get.sh
index 052727956..903163428 100755
--- a/scripts/get.sh
+++ b/scripts/get.sh
@@ -47,7 +47,7 @@ test_nq() {
# print a LOGO!
echo 'xmake, A cross-platform build utility based on Lua. '
-echo 'Copyright (C) 2015-present Ruki Wang, tboox.org, xmake.io'
+echo 'Copyright (C) 2015-present Ruki Wang, https://xmake.io'
echo ' _ '
echo ' __ ___ __ __ __ _| | ______ '
echo ' \ \/ / | \/ |/ _ | |/ / __ \ '
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
--