pygameControls 0.2.0__tar.gz → 0.2.1__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.0 → pygamecontrols-0.2.1}/PKG-INFO +1 -1
  2. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/controller.py +1 -1
  3. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/dualsense_controller.py +0 -1
  4. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/dualsense_edge_controller.py +0 -1
  5. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/generic_controller.py +0 -1
  6. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/logitech_dual_action_controller.py +0 -1
  7. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/logitech_f310_controller.py +0 -1
  8. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/logitech_f510_controller.py +0 -1
  9. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/logitech_f710_controller.py +0 -1
  10. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/playstation3_controller.py +0 -1
  11. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/playstation4_controller.py +0 -1
  12. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/sony_playstation3_controller.py +0 -1
  13. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/sony_playstation4_controller.py +0 -1
  14. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/xbox_360_controller.py +0 -1
  15. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/xbox_series_x_controller.py +0 -1
  16. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls.egg-info/PKG-INFO +1 -1
  17. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/setup.py +1 -1
  18. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/LICENSE +0 -0
  19. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/README.md +0 -0
  20. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/__init__.py +0 -0
  21. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/controlsbase.py +0 -0
  22. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/enums.py +0 -0
  23. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls/globals.py +0 -0
  24. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls.egg-info/SOURCES.txt +0 -0
  25. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls.egg-info/dependency_links.txt +0 -0
  26. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/pygameControls.egg-info/top_level.txt +0 -0
  27. {pygamecontrols-0.2.0 → pygamecontrols-0.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygameControls
3
- Version: 0.2.0
3
+ Version: 0.2.1
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.0"
4
+ __version__ = "0.2.1"
5
5
 
6
6
  class Controllers:
7
7
  def __init__(self, joy):
@@ -1,5 +1,4 @@
1
1
  from pygameControls.controlsbase import ControlsBase
2
- from .enums import ConnectionType
3
2
  from pydualsense import *
4
3
 
5
4
  BATTERY_STATE = {
@@ -1,5 +1,4 @@
1
1
  from pygameControls.controlsbase import ControlsBase
2
- from enums import ConnectionType
3
2
  from pydualsense import *
4
3
 
5
4
 
@@ -1,6 +1,5 @@
1
1
  import pygame
2
2
  from pygameControls.controlsbase import ControlsBase
3
- from enums import ConnectionType
4
3
 
5
4
  class GenericController(ControlsBase):
6
5
  def __init__(self, joy):
@@ -14,7 +14,6 @@ This controller is a usb controller, with the following features.
14
14
 
15
15
  import pygame
16
16
  from pygameControls.controlsbase import ControlsBase
17
- from enums import ConnectionType
18
17
 
19
18
  class LogitechDualActionController(ControlsBase):
20
19
  def __init__(self, joy):
@@ -14,7 +14,6 @@ This controller is a usb controller, with the following features.
14
14
 
15
15
  import pygame
16
16
  from pygameControls.controlsbase import ControlsBase
17
- from enums import ConnectionType
18
17
 
19
18
  class LogitechF310Controller(ControlsBase):
20
19
  def __init__(self, joy):
@@ -7,7 +7,6 @@ Subsequent updates will be done, based on updates for the F310.
7
7
 
8
8
  import pygame
9
9
  from pygameControls.controlsbase import ControlsBase
10
- from enums import ConnectionType
11
10
 
12
11
  class LogitechF510Controller(ControlsBase):
13
12
  def __init__(self, joy):
@@ -5,7 +5,6 @@ This controller is a usb/wireless controller.
5
5
 
6
6
  import pygame
7
7
  from pygameControls.controlsbase import ControlsBase
8
- from enums import ConnectionType
9
8
 
10
9
  class LogitechF710Controller(ControlsBase):
11
10
  def __init__(self, joy):
@@ -1,5 +1,4 @@
1
1
  from pygameControls.controlsbase import ControlsBase
2
- from enums import ConnectionType
3
2
  import pygame
4
3
 
5
4
  class PlayStation3Controller(ControlsBase):
@@ -1,5 +1,4 @@
1
1
  from pygameControls.controlsbase import ControlsBase
2
- from enums import ConnectionType
3
2
  import pygame
4
3
 
5
4
  class PlayStation4Controller(ControlsBase):
@@ -1,5 +1,4 @@
1
1
  from pygameControls.controlsbase import ControlsBase
2
- from enums import ConnectionType
3
2
  import pygame
4
3
 
5
4
  class SonyPlayStation3Controller(ControlsBase):
@@ -1,5 +1,4 @@
1
1
  from pygameControls.controlsbase import ControlsBase
2
- from enums import ConnectionType
3
2
  import pygame
4
3
 
5
4
  class SonyPlayStation4Controller(ControlsBase):
@@ -1,5 +1,4 @@
1
1
  from pygameControls.controlsbase import ControlsBase
2
- from enums import ConnectionType, InputType
3
2
  import pygame
4
3
 
5
4
  class Xbox360Controller(ControlsBase):
@@ -1,5 +1,4 @@
1
1
  from pygameControls.controlsbase import ControlsBase
2
- from enums import ConnectionType
3
2
  import pygame
4
3
 
5
4
  class XboxSeriesXController(ControlsBase):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygameControls
3
- Version: 0.2.0
3
+ Version: 0.2.1
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.0',
6
+ version='0.2.1',
7
7
  packages=find_packages(),
8
8
  install_requires=[],
9
9
  author='Jan Lerking',
File without changes
File without changes
File without changes