From 7f401bf8447f56ad7bee03b74c0b4d8a91e41658 Mon Sep 17 00:00:00 2001
From: frederik-hoeft <43813142+frederik-hoeft@users.noreply.github.com>
Date: Fri, 15 Nov 2024 16:24:52 +0100
Subject: [PATCH] update PowerToys run value generator plugin docs
---
hub/powertoys/run.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/hub/powertoys/run.md b/hub/powertoys/run.md
index b23b4abbe1..142a878f6b 100644
--- a/hub/powertoys/run.md
+++ b/hub/powertoys/run.md
@@ -272,6 +272,7 @@ It supports the following GUID versions:
- v3 - Namespace and name based, using MD5
- v4 - Random value
- v5 - Namespace and name based, using SHA1
+- v7 - Time-ordered random value
> [!NOTE]
> For versions 3 and 5 there are some predefined namespaces: DNS, URL, OID and X500. You can use the following predefined namespaces:
@@ -288,6 +289,7 @@ Examples:
| `# guid`
`# uuid`
`# uuidv4` | Generate a random GUID. |
| `# guidv1`
`# uuidv1` | Generate a version 1 GUID. |
| `# guidv3 ns:DNS www.microsoft.com`
`# uuidv3 ns:DNS www.microsoft.com` | Generate the GUID version 3 for `www.microsoft.com` using the DNS namespace.
The namespace parameter can be any valid GUID, and the name parameter can be any string. |
+| `# uuid7`
`# guidv7` | Generate a random version 7 GUID with the first 48-bit corresponding to the current timestamp, providing a well-defined order of subsequently generated values. |
> [!TIP]
> The `guid` and `uuid` keywords are interchangeable and the `v` is optional. I.e. `guid5` and `guidv5` are the same.