Skip to content

Commit 7c052a9

Browse files
authored
Update repo name and URL in CONTRIBUTING docs (home-assistant#2210)
<!-- Thank you for submitting a Pull Request and helping to improve Home Assistant. Please complete the following sections to help the processing and review of your changes. Please do not delete anything from this template. --> ## Summary <!-- Provide a brief summary of the changes you have made and most importantly what they aim to achieve --> This clarifies in the contributing docs which project is being contributed to and which repo to work against - previously it said just "Home Assistant" which could be confusing. This also updates the repo URL in the contributing docs and at the same time several code comments that also used the older repo URL. ## Screenshots <!-- If this is a user-facing change not in the frontend, please include screenshots in light and dark mode. --> ## Link to pull request in Documentation repository <!-- Pull requests that add, change or remove functionality must have a corresponding pull request in the Companion App Documentation repository (https://github.com/home-assistant/companion.home-assistant). Please add the number of this pull request after the "#" --> Documentation: home-assistant/companion.home-assistant# ## Any other notes <!-- If there is any other information of note, like if this Pull Request is part of a bigger change, please include it here. -->
1 parent ef9e0f3 commit 7c052a9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Contributing to Home Assistant
1+
# Contributing to Home Assistant for Apple Platforms
22

33
- Read [How to get faster PR reviews](https://github.com/kubernetes/community/blob/master/contributors/guide/pull-requests.md#best-practices-for-faster-reviews) by Kubernetes (but skip step 0)
4-
- Fork the Home Assistant [git repository](https://github.com/home-assistant/home-assistant-iOS).
4+
- Fork the Home Assistant iOS [git repository](https://github.com/home-assistant/iOS).
55
- Write the code.
66
- Ensure tests work.
7-
- Create a Pull Request against the [**master**](https://github.com/home-assistant/home-assistant-iOS/tree/master) branch of Home Assistant.
7+
- Create a Pull Request against the [**master**](https://github.com/home-assistant/iOS/tree/master) branch of Home Assistant iOS.
88
- **Translations** are handled by [lokalise.com](https://lokalise.com/public/834452985a05254348aee2.46389241/), we are always looking to add more translations and complete the ones we already have. If you would like to contribute to the translation of the app, please visit [lokalise.com](https://lokalise.com/public/834452985a05254348aee2.46389241/) and join the team.
99

1010
## Learn Swift

Sources/App/ZoneManager/ZoneManagerProcessor.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class ZoneManagerProcessorImpl: ZoneManagerProcessor {
166166
if let current = Current.connectivity.currentWiFiSSID(), zone.SSIDFilter.contains(current) {
167167
// If current SSID is in the filter list stop processing region event.
168168
// This is to cut down on false exits.
169-
// https://github.com/home-assistant/home-assistant-iOS/issues/32
169+
// https://github.com/home-assistant/iOS/issues/32
170170
return ignore(.ignoredSSID(current))
171171
}
172172

Sources/Shared/API/Models/WebhookUpdateLocation.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public struct WebhookUpdateLocation: ImmutableMappable {
7171
}
7272

7373
#if os(iOS)
74-
// https://github.com/home-assistant/home-assistant-iOS/issues/32
74+
// https://github.com/home-assistant/iOS/issues/32
7575
if let currentSSID = Current.connectivity.currentWiFiSSID(), zone.SSIDTrigger.contains(currentSSID) {
7676
self.location = zone.center
7777
self.locationName = zone.Name

0 commit comments

Comments
 (0)