From 74e0d4be898ddb1343032ee3f32c04170df50d68 Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Thu, 23 Dec 2021 20:04:26 +0100 Subject: [PATCH] Bump version + update notes --- CHANGELOG.md | 13 ++++++++++++- requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9f4938..5c9d9df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 2.4.1 + +* Experimental support for ffmpeg capture +* Event callbacks can now be assigned in WindowConfig.__init__ +* Initial support for confirming window close (glfw) +* Fixed a crash when closing a pyglet window +* Remove some spammy prints in the text writer + +Thanks to @DavideRuzza, @wk39 and @joehalliwell for their +contributions to this release. + ## 2.4.0 Python 3.5 is no longer supported from this version. @@ -10,7 +21,7 @@ New Features * Various smaller improvements * F11 now toggles fullscreen mode by default * Window modules are now fetched from `moderngl_window.WINDOW_CLASSES` - as a fallback. This is necessary in some enviroments. + as a fallback. This is necessary in some environments. * Absolute paths will now bypass all registered resource directories and load the specified file directly. diff --git a/requirements.txt b/requirements.txt index 51f4d39..5ad43e9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,7 +10,7 @@ PySide2<6 PyQt5<6 glfw<2 PySDL2<1 -pygame==2.0.1 +pygame>=2.0.1 pyrr>=0.10 pywavefront>=1.2.0,<2.0 numpy>=1.16 diff --git a/setup.py b/setup.py index f2dd777..b3eeda9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="moderngl-window", - version="2.4.0", + version="2.4.1", description="A cross platform helper library for ModernGL making window creation and resource loading simple", long_description=open('README.md').read(), long_description_content_type='text/markdown', @@ -43,7 +43,7 @@ "pywavefront": ["pywavefront>=1.2.0,<2"], "trimesh": ["trimesh>=3.2.6,<4", "scipy>=1.3.2"], "tk": ["pyopengltk>=0.0.3"], - "pygame": ["pygame~=2.0.1"], + "pygame": ["pygame>=2.0.1"], }, project_urls={ 'Documentation': 'https://moderngl-window.readthedocs.io',