Crosstales.TB.Util.Constants Class Reference

Collected constants of very general utility for the asset. More...

Inheritance diagram for Crosstales.TB.Util.Constants:

Static Public Attributes

const string ASSET_NAME = "Turbo Backup PRO"
 Name of the asset. More...
 
const string ASSET_NAME_SHORT = "TB PRO"
 Short name of the asset. More...
 
const string ASSET_VERSION = "2024.1.2"
 Version of the asset. More...
 
const int ASSET_BUILD = 20240316
 Build number of the asset. More...
 
static readonly System.DateTime ASSET_CREATED = new System.DateTime(2018, 3, 4)
 Create date of the asset (YYYY, MM, DD). More...
 
static readonly System.DateTime ASSET_CHANGED = new System.DateTime(2024, 3, 16)
 Change date of the asset (YYYY, MM, DD). More...
 
const string ASSET_PRO_URL = "https://assetstore.unity.com/packages/slug/98711?aid=1011lNGT"
 URL of the PRO asset in UAS. More...
 
const string ASSET_UPDATE_CHECK_URL = "https://www.crosstales.com/media/assets/tb_versions.txt"
 URL for update-checks of the asset More...
 
const string ASSET_CONTACT = "tb@crosstales.com"
 Contact to the owner of the asset. More...
 
const string ASSET_MANUAL_URL = "https://www.crosstales.com/media/data/assets/TurboBackup/TurboBackup-doc.pdf"
 URL of the asset manual. More...
 
const string ASSET_API_URL = "https://www.crosstales.com/en/assets/TurboBackup/api/"
 URL of the asset API. More...
 
const string ASSET_FORUM_URL = "https://forum.unity.com/threads/turbo-backup-fast-and-save-backup-solution.521731/"
 URL of the asset forum. More...
 
const string ASSET_WEB_URL = "https://www.crosstales.com/en/portfolio/TurboBackup/"
 URL of the asset in crosstales. More...
 
const string ASSET_VIDEO_TUTORIAL = "https://youtu.be/8EJ2H5220R4?list=PLgtonIOr6Tb41XTMeeZ836tjHlKgOO84S"
 URL of the tutorial video of the asset (Youtube). More...
 
const string KEY_VCS = "CT_CFG_VCS"
 
const string KEY_CUSTOM_PATH_CACHE = KEY_PREFIX + "CUSTOM_PATH_CACHE"
 
const string KEY_PATH_CACHE = KEY_PREFIX + "PATH_CACHE"
 
const string KEY_USE_LEGACY = KEY_PREFIX + "USE_LEGACY"
 
const string KEY_BATCHMODE = KEY_PREFIX + "BATCHMODE"
 
const string KEY_QUIT = KEY_PREFIX + "QUIT"
 
const string KEY_NO_GRAPHICS = KEY_PREFIX + "NO_GRAPHICS"
 
const string KEY_EXECUTE_METHOD_PRE_BACKUP = KEY_PREFIX + "EXECUTE_METHOD_PRE_BACKUP"
 
const string KEY_EXECUTE_METHOD_BACKUP = KEY_PREFIX + "EXECUTE_METHOD_BACKUP"
 
const string KEY_EXECUTE_METHOD_PRE_RESTORE = KEY_PREFIX + "EXECUTE_METHOD_PRE_RESTORE"
 
const string KEY_EXECUTE_METHOD_RESTORE = KEY_PREFIX + "EXECUTE_METHOD_RESTORE"
 
const string KEY_DELETE_LOCKFILE = KEY_PREFIX + "DELETE_LOCKFILE"
 
const string KEY_COPY_ASSETS = KEY_PREFIX + "COPY_ASSETS"
 
const string KEY_COPY_LIBRARY = KEY_PREFIX + "COPY_LIBRARY"
 
const string KEY_COPY_SETTINGS = KEY_PREFIX + "COPY_SETTINGS"
 
const string KEY_COPY_USER_SETTINGS = KEY_PREFIX + "COPY_USER_SETTINGS"
 
const string KEY_COPY_PACKAGES = KEY_PREFIX + "COPY_PACKAGES"
 
const string KEY_THREADS = KEY_PREFIX + "THREADS"
 
const string KEY_CONFIRM_BACKUP = KEY_PREFIX + "CONFIRM_BACKUP"
 
const string KEY_CONFIRM_RESTORE = KEY_PREFIX + "CONFIRM_RESTORE"
 
const string KEY_CONFIRM_WARNING = KEY_PREFIX + "CONFIRM_WARNING"
 
const string KEY_DEBUG = KEY_PREFIX + "DEBUG"
 
const string KEY_UPDATE_CHECK = KEY_PREFIX + "UPDATE_CHECK"
 
const string KEY_COMPILE_DEFINES = KEY_PREFIX + "COMPILE_DEFINES"
 
const string KEY_BACKUP_COUNT = KEY_PREFIX + "BACKUP_COUNT"
 
const string KEY_RESTORE_DATE = KEY_PREFIX + "RESTORE_DATE"
 
const string KEY_RESTORE_COUNT = KEY_PREFIX + "RESTORE_COUNT"
 
const string KEY_SETUP_DATE = KEY_PREFIX + "SETUP_DATE"
 
const string KEY_UPDATE_DATE = KEY_PREFIX + "UPDATE_DATE"
 
const string KEY_AUTO_SAVE = KEY_PREFIX + "AUTO_SAVE"
 
const string BACKUP_DIRNAME = "TB_backup"
 
const string KEY_AUTO_BACKUP_DATE = KEY_PREFIX + "AUTO_BACKUP_DATE"
 
const string KEY_AUTO_BACKUP_INTERVAL = KEY_PREFIX + "AUTO_BACKUP_INTERVAL"
 
const string KEY_SLOTS = KEY_PREFIX + "SLOTS"
 
const string KEY_CURRENT_SLOT = KEY_PREFIX + "CURRENT_SLOT"
 
const string DEFAULT_ASSET_PATH = "/Plugins/crosstales/TurboBackup/"
 
static readonly string DEFAULT_PATH_CACHE = Crosstales.Common.Util.FileHelper.ValidatePath(APPLICATION_PATH + BACKUP_DIRNAME)
 
const bool DEFAULT_CUSTOM_PATH_BACKUP = false
 
const int DEFAULT_VCS = 0
 
const bool DEFAULT_USE_LEGACY = false
 
const bool DEFAULT_BATCHMODE = false
 
const bool DEFAULT_QUIT = true
 
const bool DEFAULT_NO_GRAPHICS = false
 
const bool DEFAULT_DELETE_LOCKFILE = false
 
const bool DEFAULT_COPY_ASSETS = true
 
const bool DEFAULT_COPY_LIBRARY = false
 
const bool DEFAULT_COPY_SETTINGS = true
 
const bool DEFAULT_COPY_USER_SETTINGS = true
 
const bool DEFAULT_COPY_PACKAGES = true
 
const int DEFAULT_THREADS = 16
 
const bool DEFAULT_CONFIRM_BACKUP = true
 
const bool DEFAULT_CONFIRM_RESTORE = true
 
const bool DEFAULT_CONFIRM_WARNING = true
 
const bool DEFAULT_UPDATE_CHECK = false
 
const bool DEFAULT_COMPILE_DEFINES = true
 
const bool DEFAULT_AUTO_SAVE = false
 
const int DEFAULT_SLOTS = 1
 
const string TEXT_NO_BACKUP = "no backup"
 
static string ASSET_URL => ASSET_PRO_URL
 Returns the URL of the asset in UAS. More...
 
static string ASSET_ID => "98711"
 Returns the ID of the asset in UAS. More...
 
static System.Guid ASSET_UID => new System.Guid("32aa0df4-78bf-4548-9476-8df979f8a49c")
 Returns the UID of the asset. More...
 

Detailed Description

Collected constants of very general utility for the asset.

Member Data Documentation

◆ ASSET_API_URL

const string Crosstales.TB.Util.Constants.ASSET_API_URL = "https://www.crosstales.com/en/assets/TurboBackup/api/"
static

URL of the asset API.

◆ ASSET_BUILD

const int Crosstales.TB.Util.Constants.ASSET_BUILD = 20240316
static

Build number of the asset.

◆ ASSET_CHANGED

readonly System.DateTime Crosstales.TB.Util.Constants.ASSET_CHANGED = new System.DateTime(2024, 3, 16)
static

Change date of the asset (YYYY, MM, DD).

◆ ASSET_CONTACT

const string Crosstales.TB.Util.Constants.ASSET_CONTACT = "tb@crosstales.com"
static

Contact to the owner of the asset.

◆ ASSET_CREATED

readonly System.DateTime Crosstales.TB.Util.Constants.ASSET_CREATED = new System.DateTime(2018, 3, 4)
static

Create date of the asset (YYYY, MM, DD).

◆ ASSET_FORUM_URL

const string Crosstales.TB.Util.Constants.ASSET_FORUM_URL = "https://forum.unity.com/threads/turbo-backup-fast-and-save-backup-solution.521731/"
static

URL of the asset forum.

◆ ASSET_ID

string Crosstales.TB.Util.Constants.ASSET_ID => "98711"
static

Returns the ID of the asset in UAS.

Returns
The ID of the asset in UAS.

◆ ASSET_MANUAL_URL

const string Crosstales.TB.Util.Constants.ASSET_MANUAL_URL = "https://www.crosstales.com/media/data/assets/TurboBackup/TurboBackup-doc.pdf"
static

URL of the asset manual.

◆ ASSET_NAME

const string Crosstales.TB.Util.Constants.ASSET_NAME = "Turbo Backup PRO"
static

Name of the asset.

◆ ASSET_NAME_SHORT

const string Crosstales.TB.Util.Constants.ASSET_NAME_SHORT = "TB PRO"
static

Short name of the asset.

◆ ASSET_PRO_URL

const string Crosstales.TB.Util.Constants.ASSET_PRO_URL = "https://assetstore.unity.com/packages/slug/98711?aid=1011lNGT"
static

URL of the PRO asset in UAS.

◆ ASSET_UID

System.Guid Crosstales.TB.Util.Constants.ASSET_UID => new System.Guid("32aa0df4-78bf-4548-9476-8df979f8a49c")
static

Returns the UID of the asset.

Returns
The UID of the asset.

◆ ASSET_UPDATE_CHECK_URL

const string Crosstales.TB.Util.Constants.ASSET_UPDATE_CHECK_URL = "https://www.crosstales.com/media/assets/tb_versions.txt"
static

URL for update-checks of the asset

◆ ASSET_URL

string Crosstales.TB.Util.Constants.ASSET_URL => ASSET_PRO_URL
static

Returns the URL of the asset in UAS.

Returns
The URL of the asset in UAS.

◆ ASSET_VERSION

const string Crosstales.TB.Util.Constants.ASSET_VERSION = "2024.1.2"
static

Version of the asset.

◆ ASSET_VIDEO_TUTORIAL

const string Crosstales.TB.Util.Constants.ASSET_VIDEO_TUTORIAL = "https://youtu.be/8EJ2H5220R4?list=PLgtonIOr6Tb41XTMeeZ836tjHlKgOO84S"
static

URL of the tutorial video of the asset (Youtube).

◆ ASSET_WEB_URL

const string Crosstales.TB.Util.Constants.ASSET_WEB_URL = "https://www.crosstales.com/en/portfolio/TurboBackup/"
static

URL of the asset in crosstales.


The documentation for this class was generated from the following file:
  • C:/Users/slaub/Unity/assets/TurboBackup/TurboBackup/Assets/Plugins/crosstales/TurboBackup/Scripts/Editor/Util/Constants.cs