From 4f69bc9689ed930656e26e03f04b9aa3628bdfa4 Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 12 Dec 2022 21:10:36 +0100 Subject: [PATCH 1/3] Create gpt-commit-summarizer.yml [ci skip] --- .github/workflows/gpt-commit-summarizer.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/gpt-commit-summarizer.yml diff --git a/.github/workflows/gpt-commit-summarizer.yml b/.github/workflows/gpt-commit-summarizer.yml new file mode 100644 index 0000000..e2d910e --- /dev/null +++ b/.github/workflows/gpt-commit-summarizer.yml @@ -0,0 +1,17 @@ +name: GPT Commits summarizer +# Summary: This action will write a comment about every commit in a pull request, as well as generate a summary for every file that was modified and add it to the review page, compile a PR summary from all commit summaries and file diff summaries, and delete outdated code review comments + +on: + pull_request: + types: [opened, synchronize] + +jobs: + summarize: + runs-on: ubuntu-latest + permissions: write-all # Some repositories need this line + + steps: + - uses: KanHarI/gpt-commit-summarizer@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} From 24e10c308dedcba842136d570943a1bb612d9327 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 7 Jan 2023 13:01:35 +0100 Subject: [PATCH 2/3] Delete gpt-commit-summarizer.yml --- .github/workflows/gpt-commit-summarizer.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/gpt-commit-summarizer.yml diff --git a/.github/workflows/gpt-commit-summarizer.yml b/.github/workflows/gpt-commit-summarizer.yml deleted file mode 100644 index e2d910e..0000000 --- a/.github/workflows/gpt-commit-summarizer.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: GPT Commits summarizer -# Summary: This action will write a comment about every commit in a pull request, as well as generate a summary for every file that was modified and add it to the review page, compile a PR summary from all commit summaries and file diff summaries, and delete outdated code review comments - -on: - pull_request: - types: [opened, synchronize] - -jobs: - summarize: - runs-on: ubuntu-latest - permissions: write-all # Some repositories need this line - - steps: - - uses: KanHarI/gpt-commit-summarizer@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} From 61a301a24c2ed2246a8e47e6a56fa827d3c3c8d5 Mon Sep 17 00:00:00 2001 From: Jennifer Wilcox Date: Wed, 18 Jan 2023 14:08:48 -0600 Subject: [PATCH 3/3] Ignore clock and active sensing on serial MIDI (#417) * Ignore clock and active sensing on serial MIDI Fixes #416 I'm not entirely sure this is the correct way to fix it. But it does seem to fix the problem I was seeing. I can now completely mash the keyboard and no notes will get stuck on. * Handle all system real time messages in serial --- src/serialmididevice.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/serialmididevice.cpp b/src/serialmididevice.cpp index 186efc3..883fd4d 100644 --- a/src/serialmididevice.cpp +++ b/src/serialmididevice.cpp @@ -98,7 +98,13 @@ void CSerialMIDIDevice::Process (void) continue; } - if(m_nSysEx > 0) + // System Real Time messages may appear anywhere in the byte stream, so handle them specially + if(uchData == 0xF8 || uchData == 0xFA || uchData == 0xFB || uchData == 0xFC || uchData == 0xFE || uchData == 0xFF) + { + MIDIMessageHandler (&uchData, 1); + continue; + } + else if(m_nSysEx > 0) { m_SerialMessage[m_nSysEx++]=uchData; if ((uchData & 0x80) == 0x80 || m_nSysEx >= MAX_MIDI_MESSAGE)