Skip to content

Commit

Permalink
update version and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed Aug 4, 2024
1 parent 16b629e commit fc8a8d4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 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 "07" )
set(emscripten-glfw_RELEASE_DAY "31" )
set(emscripten-glfw_RELEASE_MONTH "08" )
set(emscripten-glfw_RELEASE_DAY "04" )

set(emscripten-glfw_GLFW_VERSION "3.4.0")

Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This project is an emscripten port of GLFW written in C++ for the web/wasm platf
GLFW API is 3.4.

[![emscripten - TBD](https://img.shields.io/badge/emscripten-TBD-blue)](https://emscripten.org)
[![Latest - 3.4.0.20240731](https://img.shields.io/badge/Latest-3.4.0.20240731-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest)
[![Latest - 3.4.0.20240804](https://img.shields.io/badge/Latest-3.4.0.20240804-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)

Expand Down Expand Up @@ -155,6 +155,7 @@ emcc --use-port=contrib.glfw3:disableWarning=true:disableMultiWindow=true main.c
> #### Note about availability in emscripten
> | emscripten | this port |
> |------------|----------------|
> | TBD | 3.4.0.20240804 |
> | TBD | 3.4.0.20240731 |
> | TBD | 3.4.0.20240727 |
> | 3.1.63 | 3.4.0.20240627 |
Expand Down Expand Up @@ -223,6 +224,11 @@ LDFLAGS += -s USE_WEBGPU=1 --js-library $(EMS_GLFW3_DIR)/src/js/lib_emscripten_g
Release Notes
-------------
#### 3.4.0.20240804 - 2024-08-04 | emscripten TBD
- Fixed `nullptr` issue when clipboard is emtpy
- Fixed the internal clipboard being wiped on asynchronous callback error
#### 3.4.0.20240731 - 2024-07-31 | emscripten TBD
- Added `emscripten_glfw_get_clipboard_string` the C version of `emscripten::glfw3::GetClipboardString` to
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 Union, Dict

TAG = '3.4.0.20240731'
HASH = '1d348f2a6423def537bc11ba5a67347d23696f623e0155e315711d0e23e9b4e6f623019c24c699b6dd5b727322f7093af804d58fc48488f37888ba17300c3aa8'
TAG = '3.4.0.20240804'
HASH = 'a34c392c1fe0365e7ad986b5867a4f171e708f4f5be05ea656ff2ea231c2fa2b7157072e269147c22c97c748e536f689e99799603fabaaaba411b8adf61205a7'
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.20240731"
#define D_EMSCRIPTEN_GLFW_VERSION_STR "3.4.0.20240804"

}

Expand Down

0 comments on commit fc8a8d4

Please sign in to comment.