Skip to content

Commit

Permalink
Update version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Damnae committed Mar 3, 2019
1 parent 6f0fdc1 commit 44129a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions common/Subtitles/FontGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ private bool matches(TinyToken cachedFontRoot)

internal TinyObject ToTinyObject() => new TinyObject
{
{ "FontPath", description.FontPath },
{ "FontPath", PathHelper.WithStandardSeparators(description.FontPath) },
{ "FontSize", description.FontSize },
{ "ColorR", description.Color.R },
{ "ColorG", description.Color.G },
Expand All @@ -279,7 +279,7 @@ private bool matches(TinyToken cachedFontRoot)
private TinyObject letterToTinyObject(KeyValuePair<string, FontTexture> letterEntry) => new TinyObject
{
{ "Text", letterEntry.Key },
{ "Path", letterEntry.Value.Path },
{ "Path", PathHelper.WithStandardSeparators(letterEntry.Value.Path) },
{ "Hash", HashHelper.GetFileMd5(Path.Combine(mapsetDirectory, letterEntry.Value.Path)) },
{ "OffsetX", letterEntry.Value.OffsetX },
{ "OffsetY", letterEntry.Value.OffsetY },
Expand Down
2 changes: 1 addition & 1 deletion editor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.64.*")]
[assembly: AssemblyVersion("1.65.*")]
2 changes: 1 addition & 1 deletion editor/Storyboarding/Project.cs
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ private void saveText(string path)
var indexRoot = new TinyObject
{
{ "FormatVersion", Version },
{ "MapsetPath", MapsetPath },
{ "MapsetPath", PathHelper.WithStandardSeparators(MapsetPath) },
{ "BeatmapId", MainBeatmap.Id },
{ "BeatmapName", MainBeatmap.Name },
{ "Assemblies", importedAssemblies },
Expand Down

0 comments on commit 44129a6

Please sign in to comment.