diff --git a/CMakeLists.txt b/CMakeLists.txt index d727fec..cc656fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ cmake_minimum_required(VERSION 3.5) set(emscripten-glfw_RELEASE_YEAR "2024") -set(emscripten-glfw_RELEASE_MONTH "08" ) -set(emscripten-glfw_RELEASE_DAY "17" ) +set(emscripten-glfw_RELEASE_MONTH "09" ) +set(emscripten-glfw_RELEASE_DAY "07" ) set(emscripten-glfw_GLFW_VERSION "3.4.0") diff --git a/README.md b/README.md index 8850b34..c93c9a5 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,15 @@ Introduction This project is an Emscripten port of GLFW written in C++ for the web/wasm platform. The currently supported GLFW API is 3.4. -[![emscripten - 3.1.65](https://img.shields.io/badge/emscripten-3.1.65-blue)](https://emscripten.org) -[![Latest - 3.4.0.20240817](https://img.shields.io/badge/Latest-3.4.0.20240817-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest) +[![emscripten - TBD](https://img.shields.io/badge/emscripten-TBD-blue)](https://emscripten.org) +[![Latest - 3.4.0.20240907](https://img.shields.io/badge/Latest-3.4.0.20240907-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest) [![GLFW - 3.4.0](https://img.shields.io/badge/GLFW-3.4.0-blue)](https://www.glfw.org/) ![Compiles](https://github.com/pongasoft/emscripten-glfw/actions/workflows/main.yml/badge.svg) +[![emscripten - 3.1.65](https://img.shields.io/badge/emscripten-3.1.65-blue)](https://emscripten.org) +[![Previous - 3.4.0.20240817](https://img.shields.io/badge/Previous-3.4.0.20240817-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest) +[![GLFW - 3.4.0](https://img.shields.io/badge/GLFW-3.4.0-blue)](https://www.glfw.org/) + [![License](https://img.shields.io/badge/License-Apache%20License%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0) Goal @@ -193,6 +197,7 @@ emcc --use-port=contrib.glfw3:disableWarning=true:disableMultiWindow=true main.c > #### Note about availability in Emscripten > | Emscripten | this port | > |------------|----------------| +> | TBD | 3.4.0.20240907 | > | 3.1.65 | 3.4.0.20240817 | > | 3.1.63 | 3.4.0.20240627 | > | 3.1.60 | 3.4.0.20240514 | @@ -223,6 +228,11 @@ Note that care has been taken to be backward compatible with the pure JavaScript Release Notes ------------- +#### 3.4.0.20240907 - 2024-09-07 | Emscripten TBD + +- Fixed Meta/Super key workaround to also handle the rare (but possible) use-case of having other keys down before + pressing the Meta/Super key + #### 3.4.0.20240817 - 2024-08-17 | Emscripten 3.1.65 - Added a way to [tweak the timeouts](docs/Usage.md#keyboard-support) for the Super + Key workaround (Super is also known as Meta or Cmd) diff --git a/include/GLFW/emscripten_glfw3_version.h b/include/GLFW/emscripten_glfw3_version.h index 42e5934..37fef23 100644 --- a/include/GLFW/emscripten_glfw3_version.h +++ b/include/GLFW/emscripten_glfw3_version.h @@ -24,8 +24,8 @@ // #if EMSCRIPTEN_GLFW_VERSION >= 3'4'0'20240801 // .... code that can be used past a certain release // #endif -#define EMSCRIPTEN_GLFW_VERSION 3'4'0'20240817 +#define EMSCRIPTEN_GLFW_VERSION 3'4'0'20240907 -#define EMSCRIPTEN_GLFW_FULL_VERSION_STR "3.4.0.20240817" +#define EMSCRIPTEN_GLFW_FULL_VERSION_STR "3.4.0.20240907" #endif diff --git a/port/emscripten-glfw3.py b/port/emscripten-glfw3.py index 5675be0..0bedfa9 100644 --- a/port/emscripten-glfw3.py +++ b/port/emscripten-glfw3.py @@ -17,8 +17,8 @@ import os from typing import Union, Dict -TAG = '3.4.0.20240817' -HASH = 'f75e711ec47c5eb04cff7fef5f2ef6788445bb86ed570a884ccb0e839744c3ed38b5f94808d1fac1417f356177e753e4ac8cafed9ad808d24d8fd08d23ca07f0' +TAG = '3.4.0.20240907' +HASH = '48aba179ef50b5efd564535cd549528d06f74d18f7028a06212fccc425b784106b0efb3aa7bf72da6fb80c32a31b410f13a87d4599417cad8dc3af15664fa1b2' ZIP_URL = f'https://github.com/pongasoft/emscripten-glfw/releases/download/v{TAG}/emscripten-glfw3-{TAG}.zip' # contrib port information (required)