Skip to content

Commit 146a34e

Browse files
committed
Update README
1 parent d25d50b commit 146a34e

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,16 @@ Introduction
44
This project is an Emscripten port of GLFW written in C++ for the web/wasm platform. The currently supported
55
GLFW API is 3.4.
66

7+
[![emscripten - TBD](https://img.shields.io/badge/emscripten-TBD-blue)](https://emscripten.org)
8+
[![contrib.glfw3 - 3.4.0.20250607](https://img.shields.io/badge/contrib.glfw3-3.4.0.20250607-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest)
9+
[![GLFW - 3.4.0](https://img.shields.io/badge/GLFW-3.4.0-blue)](https://www.glfw.org/)
10+
[![License](https://img.shields.io/badge/License-Apache%20License%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
11+
![Compiles](https://github.com/pongasoft/emscripten-glfw/actions/workflows/main.yml/badge.svg)
12+
713
[![emscripten - 4.0.5](https://img.shields.io/badge/emscripten-4.0.5-blue)](https://emscripten.org)
814
[![contrib.glfw3 - 3.4.0.20250305](https://img.shields.io/badge/contrib.glfw3-3.4.0.20250305-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest)
915
[![GLFW - 3.4.0](https://img.shields.io/badge/GLFW-3.4.0-blue)](https://www.glfw.org/)
1016
[![License](https://img.shields.io/badge/License-Apache%20License%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
11-
![Compiles](https://github.com/pongasoft/emscripten-glfw/actions/workflows/main.yml/badge.svg)
1217

1318
Goal
1419
----
@@ -209,6 +214,7 @@ emcc --use-port=contrib.glfw3:disableWarning=true:disableMultiWindow=true main.c
209214
> #### Note about availability in Emscripten
210215
> | Emscripten | this port |
211216
> |------------|----------------|
217+
> | TBD | 3.4.0.20250607 |
212218
> | 4.0.5 | 3.4.0.20250305 |
213219
> | 4.0.4 | 3.4.0.20250209 |
214220
> | 4.0.2 | 3.4.0.20250117 |
@@ -242,6 +248,10 @@ Check the [Building](docs/Building.md) page for details on how to build this pro
242248
243249
Release Notes
244250
-------------
251+
#### 3.4.0.20250607 - 2025-06-07 | Emscripten TBD
252+
253+
- The main port file has been simplified and is now using the new (as of 4.0.10) "external port file" Emscripten feature
254+
245255
#### 3.4.0.20250305 - 2025-03-05 | Emscripten 4.0.5
246256
247257
- Fixed missing `i` key in keyboard mapping. Thanks, [@iarwain](https://github.com/iarwain) for PR [#18](https://github.com/pongasoft/emscripten-glfw/pull/18).

port/emscripten-glfw3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
TAG = '3.4.0.20250607'
1818

1919
EXTERNAL_PORT = f'https://github.com/pongasoft/emscripten-glfw/releases/download/v{TAG}/emscripten-glfw3-{TAG}.zip'
20-
SHA512 = 'f554ddc22f5b892e3cb9ef63c2f8b0d495f2db237bd3f75ac53a25decb2eb14321db46a1f1de6f58af601d9bd8dc8dd856c5c8837e3e369eedbce5bdb8a8b0e1'
20+
SHA512 = '1b264ac8891ffff51b899ca5853d4f945294dde9a9191eb5df9dd4cb26a4b27c5e7dac99cad42466833e9aae76d450de8a4b84381a63214321dc0427fd054f1b'
2121
PORT_FILE = 'port/glfw3.py'
2222

2323
# contrib port information (required)

0 commit comments

Comments
 (0)