From d830328d5c8714a8cc1e044dfebd9f132a0d2b42 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 3 Mar 2020 18:52:37 +0100 Subject: [PATCH 1/7] add image compression --- .github/workflows/image.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/image.yml diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml new file mode 100644 index 0000000..578ad75 --- /dev/null +++ b/.github/workflows/image.yml @@ -0,0 +1,18 @@ +name: Compress images +on: [push] + paths: + - '**.jpg' + - '**.png' + - '**.webp' +jobs: + build: + name: calibreapp/image-actions + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@master + + - name: Compress Images + uses: calibreapp/image-actions@master + with: + githubToken: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From f8317ba4c276ab7d9aefa95509a8992a47e5964a Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 3 Mar 2020 18:58:35 +0100 Subject: [PATCH 2/7] fix action --- .github/workflows/image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index 578ad75..cff9c35 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -1,5 +1,5 @@ name: Compress images -on: [push] +on: push paths: - '**.jpg' - '**.png' From e2f86aba773f6bb0ceb8beb29b4ba166abb48143 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 3 Mar 2020 19:05:09 +0100 Subject: [PATCH 3/7] fix action --- .github/workflows/image.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index cff9c35..d2fb2d4 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -1,9 +1,15 @@ name: Compress images -on: push - paths: - - '**.jpg' - - '**.png' - - '**.webp' +on: + push: + paths: + - '**.jpg' + - '**.png' + - '**.webp' + pull_request: + paths: + - '**.jpg' + - '**.png' + - '**.webp' jobs: build: name: calibreapp/image-actions From c83901931fcfd33247fd7eb101b35af062c063e5 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 31 May 2020 18:01:39 +0200 Subject: [PATCH 4/7] add hotkeys --- SUMMARY.md | 3 +++ ui/hotkeys.md | 14 ++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 ui/hotkeys.md diff --git a/SUMMARY.md b/SUMMARY.md index 27e060f..7e62254 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -1,6 +1,9 @@ # Summary * [Introduction]({%}?page=README) +## UI +* [Hotkeys]({%}?page=ui/hotkeys) + ## Setup * [Server]({%}?page=setup/server) * [WebApplication]({%}?page=setup/webapplication) diff --git a/ui/hotkeys.md b/ui/hotkeys.md new file mode 100644 index 0000000..3552050 --- /dev/null +++ b/ui/hotkeys.md @@ -0,0 +1,14 @@ +# Hotkeys + +## Page Navigation + +The following hotkeys allow you to navigate the application. + +| Element | Hotkey | Action | +| ----------------- | ------------------ | --------------------------------------------------- | +| Global | Ctrl + P | Jump to search bar | +| Global | Ctrl + Right Arrow | Jump to next UI element | +| Global | Ctrl + Left Arrow | Jump to previous UI element | +| Global | Ctrl + B | Go to previous page (back) | +| Link or Tab | Enter | Activate/execute/follow link | +| Form | Ctrl + S | Submit form | \ No newline at end of file From c80233950023479c58250212d94a30656055ab6d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 31 May 2020 18:09:29 +0200 Subject: [PATCH 5/7] improve format --- ui/hotkeys.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ui/hotkeys.md b/ui/hotkeys.md index 3552050..7306e9d 100644 --- a/ui/hotkeys.md +++ b/ui/hotkeys.md @@ -11,4 +11,11 @@ The following hotkeys allow you to navigate the application. | Global | Ctrl + Left Arrow | Jump to previous UI element | | Global | Ctrl + B | Go to previous page (back) | | Link or Tab | Enter | Activate/execute/follow link | + +## Form Interaction + +The following hotkeys provide form interactions. + +| Element | Hotkey | Action | +| ----------------- | ------------------ | --------------------------------------------------- | | Form | Ctrl + S | Submit form | \ No newline at end of file From 7795652d8841fd4c3df61229c8954848530eed83 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 31 Jul 2020 15:39:25 +0200 Subject: [PATCH 6/7] undo reset --- .gitignore | 1 + ui/hotkeys.md | 11 ++++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..22d0d82 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +vendor diff --git a/ui/hotkeys.md b/ui/hotkeys.md index 7306e9d..8ff062c 100644 --- a/ui/hotkeys.md +++ b/ui/hotkeys.md @@ -18,4 +18,13 @@ The following hotkeys provide form interactions. | Element | Hotkey | Action | | ----------------- | ------------------ | --------------------------------------------------- | -| Form | Ctrl + S | Submit form | \ No newline at end of file +| Form | Ctrl + Enter | Submit form | + +## Table Interaction + +The following hotkeys provide table interactions. + +| Element | Hotkey | Action | +| ----------------- | ------------------ | --------------------------------------------------- | +| Table | Ctrl + A | Select all table elements | +| Table | Ctrl + E | Export selected elements to excel | From 61815853860b03f032a3725249c146b975ac4dc9 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 27 Aug 2020 18:54:34 +0200 Subject: [PATCH 7/7] link fixes --- SUMMARY.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/SUMMARY.md b/SUMMARY.md index 7e62254..47d9354 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -1,27 +1,27 @@ # Summary -* [Introduction]({%}?page=README) +* [Introduction]({%}&page=README) ## UI -* [Hotkeys]({%}?page=ui/hotkeys) +* [Hotkeys]({%}&page=ui/hotkeys) ## Setup -* [Server]({%}?page=setup/server) -* [WebApplication]({%}?page=setup/webapplication) -* [SocketApplication]({%}?page=setup/socketapplication) -* [ConsoleApplication]({%}?page=setup/consoleapplication) +* [Server]({%}&page=setup/server) +* [WebApplication]({%}&page=setup/webapplication) +* [SocketApplication]({%}&page=setup/socketapplication) +* [ConsoleApplication]({%}&page=setup/consoleapplication) ## Administration -* [Accounts]({%}?page=administration/accounts) -* [Groups]({%}?page=administration/groups) -* [Modules]({%}?page=administration/modules) -* [Jobs]({%}?page=administration/jobs) +* [Accounts]({%}&page=administration/accounts) +* [Groups]({%}&page=administration/groups) +* [Modules]({%}&page=administration/modules) +* [Jobs]({%}&page=administration/jobs) ## Maintenance -* [Backup]({%}?page=maintenance/backup) -* [Updates]({%}?page=maintenance/updates_patches) -* [Monitoring]({%}?page=maintenance/monitoring) +* [Backup]({%}&page=maintenance/backup) +* [Updates]({%}&page=maintenance/updates_patches) +* [Monitoring]({%}&page=maintenance/monitoring) ## Security -* [Server]({%}?page=security/server) -* [Application]({%}?page=security/application) -* [Mentality]({%}?page=security/mentality) +* [Server]({%}&page=security/server) +* [Application]({%}&page=security/application) +* [Mentality]({%}&page=security/mentality)