mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-20 15:44:18 +01:00
27 lines
645 B
C#
27 lines
645 B
C#
namespace Dalamud.Plugin.Internal.AutoUpdate;
|
|
|
|
/// <summary>
|
|
/// Enum describing how plugins should be auto-updated at startup-.
|
|
/// </summary>
|
|
internal enum AutoUpdateBehavior
|
|
{
|
|
/// <summary>
|
|
/// Plugins should not be updated and the user should not be notified.
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// The user should merely be notified about updates.
|
|
/// </summary>
|
|
OnlyNotify,
|
|
|
|
/// <summary>
|
|
/// Only plugins from the main repository should be updated.
|
|
/// </summary>
|
|
UpdateMainRepo,
|
|
|
|
/// <summary>
|
|
/// All plugins should be updated.
|
|
/// </summary>
|
|
UpdateAll,
|
|
}
|