From 25c1df99db70c0eeeb64e95346ac1359e022d9ef Mon Sep 17 00:00:00 2001 From: Taylor Brooks Date: Wed, 30 Jan 2019 15:01:40 -0600 Subject: [PATCH] Point wiki links to Spark page --- README.md | 12 +++++----- Tools/AutoDocumenter/Program.cs | 40 ++++++++++++++++----------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index f75cab3..7e72425 100644 --- a/README.md +++ b/README.md @@ -9,21 +9,21 @@ Avalanche currently powers the Southeast Christian Church app, with other non-pr ## Getting Started -We have a great [Quick Start](https://github.com/secc/Avalanche/wiki/Quick-Start) guide so you can get to playing very quickly. +We have a great [Quick Start](https://github.com/SparkDevNetwork/Avalanche/wiki/Quick-Start) guide so you can get to playing very quickly. The Southeast Christian Church app source code is hosted here as well. This way you can see any customization we may have made and learn from them. ## Contributing -New features, wiki improvements or bug fixes welcome! Check out the [wiki](https://github.com/secc/Avalanche/wiki) - for more information. - +New features, wiki improvements or bug fixes welcome! Check out the [wiki](https://github.com/SparkDevNetwork/Avalanche/wiki) + for more information. + iOS: [![Build status](https://build.appcenter.ms/v0.1/apps/58278ba1-767b-474b-ba5b-228a3629a64e/branches/master/badge)](https://appcenter.ms) Android: [![Build status](https://build.appcenter.ms/v0.1/apps/710bfd8c-40e7-465e-a2c1-121613563ce8/branches/master/badge)](https://appcenter.ms) - + ## License Distributed under the Southeast Christian Church License Agreement. Plugins and other includes under their respective liscences. -[Markdown View](https://github.com/aloisdeniel/MarkdownView) used under MIT license +[Markdown View](https://github.com/aloisdeniel/MarkdownView) used under MIT license diff --git a/Tools/AutoDocumenter/Program.cs b/Tools/AutoDocumenter/Program.cs index 5873745..da6bf54 100644 --- a/Tools/AutoDocumenter/Program.cs +++ b/Tools/AutoDocumenter/Program.cs @@ -40,26 +40,26 @@ static void Main( string[] args ) public static Dictionary typeInformation = new Dictionary { - { typeof (string).Name, "[string](https://github.com/secc/Avalanche/wiki/String)"}, - { typeof (int).Name, "[int](https://github.com/secc/Avalanche/wiki/Int)"}, - { typeof (ImageSource).Name, "[ImageSource](https://github.com/secc/Avalanche/wiki/ImageSource)"}, - { typeof (bool).Name,"[bool](https://github.com/secc/Avalanche/wiki/Bool)"}, - {typeof(Accelerator).Name,"[Accelerator](https://github.com/secc/Avalanche/wiki/Accelerator)"}, - {typeof(Binding).Name,"[Binding](https://github.com/secc/Avalanche/wiki/Binding)"}, - {typeof(Rectangle).Name, "[Rectangle](https://github.com/secc/Avalanche/wiki/Rectangle)"}, - {typeof(Color).Name, "[Color](https://github.com/secc/Avalanche/wiki/Color)"}, - {typeof(Constraint).Name, "[Constraint](https://github.com/secc/Avalanche/wiki/Constraint)"}, - {typeof(Font).Name, "[Font](https://github.com/secc/Avalanche/wiki/Font)"}, - {typeof(GridLength).Name,"[GridLength](https://github.com/secc/Avalanche/wiki/GridLength)"}, - {typeof(Keyboard).Name, "[Keyboard](https://github.com/secc/Avalanche/wiki/Keyboard)"}, - {typeof(List).Name, "[List of Strings](https://github.com/secc/Avalanche/wiki/String)"}, - {typeof(LayoutOptions).Name, "[LayoutOptions](https://github.com/secc/Avalanche/wiki/LayoutOptions)"}, - {typeof(Point).Name,"[Point](https://github.com/secc/Avalanche/wiki/Point)"}, - {typeof(double).Name, "[double](https://github.com/secc/Avalanche/wiki/Double)"}, - {typeof(Thickness).Name, "[Thickness](https://github.com/secc/Avalanche/wiki/Thickness)"}, - {typeof(Type).Name,"[Type](https://github.com/secc/Avalanche/wiki/Type)"}, - {typeof(Uri).Name,"[Uri](https://github.com/secc/Avalanche/wiki/Uri)"}, - {typeof(WebViewSource).Name,"[WebViewSource](https://github.com/secc/Avalanche/wiki/WebViewSource)"}, + { typeof (string).Name, "[string](https://github.com/SparkDevNetwork/Avalanche/wiki/String)"}, + { typeof (int).Name, "[int](https://github.com/SparkDevNetwork/Avalanche/wiki/Int)"}, + { typeof (ImageSource).Name, "[ImageSource](https://github.com/SparkDevNetwork/Avalanche/wiki/ImageSource)"}, + { typeof (bool).Name,"[bool](https://github.com/SparkDevNetwork/Avalanche/wiki/Bool)"}, + {typeof(Accelerator).Name,"[Accelerator](https://github.com/SparkDevNetwork/Avalanche/wiki/Accelerator)"}, + {typeof(Binding).Name,"[Binding](https://github.com/SparkDevNetwork/Avalanche/wiki/Binding)"}, + {typeof(Rectangle).Name, "[Rectangle](https://github.com/SparkDevNetwork/Avalanche/wiki/Rectangle)"}, + {typeof(Color).Name, "[Color](https://github.com/SparkDevNetwork/Avalanche/wiki/Color)"}, + {typeof(Constraint).Name, "[Constraint](https://github.com/SparkDevNetwork/Avalanche/wiki/Constraint)"}, + {typeof(Font).Name, "[Font](https://github.com/SparkDevNetwork/Avalanche/wiki/Font)"}, + {typeof(GridLength).Name,"[GridLength](https://github.com/SparkDevNetwork/Avalanche/wiki/GridLength)"}, + {typeof(Keyboard).Name, "[Keyboard](https://github.com/SparkDevNetwork/Avalanche/wiki/Keyboard)"}, + {typeof(List).Name, "[List of Strings](https://github.com/SparkDevNetwork/Avalanche/wiki/String)"}, + {typeof(LayoutOptions).Name, "[LayoutOptions](https://github.com/SparkDevNetwork/Avalanche/wiki/LayoutOptions)"}, + {typeof(Point).Name,"[Point](https://github.com/SparkDevNetwork/Avalanche/wiki/Point)"}, + {typeof(double).Name, "[double](https://github.com/SparkDevNetwork/Avalanche/wiki/Double)"}, + {typeof(Thickness).Name, "[Thickness](https://github.com/SparkDevNetwork/Avalanche/wiki/Thickness)"}, + {typeof(Type).Name,"[Type](https://github.com/SparkDevNetwork/Avalanche/wiki/Type)"}, + {typeof(Uri).Name,"[Uri](https://github.com/SparkDevNetwork/Avalanche/wiki/Uri)"}, + {typeof(WebViewSource).Name,"[WebViewSource](https://github.com/SparkDevNetwork/Avalanche/wiki/WebViewSource)"}, }; private static string GetInformation( Type propertyType )