From e395d210bb709525577cacf8d4ee6e0bf6131b65 Mon Sep 17 00:00:00 2001 From: Yan Pujante Date: Thu, 27 Jun 2024 11:25:33 -0700 Subject: [PATCH] Update release notes / version --- CMakeLists.txt | 2 +- README.md | 12 ++++++------ port/emscripten-glfw3.py | 4 ++-- src/cpp/emscripten/glfw3/version.h | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8dde2f5..878b5a7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5) set(emscripten-glfw_RELEASE_YEAR "2024") set(emscripten-glfw_RELEASE_MONTH "06" ) -set(emscripten-glfw_RELEASE_DAY "25" ) +set(emscripten-glfw_RELEASE_DAY "27" ) set(emscripten-glfw_GLFW_VERSION "3.4.0") diff --git a/README.md b/README.md index d95d5bd..aa15355 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ 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. -[![Latest - 3.4.0.20240625](https://img.shields.io/badge/Latest-3.4.0.20240625-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest) +[![Latest - 3.4.0.20240627](https://img.shields.io/badge/Latest-3.4.0.20240627-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/) [![emscripten - TBD](https://img.shields.io/badge/emscripten-TBD-blue)](https://emscripten.org) ![Compiles](https://github.com/pongasoft/emscripten-glfw/actions/workflows/main.yml/badge.svg) @@ -154,12 +154,8 @@ emcc --use-port=contrib.glfw3:disableWarning=true:disableMultiWindow=true main.c > #### Note about availability in emscripten > | this port | emscripten | > |----------------|------------| -> | 3.4.0.20240625 | TBD | -> | 3.4.0.20240617 | TBD | -> | 3.4.0.20240616 | TBD | -> | 3.4.0.20240601 | TBD | +> | 3.4.0.20240627 | TBD | > | 3.4.0.20240514 | 3.1.60 | -> | 3.4.0.20240501 | 3.1.60 | > | 3.4.0.20240318 | 3.1.57 | > | 1.1.0 | 3.1.56 | > | 1.0.5 | 3.1.55 | @@ -224,6 +220,10 @@ LDFLAGS += -s USE_WEBGPU=1 --js-library $(EMS_GLFW3_DIR)/src/js/lib_emscripten_g Release Notes ------------- +#### 3.4.0.20240627 - 2024-06-27 | emscripten TBD + +- Fixed internal implementation to use `EM_BOOL` (PR [#5](https://github.com/pongasoft/emscripten-glfw/pull/5)) + #### 3.4.0.20240625 - 2024-06-25 | emscripten TBD - Implemented workaround for [#4](https://github.com/pongasoft/emscripten-glfw/issues/4): _Using Super + "Key" on macOS results in "Key" not being released_. diff --git a/port/emscripten-glfw3.py b/port/emscripten-glfw3.py index f56870a..afaed5e 100644 --- a/port/emscripten-glfw3.py +++ b/port/emscripten-glfw3.py @@ -17,8 +17,8 @@ import os from typing import Dict -TAG = '3.4.0.20240625' -HASH = '318cb351628286fd2aa98bfbf76949f91114fabd2b13a6468109d97c138689f73ae05526cb083d4644746f661cc81f17270680b4636457943e3cb646eafb49bd' +TAG = '3.4.0.20240627' +HASH = '6598834deece7087fd5dda14ec6d410ae651c39b9955eb050dd736a7d3eb650075fc69cf70340f4f0514bef63723a5bbcc315397ec44ba7cab46e59fa137e27f' ZIP_URL = f'https://github.com/pongasoft/emscripten-glfw/releases/download/v{TAG}/emscripten-glfw3-{TAG}.zip' # contrib port information (required) diff --git a/src/cpp/emscripten/glfw3/version.h b/src/cpp/emscripten/glfw3/version.h index 965548c..3edbd2d 100644 --- a/src/cpp/emscripten/glfw3/version.h +++ b/src/cpp/emscripten/glfw3/version.h @@ -22,7 +22,7 @@ namespace emscripten::glfw3 { -#define D_EMSCRIPTEN_GLFW_VERSION_STR "3.4.0.20240625" +#define D_EMSCRIPTEN_GLFW_VERSION_STR "3.4.0.20240627" }