splashscreen-engine 2.0.3__tar.gz → 2.0.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: splashscreen-engine
3
- Version: 2.0.3
3
+ Version: 2.0.4
4
4
  Summary: A module for making Splash Screens with videos, images, loading bars, text rendering, and threaded rendering support for Applications.
5
5
  Home-page: https://github.com/NamanChhabra21/splashscreen-engine
6
6
  Author: Naman Chhabra
@@ -8,7 +8,7 @@ License: MIT
8
8
  Project-URL: Source, https://github.com/NamanChhabra21/splashscreen-engine
9
9
  Project-URL: Issues, https://github.com/NamanChhabra21/splashscreen-engine/issues
10
10
  Project-URL: Discussions, https://github.com/NamanChhabra21/splashscreen-engine/discussions
11
- Keywords: pygame,splash-screen,loading-screen,python,gui,video,splashscreen,pygame-gui,window,animation,loading,open-cv,naman,chhabra,splash,pypi,github,screen,how to,module,api,example,documentation,README,tkinter,customtkinter,opencv-python,code,2.0.3,player,tutorial
11
+ Keywords: pygame,splash-screen,loading-screen,python,gui,video,splashscreen,pygame-gui,window,animation,loading,open-cv,naman,chhabra,splash,pypi,github,screen,how to,module,api,example,documentation,README,tkinter,customtkinter,opencv-python,code,2.0.4,player,tutorial
12
12
  Classifier: Programming Language :: Python :: 3
13
13
  Classifier: License :: OSI Approved :: MIT License
14
14
  Classifier: Operating System :: OS Independent
@@ -59,7 +59,7 @@ pip install splashscreen-engine
59
59
  ```
60
60
  OR
61
61
  ```bash
62
- pip install splashscreen-engine==2.0.3
62
+ pip install splashscreen-engine==2.0.4
63
63
  ```
64
64
 
65
65
  ## Example
@@ -25,7 +25,7 @@ pip install splashscreen-engine
25
25
  ```
26
26
  OR
27
27
  ```bash
28
- pip install splashscreen-engine==2.0.3
28
+ pip install splashscreen-engine==2.0.4
29
29
  ```
30
30
 
31
31
  ## Example
@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as f:
6
6
  setup(
7
7
  name="splashscreen-engine",
8
8
 
9
- version="2.0.3",
9
+ version="2.0.4",
10
10
 
11
11
  py_modules=["splashscreen_engine"],
12
12
 
@@ -63,7 +63,7 @@ setup(
63
63
  "customtkinter",
64
64
  "opencv-python",
65
65
  "code",
66
- "2.0.3",
66
+ "2.0.4",
67
67
  "player",
68
68
  "tutorial"
69
69
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: splashscreen-engine
3
- Version: 2.0.3
3
+ Version: 2.0.4
4
4
  Summary: A module for making Splash Screens with videos, images, loading bars, text rendering, and threaded rendering support for Applications.
5
5
  Home-page: https://github.com/NamanChhabra21/splashscreen-engine
6
6
  Author: Naman Chhabra
@@ -8,7 +8,7 @@ License: MIT
8
8
  Project-URL: Source, https://github.com/NamanChhabra21/splashscreen-engine
9
9
  Project-URL: Issues, https://github.com/NamanChhabra21/splashscreen-engine/issues
10
10
  Project-URL: Discussions, https://github.com/NamanChhabra21/splashscreen-engine/discussions
11
- Keywords: pygame,splash-screen,loading-screen,python,gui,video,splashscreen,pygame-gui,window,animation,loading,open-cv,naman,chhabra,splash,pypi,github,screen,how to,module,api,example,documentation,README,tkinter,customtkinter,opencv-python,code,2.0.3,player,tutorial
11
+ Keywords: pygame,splash-screen,loading-screen,python,gui,video,splashscreen,pygame-gui,window,animation,loading,open-cv,naman,chhabra,splash,pypi,github,screen,how to,module,api,example,documentation,README,tkinter,customtkinter,opencv-python,code,2.0.4,player,tutorial
12
12
  Classifier: Programming Language :: Python :: 3
13
13
  Classifier: License :: OSI Approved :: MIT License
14
14
  Classifier: Operating System :: OS Independent
@@ -59,7 +59,7 @@ pip install splashscreen-engine
59
59
  ```
60
60
  OR
61
61
  ```bash
62
- pip install splashscreen-engine==2.0.3
62
+ pip install splashscreen-engine==2.0.4
63
63
  ```
64
64
 
65
65
  ## Example
@@ -156,7 +156,7 @@ class Screen:
156
156
  self.foreground_video = None
157
157
 
158
158
  # Icon
159
- self.icon = pygame.image.load("SplashLogo.png")
159
+ self.icon = None
160
160
 
161
161
 
162
162
  # GLOBAL UI
@@ -195,7 +195,7 @@ class Screen:
195
195
  # Creates window with title Bar
196
196
  self.screen = pygame.display.set_mode((w, h),pygame.RESIZABLE)
197
197
 
198
- pygame.display.set_icon(self.icon.convert_alpha())
198
+
199
199
  self.screen.fill(self.bgColor)
200
200
 
201
201
  pygame.display.update()