Version updated.

This commit is contained in:
2026-04-06 01:10:06 +02:00
parent 7734a7f36d
commit 3d8cd94967
4 changed files with 18 additions and 5 deletions

View File

@@ -3,9 +3,14 @@
(provide webview-major
webview-minor
webview-patch
webview-version-string
)
(define webview-major 0)
(define webview-minor 1)
(define webview-patch 3)
(define (webview-version-string) (format "~a.~a.~a"
webview-major
webview-minor
webview-patch))

View File

@@ -3,6 +3,7 @@
@(require racket/base
scribble/core
scribble/manual
"../racket-webview-version.rkt"
(for-label racket/base
racket/class
racket/string
@@ -15,15 +16,22 @@
"../wv-dialog.rkt"
"../wv-settings.rkt"
"../rgba.rkt"
"../mimetypes.rkt"))
"../mimetypes.rkt"
"../racket-webview-version.rkt"))
@title{Racket Webview}
@(define version (webview-version-string))
@title{Racket Webview - v@version - Introduction}
@author[@author+email["Hans Dijkema" "hans@dijkewijk.nl"]]
@defmodule{racket-webview}
@section{Overview}
This documentation is provided for version @bold{@version} of racket webview.
Racket Webview is a class-oriented webview library built on top of a Qt-based
native runtime.

View File

@@ -8,7 +8,7 @@
@defmodule[racket-webview/racket-webview]
Higher-level interface built on top of @racketmodname[racket-webview-qt].
Higher-level interface built on top of @racketmodname[racket-webview/racket-webview-qt].
This module provides a structured programming model around the lower-level
webview bindings. It introduces contexts, a local HTTPS server, JSON-based
@@ -17,7 +17,7 @@ event handling, and DOM and JavaScript utilities.
@section{Architecture}
The module builds on the lower-level bindings from
@racketmodname[racket-webview-qt]. It adds:
@racketmodname[racket-webview/racket-webview-qt]. It adds:
@itemlist[#:style 'compact
@item{structured Racket values instead of raw strings}

View File

@@ -15,7 +15,7 @@ under a unified structure. This would be elegant. It is not how things are.
@(define img (path->string (build-path img-path
"rktwebview-shared-memory-diagram-simple.svg"
)))
@(displayln (format "image: '~a'" img))
@;@(displayln (format "image: '~a'" img))
@centered{
@image[#:scale 0.45]{@img}