Browse Source

Fixed some broken links

Björn Ritzl 6 năm trước cách đây
mục cha
commit
32aadd3a31
3 tập tin đã thay đổi với 7 bổ sung14 xóa
  1. 1 1
      docs/en/faq/faq.md
  2. 2 9
      docs/en/manuals/extensions-debugging.md
  3. 4 4
      docs/en/shared/install.md

+ 1 - 1
docs/en/faq/faq.md

@@ -331,7 +331,7 @@ How do I access the individual cells of a matrix (created using [vmath.matrix4()
 
 : You access the cells using `mymatrix.m11`, `mymatrix.m12`, `mymatrix.m21` etc
 
-I am getting `Not enough resources to clone the node` when using [gui.clone()](ref/gui/#gui.clone:node) or [gui.clone_tree()](/ref/gui/#gui.clone_tree:node)
+I am getting `Not enough resources to clone the node` when using [gui.clone()](/ref/gui/#gui.clone:node) or [gui.clone_tree()](/ref/gui/#gui.clone_tree:node)
 
 : Increase the `Max Nodes` value of the gui component. You find this value in the Properties panel when selecting the root of the component in the Outline.
 

+ 2 - 9
docs/en/manuals/extensions-debugging.md

@@ -38,14 +38,14 @@ Afterwards, you can get the logs from your device and analyze them.
 
 Note that Defold by default only prints using dmLog* functions in the debug build.
 
-### [Android](./extensions-debugging-android.md)
+### [Android](/manuals/extensions-debugging-android.md)
 
 On Android, the simplest way to get the log is to run `adb` in the terminal.
 You can also see the `console` inside Android Studio, which is the same thing.
 
 If you get hold of a stack trace from the Android logs, you might be able to symbolicate it using [ndk-stack](https://developer.android.com/ndk/guides/ndk-stack.html)
 
-### [iOS](./extensions-debugging-ios.md)
+### [iOS](/manuals/extensions-debugging-ios.md)
 
 On iOS, you need to open either iTunes or XCode to view the device logs.
 
@@ -142,10 +142,3 @@ This allows for the best symbolication of the callstack.
 
 		$ atos -arch arm64 -o MyApp.dSYM/Contents/Resources/DWARF/MyApp 0x1001492c4
 		dmCrash::OnCrash(int) (in MyApp) (backtrace_execinfo.cpp:27)
-
-
-
-
-
-
-

+ 4 - 4
docs/en/shared/install.md

@@ -32,7 +32,7 @@ Installation on Windows
 
   1. Locate the archive file "Defold-x86_64-win32.zip" (or "Defold-x86-win32.zip" for 32 bit Windows), <kbd>press and hold</kbd> (or <kbd>right-click</kbd>) the folder, select *Extract All*, and then follow the instructions to extract the archive to a folder named "Defold".
   2. Move the folder "Defold" to "C:\Program Files (x86)\"
-  
+
   To start the editor, open the folder "Defold" and <kbd>double click</kbd> the file "Defold.exe".
 
   ![Defold windows](../shared/images/windows_content.png)
@@ -44,13 +44,13 @@ Installation on Linux
 
      ```bash
      $ unzip Defold-x86_64-linux.zip -d Defold
-     ``` 
+     ```
 
   To start the editor, change directory to where you extracted the application, then run the `Defold` executable, or <kbd>double click</kbd> it on your desktop.
 
   ```bash
   $ cd Defold
   $ ./Defold
-  ``` 
+  ```
 
-  If you run into any problems starting the editor, opening a project or running a Defold game please refer to the [Linux section of the FAQ](../faq/faq.md#linux-issues).
+  If you run into any problems starting the editor, opening a project or running a Defold game please refer to the [Linux section of the FAQ](/faq/faq.md#linux-issues).