Skip to content

Commit

Permalink
Bump version + update notes
Browse files Browse the repository at this point in the history
  • Loading branch information
einarf committed Dec 23, 2021
1 parent b631949 commit 74e0d4b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 74e0d4b

Please sign in to comment.