Version updated.
This commit is contained in:
@@ -3,9 +3,14 @@
|
|||||||
(provide webview-major
|
(provide webview-major
|
||||||
webview-minor
|
webview-minor
|
||||||
webview-patch
|
webview-patch
|
||||||
|
webview-version-string
|
||||||
)
|
)
|
||||||
|
|
||||||
(define webview-major 0)
|
(define webview-major 0)
|
||||||
(define webview-minor 1)
|
(define webview-minor 1)
|
||||||
(define webview-patch 3)
|
(define webview-patch 3)
|
||||||
|
(define (webview-version-string) (format "~a.~a.~a"
|
||||||
|
webview-major
|
||||||
|
webview-minor
|
||||||
|
webview-patch))
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
@(require racket/base
|
@(require racket/base
|
||||||
scribble/core
|
scribble/core
|
||||||
scribble/manual
|
scribble/manual
|
||||||
|
"../racket-webview-version.rkt"
|
||||||
(for-label racket/base
|
(for-label racket/base
|
||||||
racket/class
|
racket/class
|
||||||
racket/string
|
racket/string
|
||||||
@@ -15,15 +16,22 @@
|
|||||||
"../wv-dialog.rkt"
|
"../wv-dialog.rkt"
|
||||||
"../wv-settings.rkt"
|
"../wv-settings.rkt"
|
||||||
"../rgba.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"]]
|
@author[@author+email["Hans Dijkema" "hans@dijkewijk.nl"]]
|
||||||
|
|
||||||
@defmodule{racket-webview}
|
@defmodule{racket-webview}
|
||||||
|
|
||||||
@section{Overview}
|
@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
|
Racket Webview is a class-oriented webview library built on top of a Qt-based
|
||||||
native runtime.
|
native runtime.
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
@defmodule[racket-webview/racket-webview]
|
@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
|
This module provides a structured programming model around the lower-level
|
||||||
webview bindings. It introduces contexts, a local HTTPS server, JSON-based
|
webview bindings. It introduces contexts, a local HTTPS server, JSON-based
|
||||||
@@ -17,7 +17,7 @@ event handling, and DOM and JavaScript utilities.
|
|||||||
@section{Architecture}
|
@section{Architecture}
|
||||||
|
|
||||||
The module builds on the lower-level bindings from
|
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
|
@itemlist[#:style 'compact
|
||||||
@item{structured Racket values instead of raw strings}
|
@item{structured Racket values instead of raw strings}
|
||||||
|
|||||||
@@ -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
|
@(define img (path->string (build-path img-path
|
||||||
"rktwebview-shared-memory-diagram-simple.svg"
|
"rktwebview-shared-memory-diagram-simple.svg"
|
||||||
)))
|
)))
|
||||||
@(displayln (format "image: '~a'" img))
|
@;@(displayln (format "image: '~a'" img))
|
||||||
|
|
||||||
@centered{
|
@centered{
|
||||||
@image[#:scale 0.45]{@img}
|
@image[#:scale 0.45]{@img}
|
||||||
|
|||||||
Reference in New Issue
Block a user