Skip to content

Commit

Permalink
version number, python 3.11 for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
ArdenButterfield committed Nov 5, 2023
1 parent 3340dfd commit ec17127
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/cmake_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,11 @@ jobs:
sudo hdiutil attach Packages.dmg
sudo installer -package /Volumes/Packages\ 1.2.10/Install\ Packages.pkg -target /
# sudo hdiutil detach /Volumes/Packages\ 1.2.10/Install\ Packages.pkg
- name: Python 3.11 (macos)
uses: actions/setup-python@v4
if: ${{ matrix.name == 'macOS' }}
with:
python-version: '3.11'
- name: Create and sign package (macOS)
if: ${{ matrix.name == 'macOS' }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion Source/GUIelements/TitlePanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void TitlePanel::paint (juce::Graphics& g)
juce::Justification::centredTop, true);
g.setFont(tooltip_font);
g.setColour(MaimColours::BEVEL_BLACK);
g.drawText("Version 1.0.0alpha", textRect.withTrimmedBottom(2).withTrimmedLeft(2), juce::Justification::bottomLeft, true);
g.drawText("Version 1.0.0", textRect.withTrimmedBottom(2).withTrimmedLeft(2), juce::Justification::bottomLeft, true);
}

void TitlePanel::resized()
Expand Down

0 comments on commit ec17127

Please sign in to comment.