From d7a003b0bc9d98547d04973aae651c740724f5e6 Mon Sep 17 00:00:00 2001 From: TiagoDanin Date: Mon, 9 Apr 2018 17:58:10 -0300 Subject: [PATCH] :memo: Fix dead urls --- docs/api/app.md | 2 +- docs/api/frameless-window.md | 2 +- docs/api/in-app-purchase.md | 4 ++-- docs/api/synopsis.md | 4 ++-- docs/api/touch-bar-button.md | 2 +- docs/api/touch-bar-color-picker.md | 2 +- docs/api/touch-bar-group.md | 2 +- docs/api/touch-bar-label.md | 2 +- docs/api/touch-bar-popover.md | 2 +- docs/api/touch-bar-scrubber.md | 2 +- docs/api/touch-bar-segmented-control.md | 2 +- docs/api/touch-bar-slider.md | 2 +- docs/api/touch-bar-spacer.md | 2 +- docs/api/touch-bar.md | 2 +- docs/development/README.md | 8 ++++---- 15 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/api/app.md b/docs/api/app.md index d94d8d7d52c..21b013f9070 100644 --- a/docs/api/app.md +++ b/docs/api/app.md @@ -1113,7 +1113,7 @@ Sets the `image` associated with this dock icon. [LSCopyDefaultHandlerForURLScheme]: https://developer.apple.com/library/mac/documentation/Carbon/Reference/LaunchServicesReference/#//apple_ref/c/func/LSCopyDefaultHandlerForURLScheme [handoff]: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/Handoff/HandoffFundamentals/HandoffFundamentals.html [activity-type]: https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSUserActivity_Class/index.html#//apple_ref/occ/instp/NSUserActivity/activityType -[unity-requirement]: ../tutorial/desktop-environment-integration.md#unity-launcher-shortcuts-linux +[unity-requirement]: ../tutorial/desktop-environment-integration.md#unity-launcher [mas-builds]: ../tutorial/mac-app-store-submission-guide.md [Squirrel-Windows]: https://github.com/Squirrel/Squirrel.Windows [JumpListBeginListMSDN]: https://msdn.microsoft.com/en-us/library/windows/desktop/dd378398(v=vs.85).aspx diff --git a/docs/api/frameless-window.md b/docs/api/frameless-window.md index 354349bb314..c867c99c8d1 100644 --- a/docs/api/frameless-window.md +++ b/docs/api/frameless-window.md @@ -176,4 +176,4 @@ when you right click on it a system menu will pop up. To make the context menu behave correctly on all platforms you should never use a custom context menu on draggable areas. -[ignore-mouse-events]: browser-window.md#winsetignoremouseeventsignore +[ignore-mouse-events]: browser-window.md#winsetignoremouseeventsignore-options diff --git a/docs/api/in-app-purchase.md b/docs/api/in-app-purchase.md index a07d106a3ac..e2644d1d21c 100644 --- a/docs/api/in-app-purchase.md +++ b/docs/api/in-app-purchase.md @@ -15,7 +15,7 @@ Emitted when one or more transactions have been updated. Returns: * `event` Event -* `transactions` Transaction[] - Array of [`Transaction`](structures/transaction) objects. +* `transactions` Transaction[] - Array of [`Transaction`](structures/transaction.md) objects. ## Methods @@ -35,7 +35,7 @@ You should listen for the `transactions-updated` event as soon as possible and c * `productIDs` String[] - The identifiers of the products to get. * `callback` Function - The callback called with the products or an empty array if the products don't exist. - * `products` Product[] - Array of [`Product`](structures/product) objects + * `products` Product[] - Array of [`Product`](structures/product.md) objects Retrieves the product descriptions. diff --git a/docs/api/synopsis.md b/docs/api/synopsis.md index 71ca497cc26..8f1bee83048 100644 --- a/docs/api/synopsis.md +++ b/docs/api/synopsis.md @@ -13,7 +13,7 @@ both processes. The basic rule is: if a module is [GUI][gui] or low-level system related, then it should be only available in the main process. You need to be familiar with -the concept of [main process vs. renderer process](../tutorial/quick-start.md#main-process) +the concept of [main process vs. renderer process](../tutorial/application-architecture.md#main-and-renderer-processes) scripts to be able to use those modules. The main process script is just like a normal Node.js script: @@ -43,7 +43,7 @@ extra ability to use node modules: ``` -To run your app, read [Run your app](../tutorial/quick-start.md#run-your-app). +To run your app, read [Run your app](../tutorial/first-app.md#running-your-app). ## Destructuring assignment diff --git a/docs/api/touch-bar-button.md b/docs/api/touch-bar-button.md index 461c0c51552..4f3e2906ecd 100644 --- a/docs/api/touch-bar-button.md +++ b/docs/api/touch-bar-button.md @@ -2,7 +2,7 @@ > Create a button in the touch bar for native macOS applications -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBarButton(options)` _Experimental_ diff --git a/docs/api/touch-bar-color-picker.md b/docs/api/touch-bar-color-picker.md index 04db264892a..b8dfcb7b5a3 100644 --- a/docs/api/touch-bar-color-picker.md +++ b/docs/api/touch-bar-color-picker.md @@ -2,7 +2,7 @@ > Create a color picker in the touch bar for native macOS applications -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBarColorPicker(options)` _Experimental_ diff --git a/docs/api/touch-bar-group.md b/docs/api/touch-bar-group.md index a22f5960a3f..a4731e3da12 100644 --- a/docs/api/touch-bar-group.md +++ b/docs/api/touch-bar-group.md @@ -2,7 +2,7 @@ > Create a group in the touch bar for native macOS applications -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBarGroup(options)` _Experimental_ diff --git a/docs/api/touch-bar-label.md b/docs/api/touch-bar-label.md index 82b25d3dfde..6e66f8b45bd 100644 --- a/docs/api/touch-bar-label.md +++ b/docs/api/touch-bar-label.md @@ -2,7 +2,7 @@ > Create a label in the touch bar for native macOS applications -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBarLabel(options)` _Experimental_ diff --git a/docs/api/touch-bar-popover.md b/docs/api/touch-bar-popover.md index af43d38bf74..329ead36e5d 100644 --- a/docs/api/touch-bar-popover.md +++ b/docs/api/touch-bar-popover.md @@ -2,7 +2,7 @@ > Create a popover in the touch bar for native macOS applications -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBarPopover(options)` _Experimental_ diff --git a/docs/api/touch-bar-scrubber.md b/docs/api/touch-bar-scrubber.md index 6ed6aee188e..cdf83404056 100644 --- a/docs/api/touch-bar-scrubber.md +++ b/docs/api/touch-bar-scrubber.md @@ -2,7 +2,7 @@ > Create a scrubber (a scrollable selector) -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBarScrubber(options)` _Experimental_ diff --git a/docs/api/touch-bar-segmented-control.md b/docs/api/touch-bar-segmented-control.md index b9e50e9d32d..013e0d70a9b 100644 --- a/docs/api/touch-bar-segmented-control.md +++ b/docs/api/touch-bar-segmented-control.md @@ -2,7 +2,7 @@ > Create a segmented control (a button group) where one button has a selected state -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBarSegmentedControl(options)` _Experimental_ diff --git a/docs/api/touch-bar-slider.md b/docs/api/touch-bar-slider.md index c2ba5d10683..3f6c98fcd18 100644 --- a/docs/api/touch-bar-slider.md +++ b/docs/api/touch-bar-slider.md @@ -2,7 +2,7 @@ > Create a slider in the touch bar for native macOS applications -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBarSlider(options)` _Experimental_ diff --git a/docs/api/touch-bar-spacer.md b/docs/api/touch-bar-spacer.md index e722f8a77ca..b79d4f5449c 100644 --- a/docs/api/touch-bar-spacer.md +++ b/docs/api/touch-bar-spacer.md @@ -2,7 +2,7 @@ > Create a spacer between two items in the touch bar for native macOS applications -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBarSpacer(options)` _Experimental_ diff --git a/docs/api/touch-bar.md b/docs/api/touch-bar.md index 5dba25c76fb..dafb75621e5 100644 --- a/docs/api/touch-bar.md +++ b/docs/api/touch-bar.md @@ -2,7 +2,7 @@ > Create TouchBar layouts for native macOS applications -Process: [Main](../tutorial/quick-start.md#main-process) +Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes) ### `new TouchBar(options)` _Experimental_ diff --git a/docs/development/README.md b/docs/development/README.md index 5659c72d56a..7ba7e6c37e2 100644 --- a/docs/development/README.md +++ b/docs/development/README.md @@ -1,14 +1,14 @@ # Developing Electron -These guides are intended for people working on the Electron project itself. -For guides on Electron app development, see +These guides are intended for people working on the Electron project itself. +For guides on Electron app development, see [/docs/README.md](../README.md#guides-and-tutorials). * [Code of Conduct](../../CODE_OF_CONDUCT.md) * [Contributing to Electron](../../CONTRIBUTING.md) * [Issues](issues.md) * [Pull Requests](pull-requests.md) -* [Documentation Styleguide](styleguide.md) +* [Documentation Styleguide](coding-style.md#documentation) * [Source Code Directory Structure](source-code-directory-structure.md) * [Coding Style](coding-style.md) * [Using clang-format on C++ Code](clang-format.md) @@ -25,4 +25,4 @@ For guides on Electron app development, see * [Upgrading Chromium](upgrading-chromium.md) * [Upgrading Crashpad](upgrading-crashpad.md) * [Upgrading Node](upgrading-node.md) -* [Releasing](releasing.md) \ No newline at end of file +* [Releasing](releasing.md)