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 Jan 17, 2025
1 parent 8705493 commit 9a1665c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)

set(emscripten-glfw_RELEASE_YEAR "2025")
set(emscripten-glfw_RELEASE_MONTH "01" )
set(emscripten-glfw_RELEASE_DAY "12" )
set(emscripten-glfw_RELEASE_DAY "17" )

set(emscripten-glfw_GLFW_VERSION "3.4.0")

Expand Down
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ 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 - 4.0.1](https://img.shields.io/badge/emscripten-4.0.1-blue)](https://emscripten.org)
[![contrib.glfw3 - 3.4.0.20250112](https://img.shields.io/badge/contrib.glfw3-3.4.0.20250112-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest)
[![emscripten - TBD](https://img.shields.io/badge/emscripten-TBD-blue)](https://emscripten.org)
[![contrib.glfw3 - 3.4.0.20250117](https://img.shields.io/badge/contrib.glfw3-3.4.0.20250117-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)
![Compiles](https://github.com/pongasoft/emscripten-glfw/actions/workflows/main.yml/badge.svg)

[![emscripten - 4.0.0](https://img.shields.io/badge/emscripten-4.0.0-blue)](https://emscripten.org)
[![contrib.glfw3 - 3.4.0.20241230](https://img.shields.io/badge/contrib.glfw3-3.4.0.20241230-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest)
[![emscripten - 4.0.1](https://img.shields.io/badge/emscripten-4.0.1-blue)](https://emscripten.org)
[![contrib.glfw3 - 3.4.0.20250112](https://img.shields.io/badge/contrib.glfw3-3.4.0.20250112-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/)

Goal
Expand Down Expand Up @@ -213,6 +213,7 @@ emcc --use-port=contrib.glfw3:disableWarning=true:disableMultiWindow=true main.c
> #### Note about availability in Emscripten
> | Emscripten | this port |
> |------------|----------------|
> | TBD | 3.4.0.20250117 |
> | 4.0.1 | 3.4.0.20250112 |
> | 4.0.0 | 3.4.0.20241230 |
> | 3.1.69 | 3.4.0.20241004 |
Expand Down Expand Up @@ -251,6 +252,10 @@ Check the [Building](docs/Building.md) page for details on how to build this pro
Release Notes
-------------
#### 3.4.0.20250117 - 2025-01-17 | Emscripten TBD
- Added port option `disableWebGL2` to disable support for WebGL2 when not needed (reduces JavaScript code size)
#### 3.4.0.20250112 - 2025-01-12 | Emscripten 4.0.1
- Added support for `GLFW_CONTEXT_VERSION_MAJOR` and `GLFW_CONTEXT_VERSION_MINOR`
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'20250112
#define EMSCRIPTEN_GLFW_VERSION 3'4'0'20250117

#define EMSCRIPTEN_GLFW_FULL_VERSION_STR "3.4.0.20250112"
#define EMSCRIPTEN_GLFW_FULL_VERSION_STR "3.4.0.20250117"

#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.20250112'
HASH = '55d0828674c185f6ca00f76fcbaaeec8baec26be1507b33d36a2084c6352ca51dd27a61082478998b200e9a388834f2f95d6b00258c303bba1a996e305034a6b'
TAG = '3.4.0.20250117'
HASH = '128b39d37887df063ed3b1a4ce747fe3f369237e8f69e5630bfb03bdf70ddb2dc5f164e5697300b327d8a542316fc9c5eb7d558c1668b2bb35ae3b0d4c234df4'
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 9a1665c

Please sign in to comment.