Skip to content

Commit c178bae

Browse files
authored
Virtualized grid view (#9)
* Added VirtualGridLayoutGroup * Display app version
1 parent d89c4ca commit c178bae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1106
-842
lines changed

Assets/Scenes/MainScene.unity

Lines changed: 566 additions & 389 deletions
Large diffs are not rendered by default.

Assets/Scripts/Config/ApplicationSettings.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
using StlVault.Util;
2-
using StlVault.Util.Logging;
1+
using StlVault.Util.Logging;
32

43
namespace StlVault.Config
54
{
65
internal class ApplicationSettings
76
{
87
public ushort UiScalePercent { get; set; } = 100;
9-
public LogLevel LogLevel { get; set; } = LogLevel.Info;
10-
public ushort ImportParallelism { get; set; } = 2;
8+
public LogLevel LogLevel { get; set; } = LogLevel.Trace;
9+
public ushort ImportParallelism { get; set; } = 1;
1110
public ushort PreviewJpegQuality { get; set; } = 70;
1211
public ushort PreviewResolution { get; set; } = 10;
1312
public ushort ScrollSensitivity { get; set; } = 150;

Assets/Scripts/Config/ImportFolderConfig.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Collections.Generic;
2-
using StlVault.Services;
32

43
namespace StlVault.Config
54
{

Assets/Scripts/Config/PreviewInfo.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
using System;
21
using System.Collections.Generic;
32
using System.ComponentModel;
43
using System.Diagnostics;
5-
using JetBrains.Annotations;
6-
using Newtonsoft.Json;
74
using StlVault.Services;
8-
using UnityEngine.Scripting;
95

106
namespace StlVault.Config
117
{

Assets/Scripts/Services/AppDataPreviewImageStore.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System;
22
using System.IO;
33
using System.Threading.Tasks;
4-
using StlVault.Config;
54
using StlVault.Util.Logging;
65

76
namespace StlVault.Services
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System.Collections.Generic;
2-
using System.Threading.Tasks;
3-
4-
namespace StlVault.Services
1+
namespace StlVault.Services
52
{
63

74
}

Assets/Scripts/Services/ILibrary.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System.Collections.Generic;
22
using System.Threading.Tasks;
3-
using StlVault.Config;
4-
using StlVault.Util;
5-
using StlVault.Util.Collections;
63
using StlVault.ViewModels;
74
using UnityEngine;
85

Assets/Scripts/Services/IPreviewBuilder.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Collections.Generic;
2-
using System.Threading.Tasks;
1+
using System.Threading.Tasks;
32
using UnityEngine;
43

54
namespace StlVault.Services

Assets/Scripts/Services/IPreviewImageStore.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Threading.Tasks;
1+
using System.Threading.Tasks;
32

43
namespace StlVault.Services
54
{

Assets/Scripts/Services/IPreviewList.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using StlVault.Config;
32
using StlVault.Util.Collections;
43
using StlVault.ViewModels;
54

0 commit comments

Comments
 (0)