﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using VRC.Core;

public partial class VRCSdkControlPanel : EditorWindow
{
	Vector2 changesScroll;
	
    void ShowChanges()
    {
       changesScroll = EditorGUILayout.BeginScrollView(changesScroll, GUILayout.Width(SdkWindowWidth));
		
		EditorGUILayout.Space();
        EditorGUILayout.BeginVertical(boxGuiStyle);
        EditorGUILayout.LabelField("Welcome to Odds Custom SDK v13!", EditorStyles.boldLabel);
		EditorGUILayout.LabelField("Can reach me on my discord here: Odds#0001", EditorStyles.boldLabel);
		EditorGUILayout.Space();
		EditorGUILayout.EndVertical();
		EditorGUILayout.BeginVertical();
		GUILayout.Label(
		@"Changelog v14
 -> Added the ability to upload custom images instead of using VRCCam
 - Added import for 753's auto prefab unpacker (learn more here: https://www.patreon.com/posts/prefab-auto-35692084
 - Changed up graphics a bit to look a bit more like the official sdk

Changelog v13.1
 -> Cleaned up some things
 - Completely removed future proofing
  [Future proofing is not needed nor do you need to worry about it ^^]
		
 Changelog v13
 -> Updated to latest SDK-VRCSDK2-2020.04.01.10.20
 [Yes this means its for the 2018 unity]
 
 
 Changelog v12
 -> Updated to latest SDK-2019.09.18.12.05
 - Moved my changelog  to 'Changelog' in sdk control panel
 - Moved imports and my other options to 'Odds SDK' in sdk control panel
 - Cleaned up Builder tab in the sdk control panel
 - You can disable the splash screen again, now in 'Settings' in the sdk control panel
 - Removed 'Poiyomi Master' as an import, please use 'PoiyomiToon' instead c:
 
 Changelog v11
 -> Updated to latest SDK-2019.07.31.13.58
 - Fixed auto fill visemes
 - Cleaned up the polycount and overall avatar rank
 - Added Muscle Animator as an option to import
 - Added Mochie's Uber Shader as an option to import

 * Changelog v10:
-> Updated to latest SDK-2019.04.14.12.31
- Added Poiyomi's Toon as an option to import
- Added Rero's Standard as an option to import

 * Changelog v9:
-> Updated to latest SDK-2018.12.19.17.03
- Cleaned up beta stuff.

 * Changelog v8 (Beta):
-> Updated to latest SDK-2018.11.15.12.19
Added following options to 'settings':
-Add VRC Collision Layers : 
(Adds VRChats collision layers to your project)
- Import DynamicBones : 
(Imports DynamicBones into your project)
- Import Cubed Shaders : 
(Imports Cubed Shaders into your project)
- Import Poiyomi Master Shader : 
(Imports Poiyomi Master Shader into your project)

* Changelog v7:
 -> Updated to latest SDK-2018.08.23.11.02
 -> Changed a couple buttons in the splash screen
 -> Finally moved Clear Cache and PlayerPrefs to Odds SDK
 -> Cleaned up some unused stuff
 - Removed annoying/unnecesary warnings.
 - Removed audio limit.
 - Removed poly limit.
 - Allowed scripts/event handler. (Was used for chairs)
 - Removed height limit.
 - Changed Build & Publish to Upload Avatar
 - Removed annoying unity version check.
 - Removed warnings related to cameras.
 - Removed warnings related to audio sources.
 - Added auto viseme detection.
 - Added custom changelog/splash screen
 - Moved following options into Odds SDK:
 Splash Screen|Changelog
 Settings
 Force Configure Player Settings
 Uploaded Content
 Upload Panel");
		EditorGUILayout.EndVertical();
		EditorGUILayout.EndScrollView();
    }
}
