Skip to content

Commit

Permalink
updated release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed Jun 1, 2024
1 parent 2313d46 commit 45442d2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 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 "05" )
set(emscripten-glfw_RELEASE_DAY "14" )
set(emscripten-glfw_RELEASE_MONTH "06" )
set(emscripten-glfw_RELEASE_DAY "01" )

set(emscripten-glfw_GLFW_VERSION "3.4.0")

Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ 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.20240514](https://img.shields.io/badge/Latest-3.4.0.20240514-blue)](https://github.com/pongasoft/emscripten-glfw/releases/latest)
[![Latest - 3.4.0.20240601](https://img.shields.io/badge/Latest-3.4.0.20240601-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 - 3.1.60](https://img.shields.io/badge/emscripten-3.1.60-blue)](https://emscripten.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)

[![Previous - 3.4.0.20240501](https://img.shields.io/badge/Previous-3.4.0.20240501-blue)](https://github.com/pongasoft/emscripten-glfw/releases/tag/v3.4.0.20240501)
[![Previous - 3.4.0.20240514](https://img.shields.io/badge/Latest-3.4.0.20240514-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 - 3.1.60](https://img.shields.io/badge/emscripten-3.1.60-blue)](https://emscripten.org)

Expand Down Expand Up @@ -154,6 +154,7 @@ emcc --use-port=contrib.glfw3:disableWarning=true:disableMultiWindow=true main.c
> #### Note about availability in emscripten
> | this port | emscripten |
> |----------------|------------|
> | 3.4.0.20240601 | TBD |
> | 3.4.0.20240514 | 3.1.60 |
> | 3.4.0.20240501 | 3.1.60 |
> | 3.4.0.20240318 | 3.1.57 |
Expand Down Expand Up @@ -220,6 +221,10 @@ LDFLAGS += -s USE_WEBGPU=1 --js-library $(EMS_GLFW3_DIR)/src/js/lib_emscripten_g
Release Notes
-------------
#### 3.4.0.20240601 - 2024-06-01 | emscripten TBD
- Fixed #2: Dynamically changing HiDPI awareness does not trigger content callback
#### 3.4.0.20240514 - 2024-05-14 | emscripten 3.1.60
- Implemented `glfwSetClipboardString`
Expand Down
9 changes: 6 additions & 3 deletions examples/example_resizable_container_with_handle/shell.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@
position: absolute;
bottom: 0;
right: 0;
background-color: #444444;
width: 10px;
height: 10px;
margin-bottom: 1px;
margin-right: 1px;
border-left: 20px solid transparent;
border-bottom: 20px solid rgba(102, 102, 102, 0.5);
width: 0;
height: 0;
cursor: nwse-resize;
}

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.20240514'
HASH = '88e12d35724d01b5adbcb168e1efee9fa496cd529abeb42d526cfa74a6d68562ba622ad5736a5c830f3c96a5c0edd490bb945250b6eff991ad3e06de1f43a1e3'
TAG = '3.4.0.20240601'
HASH = '3083c320b402fd97c3cf9b55c2c1025bb133b3de0ab32cbb4af13e2471f9a9202bb0c9ae11f578829ae59568bb332762a67686be33689b7803343b84d8032254'
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.20240514"
#define D_EMSCRIPTEN_GLFW_VERSION_STR "3.4.0.20240601"

}

Expand Down

0 comments on commit 45442d2

Please sign in to comment.