Skip to content

Commit

Permalink
Merge pull request #28 from hashrock/update-readme-dwm
Browse files Browse the repository at this point in the history
chore(readme): bump dwm version to 0.3.3
  • Loading branch information
load1n9 authored Nov 20, 2023
2 parents 3eba5dc + cb51768 commit daf0f99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Deno Window Manager

[![Tags](https://img.shields.io/github/release/deno-windowing/dwm)](https://github.com/deno-windowing/dwm/releases)
[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].0/mod.ts)
[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].3/mod.ts)
[![Checks](https://github.com/deno-windowing/dwm/actions/workflows/ci.yml/badge.svg)](https://github.com/deno-windowing/dwm/actions/workflows/ci.yml)
[![License](https://img.shields.io/github/license/deno-windowing/dwm)](https://github.com/deno-windowing/dwm/blob/master/LICENSE)
[![Sponsor](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/DjDeveloperr)
Expand All @@ -17,7 +17,7 @@ import {
createWindow,
getProcAddress,
mainloop,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].3/mod.ts";
import * as gl from "https://deno.land/x/[email protected]/api/gles23.2.ts";

const window = createWindow({
Expand Down Expand Up @@ -51,7 +51,7 @@ await mainloop(frame);
import {
mainloop,
WindowCanvas,
} from "https://deno.land/x/[email protected].0/ext/canvas.ts";
} from "https://deno.land/x/[email protected].3/ext/canvas.ts";

const canvas = new WindowCanvas({
title: "Skia Canvas",
Expand Down
2 changes: 1 addition & 1 deletion src/platform/glfw/window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ export class WindowGlfw extends DwmWindow {
lockKeyMods: GLFW_LOCK_KEY_MODS,
rawMouseMotion: GLFW_RAW_MOUSE_MOTION,
}[mode],
typeof (value) === "boolean" ? value ? 1 : 0 : {
typeof value === "boolean" ? value ? 1 : 0 : {
normal: GLFW_CURSOR_NORMAL,
hidden: GLFW_CURSOR_HIDDEN,
disabled: GLFW_CURSOR_DISABLED,
Expand Down

0 comments on commit daf0f99

Please sign in to comment.