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
Copy file name to clipboardExpand all lines: CODE_OF_CONDUCT.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
3
3
As a member project of the OpenJS Foundation, Electron uses [Contributor Covenant v2.0](https://contributor-covenant.org/version/2/0/code_of_conduct) as their code of conduct. The full text is included [below](#contributor-covenant-code-of-conduct) in English, and translations are available from the Contributor Covenant organisation:
Copy file name to clipboardExpand all lines: docs/breaking-changes.md
+26-26Lines changed: 26 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ Breaking changes will be documented here, and deprecation warnings added to JS c
6
6
7
7
This document uses the following convention to categorize breaking changes:
8
8
9
-
-**API Changed:** An API was changed in such a way that code that has not been updated is guaranteed to throw an exception.
10
-
-**Behavior Changed:** The behavior of Electron has changed, but not in such a way that an exception will necessarily be thrown.
11
-
-**Default Changed:** Code depending on the old default may break, not necessarily throwing an exception. The old behavior can be restored by explicitly specifying the value.
12
-
-**Deprecated:** An API was marked as deprecated. The API will continue to function, but will emit a deprecation warning, and will be removed in a future release.
13
-
-**Removed:** An API or feature was removed, and is no longer supported by Electron.
9
+
***API Changed:** An API was changed in such a way that code that has not been updated is guaranteed to throw an exception.
10
+
***Behavior Changed:** The behavior of Electron has changed, but not in such a way that an exception will necessarily be thrown.
11
+
***Default Changed:** Code depending on the old default may break, not necessarily throwing an exception. The old behavior can be restored by explicitly specifying the value.
12
+
***Deprecated:** An API was marked as deprecated. The API will continue to function, but will emit a deprecation warning, and will be removed in a future release.
13
+
***Removed:** An API or feature was removed, and is no longer supported by Electron.
14
14
15
15
## Planned Breaking API Changes (13.0)
16
16
@@ -48,12 +48,12 @@ For more details see: https://github.com/electron/electron/issues/23506
48
48
The following `crashReporter` methods are no longer available in the renderer
49
49
process:
50
50
51
-
-`crashReporter.start`
52
-
-`crashReporter.getLastCrashReport`
53
-
-`crashReporter.getUploadedReports`
54
-
-`crashReporter.getUploadToServer`
55
-
-`crashReporter.setUploadToServer`
56
-
-`crashReporter.getCrashesDirectory`
51
+
*`crashReporter.start`
52
+
*`crashReporter.getLastCrashReport`
53
+
*`crashReporter.getUploadedReports`
54
+
*`crashReporter.getUploadToServer`
55
+
*`crashReporter.setUploadToServer`
56
+
*`crashReporter.getCrashesDirectory`
57
57
58
58
They should be called only from the main process.
59
59
@@ -144,12 +144,12 @@ app.getPath('crashDumps')
144
144
Calling the following `crashReporter` methods from the renderer process is
145
145
deprecated:
146
146
147
-
-`crashReporter.start`
148
-
-`crashReporter.getLastCrashReport`
149
-
-`crashReporter.getUploadedReports`
150
-
-`crashReporter.getUploadToServer`
151
-
-`crashReporter.setUploadToServer`
152
-
-`crashReporter.getCrashesDirectory`
147
+
*`crashReporter.start`
148
+
*`crashReporter.getLastCrashReport`
149
+
*`crashReporter.getUploadedReports`
150
+
*`crashReporter.getUploadToServer`
151
+
*`crashReporter.setUploadToServer`
152
+
*`crashReporter.getCrashesDirectory`
153
153
154
154
The only non-deprecated methods remaining in the `crashReporter` module in the
155
155
renderer are `addExtraParameter`, `removeExtraParameter` and `getParameters`.
@@ -314,7 +314,7 @@ Clone Algorithm][SCA], the same algorithm used to serialize messages for
314
314
`postMessage`. This brings about a 2x performance improvement for large
315
315
messages, but also brings some breaking changes in behavior.
316
316
317
-
- Sending Functions, Promises, WeakMaps, WeakSets, or objects containing any
317
+
* Sending Functions, Promises, WeakMaps, WeakSets, or objects containing any
318
318
such values, over IPC will now throw an exception, instead of silently
0 commit comments