@gallop.software/studio 2.3.7 → 2.3.8
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/dist/client/index.html
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
12
12
|
}
|
|
13
13
|
</style>
|
|
14
|
-
<script type="module" crossorigin src="/assets/index-
|
|
14
|
+
<script type="module" crossorigin src="/assets/index-C-cZLxgK.js"></script>
|
|
15
15
|
</head>
|
|
16
16
|
<body>
|
|
17
17
|
<div id="root"></div>
|
package/dist/server/index.js
CHANGED
|
@@ -755,6 +755,10 @@ async function handleList(request) {
|
|
|
755
755
|
thumbnail,
|
|
756
756
|
hasThumbnail,
|
|
757
757
|
isProcessed: entryIsProcessed,
|
|
758
|
+
hasSm: !!entry.sm,
|
|
759
|
+
hasMd: !!entry.md,
|
|
760
|
+
hasLg: !!entry.lg,
|
|
761
|
+
hasFull: !!entry.f,
|
|
758
762
|
cdnPushed: isPushedToCloud,
|
|
759
763
|
cdnBaseUrl: fileCdnUrl,
|
|
760
764
|
isRemote,
|
|
@@ -829,6 +833,10 @@ async function handleSearch(request) {
|
|
|
829
833
|
thumbnail,
|
|
830
834
|
hasThumbnail,
|
|
831
835
|
isProcessed: entryIsProcessed,
|
|
836
|
+
hasSm: !!entry.sm,
|
|
837
|
+
hasMd: !!entry.md,
|
|
838
|
+
hasLg: !!entry.lg,
|
|
839
|
+
hasFull: !!entry.f,
|
|
832
840
|
cdnPushed: isPushedToCloud,
|
|
833
841
|
cdnBaseUrl: fileCdnUrl,
|
|
834
842
|
isRemote,
|