diff options
author | 2025-03-09 17:46:18 +0100 | |
---|---|---|
committer | 2025-03-10 01:59:48 +0100 | |
commit | 9a0b4422fbea0ff52df916ffc4ce4f95871fd5c2 (patch) | |
tree | 84173f886d558d52c09cad95bce66b2414c2a41e | |
parent | [feature] Use ETag for robots.txt to prevent mishaps (#3829) (diff) | |
download | gotosocial-9a0b4422fbea0ff52df916ffc4ce4f95871fd5c2.tar.xz |
[chore] update URLs to forked source
To satisfy the requirements of the AGPL v3 license used by GoToSocial, I
must update the URLs provided by the server to point at this forked
repository, and I must do so before making the server available over any
network.
-rw-r--r-- | cmd/gotosocial/main.go | 2 | ||||
-rw-r--r-- | web/template/maintenance.tmpl | 8 | ||||
-rw-r--r-- | web/template/page_footer.tmpl | 8 |
3 files changed, 7 insertions, 11 deletions
diff --git a/cmd/gotosocial/main.go b/cmd/gotosocial/main.go index 7d45c126d..891b9cd80 100644 --- a/cmd/gotosocial/main.go +++ b/cmd/gotosocial/main.go @@ -45,7 +45,7 @@ func main() { rootCmd := &cobra.Command{ Use: "gotosocial", Short: "GoToSocial - a fediverse social media server", - Long: "GoToSocial - a fediverse social media server\n\nFor help, see: https://docs.gotosocial.org.\n\nCode: https://github.com/superseriousbusiness/gotosocial", + Long: "GoToSocial - a fediverse social media server\n\nFor help, see: https://docs.gotosocial.org.\n\nCode: https://git.terinstock.com/gotosocial.git (fork)", Version: version, PersistentPreRunE: func(cmd *cobra.Command, args []string) error { // before running any other cmd funcs, we must load config-path diff --git a/web/template/maintenance.tmpl b/web/template/maintenance.tmpl index 153130c53..5aedeaf5a 100644 --- a/web/template/maintenance.tmpl +++ b/web/template/maintenance.tmpl @@ -58,14 +58,12 @@ <ul class="nodot"> <li id="version"> <a - href="https://github.com/superseriousbusiness/gotosocial" + href="https://git.terinstock.com/gotosocial.git" class="nounderline" rel="nofollow noreferrer noopener" target="_blank" > - <span aria-hidden="true">🦥</span> - Source - GoToSocial - <span aria-hidden="true">🦥</span> + Source - GoToSocial {{ .instance.Version }} (fork) </a> </li> </ul> @@ -73,4 +71,4 @@ </footer> </div> </body> -</html>
\ No newline at end of file +</html> diff --git a/web/template/page_footer.tmpl b/web/template/page_footer.tmpl index a00f4dfde..23046ee03 100644 --- a/web/template/page_footer.tmpl +++ b/web/template/page_footer.tmpl @@ -30,14 +30,12 @@ </li> <li id="version"> <a - href="https://github.com/superseriousbusiness/gotosocial" + href="https://git.terinstock.com/gotosocial.git" class="nounderline" rel="nofollow noreferrer noopener" target="_blank" > - <span aria-hidden="true">🦥</span> - Source - GoToSocial {{ .instance.Version }} - <span aria-hidden="true">🦥</span> + Source - GoToSocial {{ .instance.Version }} (fork) </a> </li> {{- if .instance.ContactAccount }} @@ -64,4 +62,4 @@ {{- end }} </ul> </nav> -{{- end }}
\ No newline at end of file +{{- end }} |