Skip to content

Commit b885481

Browse files
committed
Bug Fix
1 parent d3b2995 commit b885481

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.1] - 2023-08-06
9+
10+
11+
### Fixed
12+
13+
- Removed a redundant testing `Debug.Log`.
14+
815
## [1.1.0] - 2023-08-06
916

1017
### Changed

Runtime/Scripts/InputUtilities.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ public static GamepadPlatform GetGamepadPlatform()
1616
if (!IsUsingGamepad()) return GamepadPlatform.None;
1717

1818
var gamepad = GetCurrentGamepad();
19-
Debug.Log(Gamepad.all.Aggregate("", (current, g) => current + (g.name + " | ")));
20-
2119
return gamepad switch
2220
{
2321
DualShockGamepad => GamepadPlatform.Playstation,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.dartcore.utilities",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"displayName": "DartCore Utilities",
55
"description": "This package contains methods to handle commonly required stuff.",
66
"unity": "2018.1",

0 commit comments

Comments
 (0)