summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-07-06 20:35:03 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-07-06 20:35:03 -0600
commit168b230a68ff49ef355f4a7bdca272a7d95ab505 (patch)
treec7f3ffa3b6eb4dcc4f242642e84bfea2018096e3
parent4caf25a8c7834568ece454e179d8bd5835a51634 (diff)
Change the cgit URL to my URLHEADlukeshu/main
-rw-r--r--cgit.c2
-rw-r--r--ui-shared.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cgit.c b/cgit.c
index c4320f0..95fc819 100644
--- a/cgit.c
+++ b/cgit.c
@@ -963,7 +963,7 @@ static void cgit_parse_args(int argc, const char **argv)
for (i = 1; i < argc; i++) {
if (!strcmp(argv[i], "--version")) {
- printf("CGit %s | https://git.zx2c4.com/cgit/\n\nCompiled in features:\n", CGIT_VERSION);
+ printf("CGit %s | https://git.lukeshu.com/cgit/\n\nCompiled in features:\n", CGIT_VERSION);
#ifdef NO_LUA
printf("[-] ");
#else
diff --git a/ui-shared.c b/ui-shared.c
index ae2dea2..017cf82 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -851,7 +851,7 @@ void cgit_print_docend(void)
if (ctx.cfg.footer)
html_include(ctx.cfg.footer);
else {
- htmlf("<div class='footer'>generated by <a href='https://git.zx2c4.com/cgit/about/'>cgit %s</a> "
+ htmlf("<div class='footer'>generated by <a href='https://git.lukeshu.com/cgit/'>cgit %s</a> "
"(<a href='https://git-scm.com/'>git %s</a>) at ", cgit_version, git_version_string);
html_txt(show_date(time(NULL), 0, cgit_date_mode(DATE_ISO8601)));
html("</div>\n");