README.md: minor updates

This commit is contained in:
Karl Tauber
2023-08-12 17:04:21 +02:00
parent 7a75f62a6a
commit 96cd207df3
3 changed files with 15 additions and 10 deletions

View File

@@ -6,7 +6,7 @@ Swing desktop applications.
It looks almost flat (no shadows or gradients), clean, simple and elegant. It looks almost flat (no shadows or gradients), clean, simple and elegant.
FlatLaf comes with **Light**, **Dark**, **IntelliJ** and **Darcula** themes, FlatLaf comes with **Light**, **Dark**, **IntelliJ** and **Darcula** themes,
scales on **HiDPI** displays and runs on Java 8 or newer. scales on **HiDPI** displays and runs on Java 8 or newer (LTS and latest).
The look is heavily inspired by **Darcula** and **IntelliJ** themes from The look is heavily inspired by **Darcula** and **IntelliJ** themes from
IntelliJ IDEA 2019.2+ and uses almost the same colors and icons. IntelliJ IDEA 2019.2+ and uses almost the same colors and icons.
@@ -142,6 +142,7 @@ Buzz
---- ----
- [What others say about FlatLaf on Twitter](https://twitter.com/search?f=live&q=flatlaf) - [What others say about FlatLaf on Twitter](https://twitter.com/search?f=live&q=flatlaf)
- [FlatLaf 3.1 (and 3.0) announcement on Reddit](https://www.reddit.com/r/java/comments/12xgrsu/flatlaf_31_and_30_swing_look_and_feel/)
- [FlatLaf 1.0 announcement on Reddit](https://www.reddit.com/r/java/comments/lsbcwe/flatlaf_10_swing_look_and_feel/) - [FlatLaf 1.0 announcement on Reddit](https://www.reddit.com/r/java/comments/lsbcwe/flatlaf_10_swing_look_and_feel/)
- [FlatLaf announcement on Reddit](https://www.reddit.com/r/java/comments/dl0hu3/flatlaf_flat_look_and_feel/) - [FlatLaf announcement on Reddit](https://www.reddit.com/r/java/comments/dl0hu3/flatlaf_flat_look_and_feel/)

View File

@@ -1,6 +1,6 @@
FlatLaf Native Libraries FlatLaf Native Libraries
======================== ========================
- [Windows 10 Native Library](flatlaf-natives-windows) - [Windows 10/11 Native Library](flatlaf-natives-windows)
- [Linux Native Library](flatlaf-natives-linux) - [Linux Native Library](flatlaf-natives-linux)
- [Natives using JNA](flatlaf-natives-jna) (for development only) - [Natives using JNA](flatlaf-natives-jna) (for development only)

View File

@@ -1,17 +1,21 @@
FlatLaf Windows 10 Native Library FlatLaf Windows 10/11 Native Library
================================= ====================================
This sub-project contains the source code for the FlatLaf Windows 10 native This sub-project contains the source code for the FlatLaf Windows 10/11 native
library (DLL). library (DLL).
The native library can be built only on Windows and requires a C++ compiler. The native library can be built only on Windows and requires a C++ compiler.
Tested only with Microsoft Visual C++ 2019 (comes with Visual Studio 2019). Tested with Microsoft Visual C++ (MSVC) 2019 and 2022 (comes with Visual Studio
2019 and 2022).
The native library is available for folloging CPU architectures: `x86_64` (or
`amd64`), `x86` and `arm64`.
To be able to build FlatLaf on any platform, and without C++ compiler, the To be able to build FlatLaf on any platform, and without C++ compiler, the
pre-built DLL is checked into Git at pre-built DLLs are checked into Git at
[flatlaf-core/src/main/resources/com/formdev/flatlaf/natives/](https://github.com/JFormDesigner/FlatLaf/tree/main/flatlaf-core/src/main/resources/com/formdev/flatlaf/natives). [flatlaf-core/src/main/resources/com/formdev/flatlaf/natives/](https://github.com/JFormDesigner/FlatLaf/tree/main/flatlaf-core/src/main/resources/com/formdev/flatlaf/natives).
The DLL was built on a GitHub server with the help of GitHub Actions. See: The DLLs were built on a GitHub server with the help of GitHub Actions. See:
[Native Libraries](https://github.com/JFormDesigner/FlatLaf/actions/workflows/natives.yml) [Native Libraries](https://github.com/JFormDesigner/FlatLaf/actions/workflows/natives.yml)
workflow. Then the produced Artifacts ZIP was downloaded and the DLL checked workflow. Then the produced Artifacts ZIP was downloaded, signed DLLs with
into Git. FormDev Software code signing certificate and committed the DLLs to Git.