diff --git a/docs/api/app.md b/docs/api/app.md index 9dc1259334f0..764840dd1e42 100644 --- a/docs/api/app.md +++ b/docs/api/app.md @@ -542,6 +542,7 @@ Returns `Boolean` - Whether the call succeeded. ### `app.getJumpListSettings()` _Windows_ Returns `Object`: + * `minItems` Integer - The minimum number of items that will be shown in the Jump List (for a more detailed description of this value see the [MSDN docs][JumpListBeginListMSDN]). diff --git a/docs/api/clipboard.md b/docs/api/clipboard.md index 58f8b4613cab..a6e9392c8aa3 100644 --- a/docs/api/clipboard.md +++ b/docs/api/clipboard.md @@ -79,6 +79,7 @@ Writes the `text` into the clipboard in RTF. ### `clipboard.readBookmark()` _macOS_ _Windows_ Returns `Object`: + * `title` String * `url` String diff --git a/docs/api/crash-reporter.md b/docs/api/crash-reporter.md index 2887577101ec..20ee2c26ac64 100644 --- a/docs/api/crash-reporter.md +++ b/docs/api/crash-reporter.md @@ -57,6 +57,7 @@ crash reports. ### `crashReporter.getLastCrashReport()` Returns `Object`: + * `date` String * `ID` Integer @@ -66,6 +67,7 @@ sent or the crash reporter has not been started, `null` is returned. ### `crashReporter.getUploadedReports()` Returns `Object[]`: + * `date` String * `ID` Integer diff --git a/docs/api/process.md b/docs/api/process.md index 1dff88377a4d..3fe90fc06d33 100644 --- a/docs/api/process.md +++ b/docs/api/process.md @@ -84,6 +84,7 @@ limit, whichever is lower for the current process. ### `process.getProcessMemoryInfo()` Returns `Object`: + * `workingSetSize` Integer - The amount of memory currently pinned to actual physical RAM. * `peakWorkingSetSize` Integer - The maximum amount of memory that has ever been pinned @@ -99,6 +100,7 @@ that all statistics are reported in Kilobytes. ### `process.getSystemMemoryInfo()` Returns `Object`: + * `total` Integer - The total amount of physical memory in Kilobytes available to the system. * `free` Integer - The total amount of memory not being used by applications or disk diff --git a/docs/api/screen.md b/docs/api/screen.md index 2467b646db72..f366cddf2402 100644 --- a/docs/api/screen.md +++ b/docs/api/screen.md @@ -90,6 +90,7 @@ The `screen` module has the following methods: ### `screen.getCursorScreenPoint()` Returns `Object`: + * `x` Integer * `y` Integer diff --git a/docs/api/web-frame.md b/docs/api/web-frame.md index 663c3fd5e5fc..eae07a92de17 100644 --- a/docs/api/web-frame.md +++ b/docs/api/web-frame.md @@ -124,6 +124,7 @@ this limitation. ### `webFrame.getResourceUsage()` Returns `Object`: + * `images` [MemoryUsageDetails](structures/memory-usage-details.md) * `cssStyleSheets` [MemoryUsageDetails](structures/memory-usage-details.md) * `xslStyleSheets` [MemoryUsageDetails](structures/memory-usage-details.md) diff --git a/docs/api/window-open.md b/docs/api/window-open.md index cbe3aed23029..2c0d9cb45300 100644 --- a/docs/api/window-open.md +++ b/docs/api/window-open.md @@ -26,6 +26,7 @@ The `features` string follows the format of standard browser, but each feature has to be a field of `BrowserWindow`'s options. **Notes:** + * Node integration will always be disabled in the opened `window` if it is disabled on the parent window. * Non-standard features (that are not handled by Chromium or Electron) given in