docs: fix broken link to commit message guidelines (#13233)

* docs: fix broken link  to commit message guidelines

* Fix another broken links
This commit is contained in:
Vlad Hashimoto 2018-06-16 03:43:03 +03:00 committed by Charles Kerr
parent 1647c12c73
commit a67c992c36
7 changed files with 26 additions and 29 deletions

4
.github/config.yml vendored
View file

@ -4,7 +4,7 @@
newIssueWelcomeComment: | newIssueWelcomeComment: |
👋 Thanks for opening your first issue here! If you're reporting a 🐞 bug, please make sure you include steps to reproduce it. We get a lot of issues on this repo, so please be patient and we will get back to you as soon as we can. 👋 Thanks for opening your first issue here! If you're reporting a 🐞 bug, please make sure you include steps to reproduce it. We get a lot of issues on this repo, so please be patient and we will get back to you as soon as we can.
To help make it easier for us to investigate your issue, please follow the [contributing guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md#submitting-issues). To help make it easier for us to investigate your issue, please follow the [contributing guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md).
# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome # Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome
@ -12,7 +12,7 @@ newIssueWelcomeComment: |
newPRWelcomeComment: | newPRWelcomeComment: |
💖 Thanks for opening this pull request! 💖 💖 Thanks for opening this pull request! 💖
We use [semantic commit messages](https://github.com/electron/electron/blob/semantic-first-pr/docs/development/pull-requests.md#commit-message-guidelines) to streamline the release process. Before your pull request can be merged, you should **update your pull request title** to start with a semantic prefix, OR prefix at least one of your commit messages. We use [semantic commit messages](https://github.com/electron/electron/blob/master/docs/development/pull-requests.md#commit-message-guidelines) to streamline the release process. Before your pull request can be merged, you should **update your pull request title** to start with a semantic prefix, OR prefix at least one of your commit messages.
Examples of commit messages with semantic prefixes: Examples of commit messages with semantic prefixes:

View file

@ -36,14 +36,13 @@ an issue:
* [Application Architecture](tutorial/application-architecture.md) * [Application Architecture](tutorial/application-architecture.md)
* [Main and Renderer Processes](tutorial/application-architecture.md#main-and-renderer-processes) * [Main and Renderer Processes](tutorial/application-architecture.md#main-and-renderer-processes)
* [Using Electron's APIs](tutorial/application-architecture.md#using-electron-apis) * [Using Electron's APIs](tutorial/application-architecture.md#using-electron-apis)
* [Using Node.js APIs](tutorial/application-architecture.md#using-node.js-apis) * [Using Node.js APIs](tutorial/application-architecture.md#using-nodejs-apis)
* [Using Native Node.js Modules](tutorial/using-native-node-modules.md) * [Using Native Node.js Modules](tutorial/using-native-node-modules.md)
* [Inter-Process Communication](tutorial/application-architecture.md#)
* Adding Features to Your App * Adding Features to Your App
* [Notifications](tutorial/notifications.md) * [Notifications](tutorial/notifications.md)
* [Recent Documents](tutorial/desktop-environment-integration.md#recent-documents-windows-mac-os) * [Recent Documents](tutorial/desktop-environment-integration.md#recent-documents)
* [Application Progress](tutorial/progress-bar.md) * [Application Progress](tutorial/progress-bar.md)
* [Custom Dock Menu](tutorial/desktop-environment-integration.md#custom-dock-menu-mac-os) * [Custom Dock Menu](tutorial/macos-dock.md)
* [Custom Windows Taskbar](tutorial/windows-taskbar.md) * [Custom Windows Taskbar](tutorial/windows-taskbar.md)
* [Custom Linux Desktop Actions](tutorial/linux-desktop-actions.md) * [Custom Linux Desktop Actions](tutorial/linux-desktop-actions.md)
* [Keyboard Shortcuts](tutorial/keyboard-shortcuts.md) * [Keyboard Shortcuts](tutorial/keyboard-shortcuts.md)
@ -82,7 +81,6 @@ an issue:
These individual tutorials expand on topics discussed in the guide above. These individual tutorials expand on topics discussed in the guide above.
* [In Detail: Installing Electron](tutorial/installation.md) * [In Detail: Installing Electron](tutorial/installation.md)
* [Global versus Local Installation](tutorial/installation.md#global-versus-local-installation)
* [Proxies](tutorial/installation.md#proxies) * [Proxies](tutorial/installation.md#proxies)
* [Custom Mirrors and Caches](tutorial/installation.md#custom-mirrors-and-caches) * [Custom Mirrors and Caches](tutorial/installation.md#custom-mirrors-and-caches)
* [Troubleshooting](tutorial/installation.md#troubleshooting) * [Troubleshooting](tutorial/installation.md#troubleshooting)

View file

@ -2,7 +2,7 @@
> Display external web content in an isolated frame and process. > Display external web content in an isolated frame and process.
Process: [Renderer](../tutorial/quick-start.md#renderer-process) Process: [Renderer](../glossary.md#renderer-process)
Use the `webview` tag to embed 'guest' content (such as web pages) in your Use the `webview` tag to embed 'guest' content (such as web pages) in your
Electron app. The guest content is contained within the `webview` container. Electron app. The guest content is contained within the `webview` container.

View file

@ -1,6 +1,5 @@
# Pull Requests # Pull Requests
* [Dependencies](#dependencies)
* [Setting up your local environment](#setting-up-your-local-environment) * [Setting up your local environment](#setting-up-your-local-environment)
* [Step 1: Fork](#step-1-fork) * [Step 1: Fork](#step-1-fork)
* [Step 2: Build](#step-2-build) * [Step 2: Build](#step-2-build)

View file

@ -26,8 +26,8 @@ apps.
Before signing macOS builds, you must do the following: Before signing macOS builds, you must do the following:
1. Enroll in the [Apple Developer Program](Apple Developer Program) (requires an annual fee) 1. Enroll in the [Apple Developer Program] (requires an annual fee)
2. Download and install Xcode 2. Download and install [Xcode]
3. Generate, download, and install [signing certificates] 3. Generate, download, and install [signing certificates]
There are a number of tools for signing your packaged app: There are a number of tools for signing your packaged app:

View file

@ -1,7 +1,7 @@
# MacOS Dock # MacOS Dock
Electron has APIs to configure the app's icon in the macOS Dock. A macOS-only Electron has APIs to configure the app's icon in the macOS Dock. A macOS-only
API exists to create a [a custom dock menu](#custom-dock-menu-mac-os), but API exists to create a custom dock menu, but
Electron also uses the app's dock icon to implement cross-platform features Electron also uses the app's dock icon to implement cross-platform features
like [recent documents][recent-documents] and like [recent documents][recent-documents] and
[application progress][progress-bar]. [application progress][progress-bar].

View file

@ -3,7 +3,7 @@
Electron has APIs to configure the app's icon in the Windows taskbar. Supported Electron has APIs to configure the app's icon in the Windows taskbar. Supported
are the [creation of a `JumpList`](#jumplist), are the [creation of a `JumpList`](#jumplist),
[custom thumbnails and toolbars](#thumbnail-toolbars), [custom thumbnails and toolbars](#thumbnail-toolbars),
[icon overlays](#icon-overlays-in-taskbar-windows), and the so-called [icon overlays](#icon-overlays-in-taskbar), and the so-called
["Flash Frame" effect](#flash-frame), but ["Flash Frame" effect](#flash-frame), but
Electron also uses the app's dock icon to implement cross-platform features Electron also uses the app's dock icon to implement cross-platform features
like [recent documents][recent-documents] and like [recent documents][recent-documents] and