Skip to content

Commit

Permalink
UI Fixes (#1075)
Browse files Browse the repository at this point in the history
* Fix system memory text

* Fix project version

* Fix workflow
  • Loading branch information
cosmiccoincidence authored Mar 5, 2023
1 parent 464e6a8 commit e0412a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/AddToRoadmap.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Automate Roadmap
description: Add issues and pull requests to SS3D roadmap board.
description: Add issues and pull requests to SS3D roadmap board.
on:
issues:
types:
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/SS3D/Core/Utils/ApplicationModeView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ private void HandleApplicationStarted(ref EventContext context, in ApplicationSt
string os = $"{SystemInfo.operatingSystem}".Colorize(LogColors.GetLogColor(Logs.External));
string graphicsDevice = $"{SystemInfo.graphicsDeviceName}".Colorize(LogColors.GetLogColor(Logs.External));
string processingDevice = $"{SystemInfo.processorType}".Colorize(LogColors.GetLogColor(Logs.External));
string memory = $"{SystemInfo.systemMemorySize}GB".Colorize(LogColors.GetLogColor(Logs.External));
string memory = $"{SystemInfo.systemMemorySize}MB".Colorize(LogColors.GetLogColor(Logs.External));

const string pcEmoji = "<sprite name=\"pc\">";
const string toolboxEmoji = "<sprite name=\"toolbox\"}>";
Expand Down
2 changes: 1 addition & 1 deletion ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
bundleVersion: 0.1
bundleVersion: 0.0.6.0
preloadedAssets:
- {fileID: 11400000, guid: 443046479504c5640b8f5902a102c09f, type: 2}
- {fileID: 11400000, guid: 2b55e2e913cc78044a828c6fb589fb9e, type: 2}
Expand Down

0 comments on commit e0412a0

Please sign in to comment.