mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Brush properties - Added default values Brush properties - Removed option to always auto-expand groups Layer properties - Remember expanded/collapsed groups Storage - Added migration system Storage - Added migration that removes profiles made in the old layer properties format Layer timeline - Added back zoom functionality
10 lines
200 B
C#
10 lines
200 B
C#
using LiteDB;
|
|
|
|
namespace Artemis.Storage.Migrations.Interfaces
|
|
{
|
|
public interface IStorageMigration
|
|
{
|
|
int UserVersion { get; }
|
|
void Apply(LiteRepository repository);
|
|
}
|
|
} |