Skip to content

Commit 36e8ce9

Browse files
feat: rename
1 parent 0da8f98 commit 36e8ce9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pipeline {
77
stages {
88
stage('Checkout') {
99
steps {
10-
git branch: env.BRANCH_NAME, credentialsId: 'GitHub PAT', url: 'https://github.com/nullinside-development-group/twitch-streaming-tools.git'
10+
git branch: env.BRANCH_NAME, credentialsId: 'GitHub PAT', url: 'https://github.com/nullinside-development-group/nullinside-twitch-streaming-tools.git'
1111
}
1212
}
1313

src/Nullinside.TwitchStreamingTools/ViewModels/NewVersionWindowViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public NewVersionWindowViewModel() {
4646
// asynchronously determine the current version number.
4747
Task.Factory.StartNew(async () => {
4848
GithubLatestReleaseJson? version =
49-
await GitHubUpdateManager.GetLatestVersion("nullinside-development-group", "twitch-streaming-tools").ConfigureAwait(false);
49+
await GitHubUpdateManager.GetLatestVersion("nullinside-development-group", "nullinside-twitch-streaming-tools").ConfigureAwait(false);
5050

5151
if (null == version) {
5252
return;

src/Nullinside.TwitchStreamingTools/Views/MainWindow.axaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected override void OnInitialized() {
4545
// handle the command line arguments for updating the application if applicable.
4646
string[] args = Environment.GetCommandLineArgs();
4747
if (args.Contains("--update")) {
48-
_ = GitHubUpdateManager.PerformUpdateAndRestart("nullinside-development-group", "twitch-streaming-tools", args[2].Trim('"').Trim(), "twitch-streaming-tools.zip");
48+
_ = GitHubUpdateManager.PerformUpdateAndRestart("nullinside-development-group", "nullinside-twitch-streaming-tools", args[2].Trim('"').Trim(), "twitch-streaming-tools.zip");
4949
return;
5050
}
5151

@@ -56,7 +56,7 @@ protected override void OnInitialized() {
5656
// check for a new version of the application.
5757
Task.Factory.StartNew(async () => {
5858
GithubLatestReleaseJson? serverVersion =
59-
await GitHubUpdateManager.GetLatestVersion("nullinside-development-group", "twitch-streaming-tools").ConfigureAwait(false);
59+
await GitHubUpdateManager.GetLatestVersion("nullinside-development-group", "nullinside-twitch-streaming-tools").ConfigureAwait(false);
6060
if (null == serverVersion || string.IsNullOrWhiteSpace(serverVersion.name)) {
6161
return;
6262
}

0 commit comments

Comments
 (0)