Skip to content

Commit

Permalink
Updated version and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed Sep 7, 2024
1 parent 37b09a4 commit 06e3df8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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")

Expand Down
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 |
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions include/GLFW/emscripten_glfw3_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions port/emscripten-glfw3.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 06e3df8

Please sign in to comment.