Skip to content

Commit 626669c

Browse files
committed
efrgv
1 parent c9367dc commit 626669c

30 files changed

Lines changed: 112 additions & 112 deletions

nuke/ReleaseNotesParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private IReadOnlyList<ReleaseNotes> ParseComplexFormat(string[] lines)
8585

8686
// Parse content.
8787
var notes = new List<string>();
88-
88+
8989
while (true)
9090
{
9191
// Sanity checks.

src/ElectronNET.API/API/App.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public event Action WindowAllClosed
5858
private event Action _windowAllClosed;
5959

6060
/// <summary>
61-
/// Emitted before the application starts closing its windows.
61+
/// Emitted before the application starts closing its windows.
6262
/// <para/>
6363
/// Note: If application quit was initiated by <see cref="AutoUpdater.QuitAndInstall"/> then <see cref="BeforeQuit"/>
6464
/// is emitted after emitting close event on all windows and closing them.
@@ -557,7 +557,7 @@ public void SetPath(PathName name, string path)
557557
}
558558

559559
/// <summary>
560-
/// The version of the loaded application. If no version is found in the application’s package.json file,
560+
/// The version of the loaded application. If no version is found in the application’s package.json file,
561561
/// the version of the current bundle or executable is returned.
562562
/// </summary>
563563
/// <returns>The version of the loaded application.</returns>

src/ElectronNET.API/API/AutoUpdater.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public bool AutoInstallOnAppQuit
4949
}
5050

5151
/// <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.
5353
/// Defaults to "true" if application version contains prerelease components (e.g. "0.12.1-alpha.1", here "alpha" is a prerelease component), otherwise "false".
5454
///
5555
/// If "true", downgrade will be allowed("allowDowngrade" will be set to "true").
@@ -67,7 +67,7 @@ public bool AllowPrerelease
6767
}
6868

6969
/// <summary>
70-
/// *GitHub provider only.*
70+
/// *GitHub provider only.*
7171
/// Get all release notes (from current version to latest), not just the latest (Default is false).
7272
/// </summary>
7373
public bool FullChangelog
@@ -122,7 +122,7 @@ public Task<SemVer> CurrentVersionAsync
122122
}
123123

124124
/// <summary>
125-
/// Get the update channel. Not applicable for GitHub.
125+
/// Get the update channel. Not applicable for GitHub.
126126
/// Doesn’t return channel from the update configuration, only if was previously set.
127127
/// </summary>
128128
[Obsolete("Use the asynchronous version ChannelAsync instead")]
@@ -135,7 +135,7 @@ public string Channel
135135
}
136136

137137
/// <summary>
138-
/// Get the update channel. Not applicable for GitHub.
138+
/// Get the update channel. Not applicable for GitHub.
139139
/// Doesn’t return channel from the update configuration, only if was previously set.
140140
/// </summary>
141141
public Task<string> ChannelAsync
@@ -147,7 +147,7 @@ public Task<string> ChannelAsync
147147
}
148148

149149
/// <summary>
150-
/// Set the update channel. Not applicable for GitHub.
150+
/// Set the update channel. Not applicable for GitHub.
151151
/// </summary>
152152
public string SetChannel
153153
{
@@ -199,7 +199,7 @@ public event Action OnCheckingForUpdate
199199
}
200200

201201
/// <summary>
202-
/// Emitted when there is an available update.
202+
/// Emitted when there is an available update.
203203
/// The update is downloaded automatically if AutoDownload is true.
204204
/// </summary>
205205
public event Action<UpdateInfo> OnUpdateAvailable

src/ElectronNET.API/API/BrowserWindow.cs

Lines changed: 53 additions & 53 deletions
Large diffs are not rendered by default.

src/ElectronNET.API/API/Clipboard.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ public void WriteRTF(string text, string type = "")
9393
}
9494

9595
/// <summary>
96-
/// Returns an Object containing title and url keys representing
97-
/// the bookmark in the clipboard. The title and url values will
96+
/// Returns an Object containing title and url keys representing
97+
/// the bookmark in the clipboard. The title and url values will
9898
/// be empty strings when the bookmark is unavailable.
9999
/// </summary>
100100
/// <returns></returns>
@@ -104,7 +104,7 @@ public void WriteRTF(string text, string type = "")
104104
/// Writes the title and url into the clipboard as a bookmark.
105105
///
106106
/// Note: Most apps on Windows don’t support pasting bookmarks
107-
/// into them so you can use clipboard.write to write both a
107+
/// into them so you can use clipboard.write to write both a
108108
/// bookmark and fallback text to the clipboard.
109109
/// </summary>
110110
/// <param name="title"></param>
@@ -124,7 +124,7 @@ public void WriteBookmark(string title, string url, string type = "")
124124
public Task<string> ReadFindTextAsync() => GetPropertyAsync<string>();
125125

126126
/// <summary>
127-
/// macOS: Writes the text into the find pasteboard as plain text. This method uses
127+
/// macOS: Writes the text into the find pasteboard as plain text. This method uses
128128
/// synchronous IPC when called from the renderer process.
129129
/// </summary>
130130
/// <param name="text"></param>

src/ElectronNET.API/API/Dialog.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ internal static Dialog Instance
3737
}
3838

3939
/// <summary>
40-
/// Note: On Windows and Linux an open dialog can not be both a file selector
41-
/// and a directory selector, so if you set properties to ['openFile', 'openDirectory']
40+
/// Note: On Windows and Linux an open dialog can not be both a file selector
41+
/// and a directory selector, so if you set properties to ['openFile', 'openDirectory']
4242
/// on these platforms, a directory selector will be shown.
4343
/// </summary>
4444
/// <param name="browserWindow">The browserWindow argument allows the dialog to attach itself to a parent window, making it modal.</param>
@@ -167,9 +167,9 @@ public Task<MessageBoxResult> ShowMessageBoxAsync(BrowserWindow browserWindow, M
167167
/// <summary>
168168
/// Displays a modal dialog that shows an error message.
169169
///
170-
/// This API can be called safely before the ready event the app module emits,
171-
/// it is usually used to report errors in early stage of startup.If called
172-
/// before the app readyevent on Linux, the message will be emitted to stderr,
170+
/// This API can be called safely before the ready event the app module emits,
171+
/// it is usually used to report errors in early stage of startup.If called
172+
/// before the app readyevent on Linux, the message will be emitted to stderr,
173173
/// and no GUI dialog will appear.
174174
/// </summary>
175175
/// <param name="title">The title to display in the error box.</param>
@@ -181,7 +181,7 @@ public void ShowErrorBox(string title, string content)
181181

182182
/// <summary>
183183
/// On macOS, this displays a modal dialog that shows a message and certificate information,
184-
/// and gives the user the option of trusting/importing the certificate. If you provide a
184+
/// and gives the user the option of trusting/importing the certificate. If you provide a
185185
/// browserWindow argument the dialog will be attached to the parent window, making it modal.
186186
/// </summary>
187187
/// <param name="options"></param>
@@ -193,7 +193,7 @@ public Task ShowCertificateTrustDialogAsync(CertificateTrustDialogOptions option
193193

194194
/// <summary>
195195
/// On macOS, this displays a modal dialog that shows a message and certificate information,
196-
/// and gives the user the option of trusting/importing the certificate. If you provide a
196+
/// and gives the user the option of trusting/importing the certificate. If you provide a
197197
/// browserWindow argument the dialog will be attached to the parent window, making it modal.
198198
/// </summary>
199199
/// <param name="browserWindow"></param>

src/ElectronNET.API/API/Electron.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public static Clipboard Clipboard
140140
/// <summary>
141141
/// Allows you to execute native JavaScript/TypeScript code from the host process.
142142
///
143-
/// It is only possible if the Electron.NET CLI has previously added an
143+
/// It is only possible if the Electron.NET CLI has previously added an
144144
/// ElectronHostHook directory:
145145
/// <c>electronize add HostHook</c>
146146
/// </summary>
@@ -153,7 +153,7 @@ public static HostHook HostHook
153153
}
154154

155155
/// <summary>
156-
/// Allows you to execute native Lock and Unlock process.
156+
/// Allows you to execute native Lock and Unlock process.
157157
/// </summary>
158158
public static PowerMonitor PowerMonitor
159159
{

src/ElectronNET.API/API/Entities/CPUUsage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class CPUUsage
1111
public double PercentCPUUsage { get; set; }
1212

1313
/// <summary>
14-
/// The number of average idle cpu wakeups per second since the last call to
14+
/// The number of average idle cpu wakeups per second since the last call to
1515
/// getCPUUsage.First call returns 0.
1616
/// </summary>
1717
public int IdleWakeupsPerSecond { get; set; }

src/ElectronNET.API/API/Entities/CookieChangedCause.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace ElectronNET.API.Entities
44
{
55
/// <summary>
6-
/// The cause of the change
6+
/// The cause of the change
77
/// </summary>
88
public enum CookieChangedCause
99
{

src/ElectronNET.API/API/Entities/CookieDetails.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class CookieDetails
4949
public bool HttpOnly { get; set; }
5050

5151
/// <summary>
52-
/// (optional) - The expiration date of the cookie as the number of seconds since the UNIX epoch.
52+
/// (optional) - The expiration date of the cookie as the number of seconds since the UNIX epoch.
5353
/// If omitted then the cookie becomes a session cookie and will not be retained between sessions.
5454
/// </summary>
5555
[DefaultValue(0)]

0 commit comments

Comments
 (0)