Skip to content

Commit b13ca11

Browse files
committed
Change domains to gallifrey.blyth.me.uk
1 parent 2677040 commit b13ca11

File tree

86 files changed

+105
-105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+105
-105
lines changed

.build/build.fsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Target "VersionUpdate" (fun _ ->
6868
let changeLog = XDocument.Load(changeLogPath)
6969

7070
let versionLogs = changeLog
71-
|> fun changelog -> changelog.Descendants(XName.Get("Version", "https://releases.gallifreyapp.co.uk/ChangeLog"))
71+
|> fun changelog -> changelog.Descendants(XName.Get("Version", "https://gallifrey-releases.blyth.me.uk/ChangeLog"))
7272
|> Seq.filter(fun x -> x.Attribute(XName.Get("Number")).Value = "0.0.0.0" || x.Attribute(XName.Get("Number")).Value = versionNumber)
7373

7474
if versionLogs |> Seq.isEmpty then failwithf "No change log for version 0.0.0.0 or %s" versionNumber
@@ -143,7 +143,7 @@ Target "Publish-ReleaseRepo" (fun _ ->
143143
enableProcessTracing <- false
144144
directRunGitCommandAndFail currentDirectory (sprintf "remote set-url origin https://%s:[email protected]/BlythMeister/Gallifrey.git" githubApiKey)
145145
directRunGitCommandAndFail releasesRepo (sprintf "remote set-url origin https://%s:[email protected]/BlythMeister/Gallifrey.Releases.git" githubApiKey)
146-
directRunGitCommandAndFail releasesRepo "config --global user.email \"publish@gallifreyapp.co.uk\""
146+
directRunGitCommandAndFail releasesRepo "config --global user.email \"publish@gallifrey.blyth.me.uk\""
147147
directRunGitCommandAndFail releasesRepo "config --global user.name \"Gallifrey Auto Publish\""
148148
enableProcessTracing <- true
149149

@@ -191,13 +191,13 @@ Target "Publish-ReleaseNotes" (fun _ ->
191191
let releaseVersion = if isStable then baseVersion else versionNumber
192192

193193
let versionLog = XDocument.Load(changeLogPath)
194-
|> fun changelog -> changelog.Descendants(XName.Get("Version", "https://releases.gallifreyapp.co.uk/ChangeLog"))
194+
|> fun changelog -> changelog.Descendants(XName.Get("Version", "https://gallifrey-releases.blyth.me.uk/ChangeLog"))
195195
|> Seq.filter(fun x -> x.Attribute(XName.Get("Number")).Value.StartsWith(releaseVersion))
196196
|> Seq.head
197197

198-
let features = versionLog.Descendants(XName.Get("Feature", "https://releases.gallifreyapp.co.uk/ChangeLog")) |> Seq.map(fun x -> sprintf "* %s" x.Value) |> Seq.toList
199-
let bugs = versionLog.Descendants(XName.Get("Bug", "https://releases.gallifreyapp.co.uk/ChangeLog")) |> Seq.map(fun x -> sprintf "* %s" x.Value) |> Seq.toList
200-
let others = versionLog.Descendants(XName.Get("Other", "https://releases.gallifreyapp.co.uk/ChangeLog")) |> Seq.map(fun x -> sprintf "* %s" x.Value) |> Seq.toList
198+
let features = versionLog.Descendants(XName.Get("Feature", "https://gallifrey-releases.blyth.me.uk/ChangeLog")) |> Seq.map(fun x -> sprintf "* %s" x.Value) |> Seq.toList
199+
let bugs = versionLog.Descendants(XName.Get("Bug", "https://gallifrey-releases.blyth.me.uk/ChangeLog")) |> Seq.map(fun x -> sprintf "* %s" x.Value) |> Seq.toList
200+
let others = versionLog.Descendants(XName.Get("Other", "https://gallifrey-releases.blyth.me.uk/ChangeLog")) |> Seq.map(fun x -> sprintf "* %s" x.Value) |> Seq.toList
201201
let versionName = versionLog.Attribute(XName.Get("Name"))
202202

203203
let releaseNotes = [
@@ -235,7 +235,7 @@ Target "Publish-ReleaseNotes" (fun _ ->
235235
|> fun x -> x.AppendLine("")
236236
|> fun x -> x.AppendLine(String.Join("\n", releaseNotes).Replace("# ","#### "))
237237
|> fun x -> x.AppendLine("")
238-
|> fun x -> x.AppendLine("To download the latest version of the app head to <https://www.gallifreyapp.co.uk/downloads/stable>")
238+
|> fun x -> x.AppendLine("To download the latest version of the app head to <https://gallifrey.blyth.me.uk/downloads/stable>")
239239
|> fun x -> File.WriteAllText(releasesNewsFile, x.ToString())
240240

241241
checkoutBranch currentDirectory branchName

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ open_collective: # Replace with a single Open Collective username
66
ko_fi: # Replace with a single Ko-fi username
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
88
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9-
custom: https://www.gallifreyapp.co.uk/donations/
9+
custom: https://gallifrey.blyth.me.uk/donations/

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion

README.md

Lines changed: 4 additions & 4 deletions

docs/CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
www.gallifreyapp.co.uk
1+
gallifrey.blyth.me.uk

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Basic Settings
22
title: Gallifrey App
33
description: "Get the best assistant to help manage your 'wibbily wobbly timey wimey' for Jira! A simple, light-weight Jira time logging companion to help you travel the Jira universe!"
4-
url: https://www.gallifreyapp.co.uk
4+
url: https://gallifrey.blyth.me.uk
55
logo: /images/Logo.png
66
lang: en_GB
77
enableCsp: true

docs/_includes/sidebar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h4>About Us</h4>
1111
<div>
1212
<a href="https://www.twitter.com/GallifreyApp" class="fab fa-twitter" target="_blank"></a>
1313
<a href="https://github.com/BlythMeister/Gallifrey" class="fab fa-github" target="_blank"></a>
14-
<a href="mailto:[email protected].uk" class="far fa-envelope" target="_blank"></a>
14+
<a href="mailto:[email protected].uk" class="far fa-envelope" target="_blank"></a>
1515
<a href="https://join.slack.com/t/gallifreyapp/shared_invite/zt-56jgfbj6-uT6B8fDExuewMktdIm8pdg" class="fab fa-slack" target="_blank"></a>
1616
<a href="https://www.producthunt.com/posts/gallifrey" class="fab fa-product-hunt" target="_blank"></a>
1717
<a href="https://www.producthunt.com/posts/gallifrey" class="fab fa-atlassian" target="_blank"></a>

docs/_posts/2017-12-18-release-3-7-8.md

Lines changed: 1 addition & 1 deletion

docs/_posts/2018-05-01-release-3-8-0.md

Lines changed: 1 addition & 1 deletion

docs/_posts/2018-06-23-release-3-9-0.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)