diff options
| author | Felix Queißner <git@mq32.de> | 2020-06-30 22:59:14 +0200 |
|---|---|---|
| committer | Felix Queißner <git@mq32.de> | 2020-06-30 22:59:14 +0200 |
| commit | a3746f75d8248f242c1d4a8d953883a88350677f (patch) | |
| tree | 018e565c6867da872c9bbf790c53c3b273aeaa40 | |
| parent | fdc409bee26abdd9d0cf1d4960565dbcfe895c68 (diff) | |
| parent | 23ec85afe6f1212bb49f946fc8203eb18c65be0c (diff) | |
| download | kristall-a3746f75d8248f242c1d4a8d953883a88350677f.tar.gz | |
Merge branch 'master' of https://github.com/MasterQ32/kristall
| -rw-r--r-- | BUILDING.md | 22 | ||||
| -rw-r--r-- | ROADMAP.md | 3 | ||||
| -rw-r--r-- | src/mainwindow.ui | 10 |
3 files changed, 32 insertions, 3 deletions
diff --git a/BUILDING.md b/BUILDING.md index b093f44..6b9290a 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -57,7 +57,27 @@ These notes are probably also correct for Debian (someone please verify) #### Notes on void linux - set env variable `QT_SELECT=5` -#### Windows +#### Windows (MinGW) +Install Qt via the Qt installer. Install the following components: + +**Required:** +- `Qt/Qt 5.15.0/MinGW 8.1.0 64-bit` +- `Qt/Developer and Designer Tools/MinGW 8.1.0 64 bit` +- `Qt/Developer and Designer Tools/OpenSSL 64-bit binaries` +**Optional:** +- `Qt/Developer and Designer Tools/Qt Creator 4.12.3 CDB Debugger Support` +- `Qt/Developer and Designer Tools/Debugging Tools for Windows` +- `Qt/Developer and Designer Tools/Qt Creator 4.12.3 CDB Debugger Support` +- `Qt/Developer and Designer Tools/OpenSSL source code` + +If you didn't istall Qt to `C:\Qt`, you have to adjust the paths in `src/kristall.pro` for the `win32-g++` adjustments to the path you used. + +Then open `src/kristall.pro` with Qt creator to compile the project. Alternativly you can use `ci\build-and-deploy.bat`, but note that this script tries to deploy the file to `random-projects.net`, so this will fail in the end. + +**Troubleshouting:** +If you get an error message that `MSVCR100.dll` is missing, you may need to install the [Microsoft C++ Runtime](https://www.microsoft.com/en-us/download/details.aspx?id=14632). + +#### Windows MSVC (not up to date) Compile OpenSSL with the following steps: - Install [Perl](https://www.perl.org/get.html) (either ActiveState or Strawberry) @@ -54,6 +54,9 @@ This document contains TODO items for planned Kristall releases as well as some - [x] Migrate settings-based color schemes to folder - [x] Define human-readable color scheme file format - [ ] Add per-site scheming +- [ ] Setup sane default fonts + - [ ] `Segoe UI`, `Consolas` for Windows + - [ ] ## Unspecced - [ ] Add option: "Transient certificates survive an application reboot and are stored on disk" diff --git a/src/mainwindow.ui b/src/mainwindow.ui index 2904969..7c792a5 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -274,7 +274,10 @@ <normaloff>.</normaloff>.</iconset> </property> <property name="text"> - <string>Backward</string> + <string>Back</string> + </property> + <property name="toolTip"> + <string>Back</string> </property> <property name="shortcut"> <string>Alt+Left</string> @@ -286,7 +289,10 @@ <normaloff>.</normaloff>.</iconset> </property> <property name="text"> - <string>Foreward</string> + <string>Forward</string> + </property> + <property name="toolTip"> + <string>Forward</string> </property> <property name="shortcut"> <string>Alt+Right</string> |
