pygameControls 0.2.6__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.6 → pygamecontrols-0.2.7}/PKG-INFO +1 -1
  2. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/controller.py +1 -1
  3. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/globals.py +1 -1
  4. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls.egg-info/PKG-INFO +1 -1
  5. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/setup.py +1 -1
  6. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/LICENSE +0 -0
  7. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/README.md +0 -0
  8. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/__init__.py +0 -0
  9. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/controlsbase.py +0 -0
  10. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/dualsense_controller.py +0 -0
  11. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/dualsense_edge_controller.py +0 -0
  12. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/enums.py +0 -0
  13. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/generic_controller.py +0 -0
  14. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/logitech_dual_action_controller.py +0 -0
  15. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/logitech_f310_controller.py +0 -0
  16. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/logitech_f510_controller.py +0 -0
  17. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/logitech_f710_controller.py +0 -0
  18. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/playstation3_controller.py +0 -0
  19. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/playstation4_controller.py +0 -0
  20. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/sony_playstation3_controller.py +0 -0
  21. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/sony_playstation4_controller.py +0 -0
  22. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/xbox_360_controller.py +0 -0
  23. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls/xbox_series_x_controller.py +0 -0
  24. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls.egg-info/SOURCES.txt +0 -0
  25. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls.egg-info/dependency_links.txt +0 -0
  26. {pygamecontrols-0.2.6 → pygamecontrols-0.2.7}/pygameControls.egg-info/top_level.txt +0 -0
  27. {pygamecontrols-0.2.6 → 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.6
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.6"
4
+ __version__ = "0.2.7"
5
5
 
6
6
  class Controllers:
7
7
  def __init__(self, joy):
@@ -202,7 +202,7 @@ def init():
202
202
  "Logitech Dual Action",
203
203
  "Logitech Cordless Rumblepad 2"
204
204
  ],
205
- "class": CONTROLLERS["Logitech Dual Action"]
205
+ "class": CONTROLLERS["Logitech Rumblepad 2"]
206
206
  }
207
207
  ]
208
208
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygameControls
3
- Version: 0.2.6
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.6',
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