jp.keijiro.klutter-tools 2.5.0 → 2.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.attestation.p7m CHANGED
Binary file
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.5.1] - 2026-01-21
9
+
10
+ ### Fixed
11
+
12
+ - Adjusted Downloader launch delay to be applied when constructing the launcher.
13
+ - Avoided setting the Downloader visible flag when the window is not shown.
14
+
8
15
  ## [2.5.0] - 2026-01-17
9
16
 
10
17
  ### Added
@@ -6,11 +6,13 @@ namespace KlutterTools.Downloader {
6
6
  static class Launcher
7
7
  {
8
8
  static Launcher()
9
+ => EditorApplication.delayCall += CheckAndShow;
10
+
11
+ static void CheckAndShow()
9
12
  {
10
13
  // Session state check
11
14
  const string sessionKey = "KlutterTools.Downloader.Shown";
12
15
  if (SessionState.GetBool(sessionKey, false)) return;
13
- SessionState.SetBool(sessionKey, true);
14
16
 
15
17
  // Manifest existence check
16
18
  if (GlobalManifest.Instance == null) return;
@@ -19,7 +21,8 @@ static class Launcher
19
21
  if (GlobalManifest.Instance.CheckAllDownloaded()) return;
20
22
 
21
23
  // Downloader window open
22
- EditorApplication.delayCall += DownloaderWindow.ShowWindow;
24
+ DownloaderWindow.ShowWindow();
25
+ SessionState.SetBool(sessionKey, true);
23
26
  }
24
27
  }
25
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jp.keijiro.klutter-tools",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
4
4
  "displayName": "Klutter Tools",
5
5
  "description": "Miscellaneous editor tools.",
6
6
  "unity": "6000.0",
@@ -11,11 +11,11 @@
11
11
  "licensesUrl": "https://github.com/keijiro/KlutterTools/blob/main/LICENSE",
12
12
  "license": "Unlicense",
13
13
  "_upm": {
14
- "changelog": "<b>Added</b><br>- Added the Downloader tool for fetching large external assets."
14
+ "changelog": "<b>Fixed</b><br>- Adjusted Downloader launch delay to be applied when constructing the launcher.<br>- Avoided setting the Downloader visible flag when the window is not shown."
15
15
  },
16
16
  "repository": {
17
17
  "url": "git@github.com:keijiro/KlutterTools.git",
18
18
  "type": "git",
19
- "revision": "2f099d7e8e82bbf35a8a454e5060c68bc5892a5d"
19
+ "revision": "9afabac843d781841341be05c6421c499ea29a5c"
20
20
  }
21
21
  }