Skip to content

Commit d3bae0f

Browse files
committed
chore: update some old links
1 parent b839ccb commit d3bae0f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Before contributing to this specific repository, please read the [Contribution G
66

77
This repository uses the following branches:
88

9-
- **_master_** is our main branch. We consider it stable and it is used in production.
9+
- **_main_** is our main branch. We consider it stable and it is used in production.
1010
- The **_releaseXX_** branches are our in-development branches. When a release is ready, we decide to “freeze” that branch and create a new **_releaseXX+1_** branch.
1111

1212
We require contributions to be based based on the latest **_release\*_** branch.

packages/documentation/docs/for-developers/for-blueprint-developers/manipulating-ingest-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Manipulating Ingest Data
22

3-
In Sofie we receive the rundown from an NRCS in the form of the `IngestRundown`, `IngestSegment` and `IngestPart` types. ([Source Code](https://github.com/nrkno/sofie-core/blob/master/packages/shared-lib/src/peripheralDevice/ingest.ts))
3+
In Sofie we receive the rundown from an NRCS in the form of the `IngestRundown`, `IngestSegment` and `IngestPart` types. ([Source Code](https://github.com/Sofie-Automation/sofie-core/blob/master/packages/shared-lib/src/peripheralDevice/ingest.ts))
44
These are passed into the `getRundown` or `getSegment` blueprints methods to transform them into a Rundown that Sofie can display and play.
55

66
At times it can be useful to manipulate this data before it gets passed into these methods. This wants to be done before `getSegment` in order to limit the scope of the re-generation needed. We could have made it so that `getSegment` is able to view the whole `IngestRundown`, but that would mean that any change to the `IngestRundown` would require re-generating every segment. This would be costly and could have side effects.

packages/meteor-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"bugs": {
1515
"url": "https://github.com/nrkno/sofie-core/issues"
1616
},
17-
"homepage": "https://github.com/nrkno/sofie-core/blob/master/packages/corelib#readme",
17+
"homepage": "https://github.com/nrkno/sofie-core/blob/main/packages/corelib#readme",
1818
"scripts": {
1919
"build": "run -T rimraf dist && run build:main",
2020
"build:main": "run -T tsc -p tsconfig.build.json",

packages/meteor-lib/src/collections/CoreSystem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const SYSTEM_ID: CoreSystemId = protectString('core')
1010
/**
1111
* Criticality level for service messages. Specification of criticality in server
1212
* messages from sofie-monitor:
13-
* https://github.com/nrkno/sofie-monitor/blob/master/src/data/serviceMessages/ServiceMessage.ts
13+
* https://github.com/nrkno/sofie-monitor/blob/main/src/data/serviceMessages/ServiceMessage.ts
1414
*
1515
* @export
1616
* @enum {number}

packages/webui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"bugs": {
1313
"url": "https://github.com/nrkno/sofie-core/issues"
1414
},
15-
"homepage": "https://github.com/nrkno/sofie-core/blob/master/packages/webui#readme",
15+
"homepage": "https://github.com/nrkno/sofie-core/blob/main/packages/webui#readme",
1616
"scripts": {
1717
"dev": "vite --port=3005",
1818
"build": "tsc -b && vite build",

0 commit comments

Comments
 (0)