Skip to content

Commit

Permalink
Update release notes / version
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed Jun 27, 2024
1 parent d83de88 commit e395d21
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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.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")

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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 |
Expand Down Expand Up @@ -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_.
Expand Down
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 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)
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/emscripten/glfw3/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

}

Expand Down

0 comments on commit e395d21

Please sign in to comment.