diff --git a/src/download.md b/src/download.md
index 8d3111d..0b364c0 100644
--- a/src/download.md
+++ b/src/download.md
@@ -1,12 +1,12 @@
## Latest Release
-[New features](https://github.com/glvis/glvis/blob/v4.4/CHANGELOG)
-┊ [User documentation](https://github.com/glvis/glvis/blob/v4.4/README.md)
+[New features](https://github.com/glvis/glvis/blob/v4.5/CHANGELOG)
+┊ [User documentation](https://github.com/glvis/glvis/blob/v4.5/README.md)
┊ [Sources](https://github.com/glvis/glvis)
[](https://bit.ly/glvis-4-4)
+** glvis-4.5.tgz**
+](https://bit.ly/glvis-4-5)
[](https://bit.ly/glvis-4-5)
[
**Use web version**
diff --git a/src/mesh-formats.md b/src/mesh-formats.md
index e1a8f40..955b96b 100644
--- a/src/mesh-formats.md
+++ b/src/mesh-formats.md
@@ -169,7 +169,7 @@ Ordering: 0
...
```
-Some possible [finite element collection](https://github.com/mfem/mfem/blob/master/fem/fe_coll.hpp) choices are: `Linear`, `Quadratic` and `Cubic` corresponding to curvilinear P1/Q1, P2/Q2 and P3/Q3 meshes. The algorithm for the numbering of the degrees of freedom can be found in [MFEM's source code](https://github.com/mfem/mfem/blob/v4.8/fem/fespace.cpp#L2746).
+Some possible [finite element collection](https://github.com/mfem/mfem/blob/master/fem/fe_coll.hpp) choices are: `Linear`, `Quadratic` and `Cubic` corresponding to curvilinear P1/Q1, P2/Q2 and P3/Q3 meshes. The algorithm for the numbering of the degrees of freedom can be found in [MFEM's source code](https://github.com/mfem/mfem/blob/v4.9/fem/fespace.cpp#L2733).
For example, the [escher-p3.mesh](https://github.com/mfem/mfem/blob/master/data/escher-p3.mesh) from MFEM's [data directory](https://github.com/mfem/mfem/blob/master/data) describes a tetrahedral mesh with nodes given by a P3 vector Lagrangian finite element function. Visualizing this mesh with
```sh
diff --git a/src/news.md b/src/news.md
index e3cc6c6..8e2667a 100644
--- a/src/news.md
+++ b/src/news.md
@@ -2,9 +2,10 @@
| |
------------ | -----------------------------------------------------------------
-May 1, 2025 | Version 4.4 [released](https://github.com/glvis/glvis/blob/v4.4/CHANGELOG).
+Feb 6, 2026 | Version 4.5 [released](https://github.com/glvis/glvis/blob/v4.5/CHANGELOG).
+May 1, 2025 | Version 4.4 [released](https://github.com/glvis/glvis/blob/v4.4/CHANGELOG).
Sep 27, 2024 | Version 4.3.2 [released](https://github.com/glvis/glvis/blob/v4.3.2/CHANGELOG).
-Aug 7, 2024 | Version 4.3 [released](https://github.com/glvis/glvis/blob/v4.3/CHANGELOG).
+Aug 7, 2024 | Version 4.3 [released](https://github.com/glvis/glvis/blob/v4.3/CHANGELOG).
May 23, 2022 | Version 4.2 [released](https://github.com/glvis/glvis/blob/v4.2/CHANGELOG).
Jan 20, 2022 | [FEM@LLNL seminar series](https://mfem.org/seminar/) starting.
Aug 31, 2021 | Version 4.1 [released](https://github.com/glvis/glvis/blob/v4.1/CHANGELOG).
diff --git a/src/options-and-use.md b/src/options-and-use.md
index 4879943..8517d06 100644
--- a/src/options-and-use.md
+++ b/src/options-and-use.md
@@ -83,10 +83,12 @@ All Options:
Number of digits used for processor ranks in file names.
-run , --run-script , current value: (none)
Run a GLVis script file.
- -k , --keys , current value: (none)
- Execute key shortcut commands in the GLVis window.
-pal , --palettes , current value: (none)
Palette file.
+ -pname , --palette-name , current value: (none)
+ Palette name.
+ -k , --keys , current value: (none)
+ Execute key shortcut commands in the GLVis window.
-fo, --fix-orientations, -no-fo, --dont-fix-orientations, current option: --dont-fix-orientations
Attempt to fix the orientations of inverted elements.
-a, --real-attributes, -ap, --processor-attributes, current option: --processor-attributes
@@ -97,6 +99,8 @@ All Options:
Save the mesh coloring generated when opening only a mesh.
-p , --listen-port , current value: 19916
Specify the port number on which to accept connections.
+ -pr, --persistent, -no-pr, --no-persistent, current option: --persistent
+ Keep server running after all windows are closed.
-sec, --secure-sockets, -no-sec, --standard-sockets, current option: --standard-sockets
Enable or disable GnuTLS secure sockets.
-save, --save-stream, -no-save, --dont-save-stream, current option: --dont-save-stream
@@ -109,6 +113,8 @@ All Options:
Set the window height.
-wt , --window-title , current value: (default)
Set the window title.
+ -hl, --headless, -no-hl, --no-headless, current option: --no-headless
+ Start headless (no GUI) visualization.
-c , --plot-caption , current value: (none)
Set the plot caption (visible when colorbar is visible).
-fn , --font , current value: (default)
@@ -117,7 +123,7 @@ All Options:
Set the multisampling mode (toggled with the 'A' key).
-lw , --line-width , current value: 1
Set the line width (multisampling off).
- -mslw , --multisample-line-width , current value: 1
+ -mslw , --multisample-line-width , current value: 1.4
Set the line width (multisampling on).
-oldgl, --legacy-gl, -anygl, --any-gl, current option: --any-gl
Only try to create a legacy OpenGL (< 2.1) context.
@@ -139,7 +145,7 @@ application without any options:
glvis
```
By default, the server is established on
-[port 19916](https://github.com/glvis/glvis/blob/v4.4/glvis.cpp#L1421), but
+[port 19916](https://github.com/glvis/glvis/blob/v4.5/glvis.cpp#L386), but
this can be changed with the `-p` option.