You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -49,7 +49,7 @@ public bool AutoInstallOnAppQuit
49
49
}
50
50
51
51
/// <summary>
52
-
/// *GitHub provider only.* Whether to allow update to pre-release versions.
52
+
/// *GitHub provider only.* Whether to allow update to pre-release versions.
53
53
/// Defaults to "true" if application version contains prerelease components (e.g. "0.12.1-alpha.1", here "alpha" is a prerelease component), otherwise "false".
54
54
///
55
55
/// If "true", downgrade will be allowed("allowDowngrade" will be set to "true").
@@ -67,7 +67,7 @@ public bool AllowPrerelease
67
67
}
68
68
69
69
/// <summary>
70
-
/// *GitHub provider only.*
70
+
/// *GitHub provider only.*
71
71
/// Get all release notes (from current version to latest), not just the latest (Default is false).
72
72
/// </summary>
73
73
publicboolFullChangelog
@@ -122,7 +122,7 @@ public Task<SemVer> CurrentVersionAsync
122
122
}
123
123
124
124
/// <summary>
125
-
/// Get the update channel. Not applicable for GitHub.
125
+
/// Get the update channel. Not applicable for GitHub.
126
126
/// Doesn’t return channel from the update configuration, only if was previously set.
127
127
/// </summary>
128
128
[Obsolete("Use the asynchronous version ChannelAsync instead")]
@@ -135,7 +135,7 @@ public string Channel
135
135
}
136
136
137
137
/// <summary>
138
-
/// Get the update channel. Not applicable for GitHub.
138
+
/// Get the update channel. Not applicable for GitHub.
139
139
/// Doesn’t return channel from the update configuration, only if was previously set.
140
140
/// </summary>
141
141
publicTask<string>ChannelAsync
@@ -147,7 +147,7 @@ public Task<string> ChannelAsync
147
147
}
148
148
149
149
/// <summary>
150
-
/// Set the update channel. Not applicable for GitHub.
150
+
/// Set the update channel. Not applicable for GitHub.
151
151
/// </summary>
152
152
publicstringSetChannel
153
153
{
@@ -199,7 +199,7 @@ public event Action OnCheckingForUpdate
199
199
}
200
200
201
201
/// <summary>
202
-
/// Emitted when there is an available update.
202
+
/// Emitted when there is an available update.
203
203
/// The update is downloaded automatically if AutoDownload is true.
204
204
/// </summary>
205
205
publiceventAction<UpdateInfo>OnUpdateAvailable
@@ -332,11 +332,11 @@ public Task<UpdateCheckResult> CheckForUpdatesAndNotifyAsync()
332
332
}
333
333
334
334
/// <summary>
335
-
/// Restarts the app and installs the update after it has been downloaded.
336
-
/// It should only be called after `update-downloaded` has been emitted.
337
-
///
338
-
/// Note: QuitAndInstall() will close all application windows first and only emit `before-quit` event on `app` after that.
339
-
/// This is different from the normal quit event sequence.
335
+
/// Restarts the app and installs the update after it has been downloaded.
336
+
/// It should only be called after `update-downloaded` has been emitted.
337
+
///
338
+
/// Note: QuitAndInstall() will close all application windows first and only emit `before-quit` event on `app` after that.
339
+
/// This is different from the normal quit event sequence.
340
340
/// </summary>
341
341
/// <param name="isSilent">*windows-only* Runs the installer in silent mode. Defaults to `false`.</param>
342
342
/// <param name="isForceRunAfter">Run the app after finish even on silent install. Not applicable for macOS. Ignored if `isSilent` is set to `false`.</param>
@@ -374,9 +374,5 @@ public Task<string> GetFeedURLAsync()
0 commit comments