pygameControls 0.2.5__tar.gz → 0.2.7__tar.gz

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.
Files changed (27) hide show
  1. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/PKG-INFO +1 -1
  2. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/controller.py +1 -1
  3. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/globals.py +5 -4
  4. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls.egg-info/PKG-INFO +1 -1
  5. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/setup.py +1 -1
  6. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/LICENSE +0 -0
  7. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/README.md +0 -0
  8. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/__init__.py +0 -0
  9. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/controlsbase.py +0 -0
  10. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/dualsense_controller.py +0 -0
  11. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/dualsense_edge_controller.py +0 -0
  12. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/enums.py +0 -0
  13. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/generic_controller.py +0 -0
  14. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/logitech_dual_action_controller.py +0 -0
  15. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/logitech_f310_controller.py +0 -0
  16. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/logitech_f510_controller.py +0 -0
  17. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/logitech_f710_controller.py +0 -0
  18. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/playstation3_controller.py +0 -0
  19. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/playstation4_controller.py +0 -0
  20. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/sony_playstation3_controller.py +0 -0
  21. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/sony_playstation4_controller.py +0 -0
  22. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/xbox_360_controller.py +0 -0
  23. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls/xbox_series_x_controller.py +0 -0
  24. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls.egg-info/SOURCES.txt +0 -0
  25. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls.egg-info/dependency_links.txt +0 -0
  26. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/pygameControls.egg-info/top_level.txt +0 -0
  27. {pygamecontrols-0.2.5 → pygamecontrols-0.2.7}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygameControls
3
- Version: 0.2.5
3
+ Version: 0.2.7
4
4
  Summary: A simple controller class for pygame.
5
5
  Home-page:
6
6
  Author: Jan Lerking
@@ -1,7 +1,7 @@
1
1
  import pygame
2
2
  from . import globals
3
3
 
4
- __version__ = "0.2.5"
4
+ __version__ = "0.2.7"
5
5
 
6
6
  class Controllers:
7
7
  def __init__(self, joy):
@@ -183,7 +183,7 @@ def init():
183
183
  },
184
184
  {
185
185
  "vidpid": "046d:c21d",
186
- "guid": "",
186
+ "guid": "0333443e6d0400001fc2000005030000",
187
187
  "connection": ConnectionType.USB,
188
188
  "input": InputType.XInput,
189
189
  "name": [
@@ -194,14 +194,15 @@ def init():
194
194
  },
195
195
  {
196
196
  "vidpid": "046d:c216",
197
- "guid": "",
197
+ "guid": "03005d8e6d04000019c2000011010000",
198
198
  "connection": ConnectionType.USB,
199
199
  "input": InputType.DirectInput,
200
200
  "name": [
201
201
  "Logitech, Inc. F710 Gamepad [DirectInput Mode]",
202
- "Logitech Dual Action"
202
+ "Logitech Dual Action",
203
+ "Logitech Cordless Rumblepad 2"
203
204
  ],
204
- "class": CONTROLLERS["Logitech Dual Action"]
205
+ "class": CONTROLLERS["Logitech Rumblepad 2"]
205
206
  }
206
207
  ]
207
208
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygameControls
3
- Version: 0.2.5
3
+ Version: 0.2.7
4
4
  Summary: A simple controller class for pygame.
5
5
  Home-page:
6
6
  Author: Jan Lerking
@@ -3,7 +3,7 @@ if __name__ == "__main__":
3
3
 
4
4
  setup(
5
5
  name='pygameControls',
6
- version='0.2.5',
6
+ version='0.2.7',
7
7
  packages=find_packages(),
8
8
  install_requires=[],
9
9
  author='Jan Lerking',
File without changes
File without changes
File without changes