diff --git a/CHANGELOG.md b/CHANGELOG.md index 970f5af..b452dfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.2.0 (2024-10-29) + +- Add screenshots to readme + ## 1.1.0 (2024-10-29) - Add support for running the React app in Docker Compose, and keep support for running it locally diff --git a/README.md b/README.md index c4e94f6..6e3c3c8 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ Minimal, reproducible example for Keycloak + React. +- [Screenshots](#screenshots) + * [Login](#login) + * [Home](#home) + * [Playground](#playground) - [Why](#why) - [Setup](#setup) * [Docker Compose](#docker-compose) @@ -25,15 +29,30 @@ Minimal, reproducible example for Keycloak + React. * [Making an API request](#making-an-api-request) - [Seeded data](#seeded-data) * [Clients](#clients) - * [Login](#login) + * [Login](#login-1) * [Tokens](#tokens) * [Email](#email) - [Sharing](#sharing) - [Disclaimers](#disclaimers) - [History](#history) +- [Contributing](#contributing) +## Screenshots + +### Login + +![](assets/screencapture-login.png) + +### Home + +![](assets/screencapture-home.png) + +### Playground + +![](assets/screencapture-playground.png) + ## Why I often see questions in the [Keycloak forums](https://keycloak.discourse.group) on how to use it with React. On the other hand, I often see questions in the [react-oidc-context repo](https://github.com/authts/react-oidc-context) on how to use it with Keycloak. diff --git a/assets/screencapture-home.png b/assets/screencapture-home.png new file mode 100644 index 0000000..a812299 Binary files /dev/null and b/assets/screencapture-home.png differ diff --git a/assets/screencapture-login.png b/assets/screencapture-login.png new file mode 100644 index 0000000..8ef20b3 Binary files /dev/null and b/assets/screencapture-login.png differ diff --git a/assets/screencapture-playground.png b/assets/screencapture-playground.png new file mode 100644 index 0000000..cb35e5a Binary files /dev/null and b/assets/screencapture-playground.png differ diff --git a/package-lock.json b/package-lock.json index 9317372..6ee9c8f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,11 @@ { "name": "sample-keycloak-react-oidc-context", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "sample-keycloak-react-oidc-context", - "version": "1.1.0", + "version": "1.2.0", "devDependencies": { "markdown-toc": "^1.2.0" } diff --git a/package.json b/package.json index 6db9fc0..caa1a7a 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "1.1.0", + "version": "1.2.0", "scripts": { "toc": "markdown-toc -i README.md" },