Skip to content

Commit

Permalink
New beta release 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed Jul 10, 2024
1 parent c04329c commit 6adf59a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,9 @@ protected object ConvertList(IPublishedElement owner, IPublishedPropertyType pro
if (ConvertItem(owner, propertyType, media, config) is { } converted) temp.Add(converted);
}

return temp.Cast(GetItemType(propertyType, config));
Type itemType = GetItemType(propertyType, config);

return temp.Cast(itemType).ToList(itemType);

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>13.0.0-beta001</VersionPrefix>
<VersionPrefix>13.0.0-beta002</VersionPrefix>
<VersionSuffix Condition="'$(Configuration)'=='Debug'">build$([System.DateTime]::UtcNow.ToString(`yyyyMMddHHmm`))</VersionSuffix>
<Company>Limbo</Company>
<Product>Limbo Media Picker</Product>
Expand Down

0 comments on commit 6adf59a

Please sign in to comment.