Skip to content

Commit 65c070b

Browse files
committed
fix: fix more edit paths
1 parent ff945c5 commit 65c070b

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
## Getting started
66

7-
These docs aim to be a hybrid solution of Markdown bases guides and dynamically generated docs for API references using the existing [apidoc](https://github.com/tidev/titanium-sdk/tree/master/apidoc) from Titanium.
7+
These docs aim to be a hybrid solution of Markdown bases guides and dynamically generated docs for API references using the existing [apidoc](https://github.com/tidev/titanium-sdk/tree/main/apidoc) from Titanium.
88

99
### Installation
1010

@@ -99,7 +99,7 @@ module.exports = {
9999

100100
### Adding API docs
101101

102-
In theory the `api.json` contains all required information to automatically generate markdown files. However, some APIs contain very detailed description and various examples which are just better to maintain directly in markdown files here than in their `.yaml` counterpart in Titanium's [apidoc](https://github.com/tidev/titanium-sdk/tree/master/apidoc). All other information regarding the API for a type in Titanium is then taken from the `api.json`. This creates a clear seperation of extensive documentation and simple api reference.
102+
In theory the `api.json` contains all required information to automatically generate markdown files. However, some APIs contain very detailed description and various examples which are just better to maintain directly in markdown files here than in their `.yaml` counterpart in Titanium's [apidoc](https://github.com/tidev/titanium-sdk/tree/main/apidoc). All other information regarding the API for a type in Titanium is then taken from the `api.json`. This creates a clear seperation of extensive documentation and simple api reference.
103103

104104
To automatically migrate a type over to these docs you can run the migration script.
105105

docs/guide/Alloy_Framework/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ weight: '30'
77

88
This documentation covers Alloy, an Appcelerator framework for the Titanium SDK designed to rapidly develop quality Titanium applications. It is based on the model-view-controller architecture and contains built-in support for [Backbone.js](http://docs.appcelerator.com/backbone/0.9.2/) and [Underscore.js](http://underscorejs.org/).
99

10-
Review the [Alloy Release Notes](https://github.com/tidev/alloy/blob/master/CHANGELOG.md) to see what has changed.
10+
Review the [Alloy Release Notes](https://github.com/tidev/alloy/blob/main/CHANGELOG.md) to see what has changed.
1111

1212
## Chapters
1313

docs/guide/Titanium_SDK/Titanium_SDK_Getting_Started/Installation_and_Configuration/Titanium_Compatibility_Matrix/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ The _Android SDK Manager_ installer may be obtained from the [Android Studio and
111111

112112
#### Required Android Packages
113113

114-
As of **Titanium 9.0.0**, the build system will automatically download the Android SDK platforms and tools needed. For details look at the dependencies in the main Titanium SDK repository: https://github.com/tidev/titanium-sdk/blob/master/android/package.json#L19-L28
114+
As of **Titanium 9.0.0**, the build system will automatically download the Android SDK platforms and tools needed. For details look at the dependencies in the main Titanium SDK repository: https://github.com/tidev/titanium-sdk/blob/main/android/package.json#L19-L28
115115

116116
::: warning ⚠️ Warning
117117
Take caution before upgrading these packages, as changes to the way they work has broken the Titanium toolchain a number of times in the past. Although these problems are often beyond our control, we always do our utmost to fix them as soon as we are made aware of them.

docs/guide/Titanium_SDK/Titanium_SDK_Guide/Contributing_to_Titanium/Platform_Development/Building_the_Titanium_SDK_From_Source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ git fetch upstream --prune
110110
111111
## Build the SDK
112112
113-
The method written below is the old way. The repo has now been updated to do away with scons. Please refer to [https://github.com/tidev/titanium\_mobile/blob/master/README.md#building-locally](https://github.com/tidev/titanium-sdk/blob/master/README.md#building-locally) on how to build locally with Node.JS scrips.
113+
The method written below is the old way. The repo has now been updated to do away with scons. Please refer to [https://github.com/tidev/titanium\_mobile/blob/master/README.md#building-locally](https://github.com/tidev/titanium-sdk/blob/main/README.md#building-locally) on how to build locally with Node.JS scrips.
114114
115115
In the root of your `titanium_mobile` repo, run the following commands:
116116

docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Extending_Titanium_Mobile/Android_Module_Development_Guide/Android_Module_Project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ try {
210210

211211
The Titanium SDK uses clang-format to have a unified code-style in its source-code (clang-format for iOS and Android, ESLint for the CLI). You can do the same by following the following few steps:
212212

213-
1. Copy the `.clang-format` file from [here](https://github.com/tidev/titanium-sdk/blob/master/android/.clang-format) to the "`android/`" directory of your module project, e.g. `<module-root>/ios/.clang-format`
213+
1. Copy the `.clang-format` file from [here](https://github.com/tidev/titanium-sdk/blob/main/android/.clang-format) to the "`android/`" directory of your module project, e.g. `<module-root>/ios/.clang-format`
214214

215215
2. Install the [clang-format CLI](https://clang.llvm.org/docs/ClangFormat.html): `npm install -g clang-format`
216216

docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Extending_Titanium_Mobile/iOS_Module_Development_Guide/iOS_Module_Project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ UIImage *image = [TiUtils image:url proxy:self];
248248
249249
The Titanium SDK uses clang-format to have a unified code-style in its source-code (clang-format for iOS and Android, ESLint for the CLI). You can do the same by following the following few steps:
250250
251-
1. Copy the `.clang-format` file from [here](https://github.com/tidev/titanium-sdk/blob/master/iphone/.clang-format) to the "`ios/`" directory of your module project, e.g. `<module-root>/ios/.clang-format`
251+
1. Copy the `.clang-format` file from [here](https://github.com/tidev/titanium-sdk/blob/main/iphone/.clang-format) to the "`ios/`" directory of your module project, e.g. `<module-root>/ios/.clang-format`
252252
253253
2. Install the [clang-format CLI](https://clang.llvm.org/docs/ClangFormat.html): `npm install -g clang-format`
254254

docs/guide/Titanium_SDK/Titanium_SDK_How-tos/User_Interface_Fundamentals/Icons_and_Splash_Screens/iOS_Launch_Files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ This will also change the background color of your app between after the launch
6767

6868
### Option B: Use a custom Storyboard
6969

70-
To use a custom Storyboard, put this file in [app/platform/ios/LaunchScreen.storyboard](https://github.com/tidev/titanium-sdk/blob/master/iphone/iphone/LaunchScreen.storyboard) (for Alloy projects) or [platform/ios/LaunchScreen.storyboard](https://github.com/tidev/titanium-sdk/blob/master/iphone/iphone/LaunchScreen.storyboard) (for classic projects). As you can see the sample has it disabled using a `_` prefix. Just remove the underscore and do a clean build to see the difference:
70+
To use a custom Storyboard, put this file in [app/platform/ios/LaunchScreen.storyboard](https://github.com/tidev/titanium-sdk/blob/main/iphone/iphone/LaunchScreen.storyboard) (for Alloy projects) or [platform/ios/LaunchScreen.storyboard](https://github.com/tidev/titanium-sdk/blob/main/iphone/iphone/LaunchScreen.storyboard) (for classic projects). As you can see the sample has it disabled using a `_` prefix. Just remove the underscore and do a clean build to see the difference:
7171

7272
![launch-custom](./launch-custom.png)
7373

website/pages/tdoc-spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The migration of this document is currently still a work in progress. For the or
1313
:::
1414

1515
:::tip
16-
To see an example of this spec in use, check out the documentation for [Titanium](https://github.com/tidev/titanium-sdk/blob/master/apidoc/Titanium).
16+
To see an example of this spec in use, check out the documentation for [Titanium](https://github.com/tidev/titanium-sdk/blob/main/apidoc/Titanium).
1717
:::
1818

1919
## Overview

0 commit comments

Comments
 (0)