Skip to content

Commit 6d24c15

Browse files
authored
projectGenerator updates 0.95.0 (#623)
* pg 0.95.0 - electron - 31.2.0 -> 35.0.1 - jquery - 3.5.30 -> 3.5.32 - electron-builder - 24.13.3 -> 25.1.8 - node - 20.14.0 -> 23.9.0 - electron notarize - 2.4.0 -> 2.5.0 - electron osx sign - 1.3.1 -> 1.3.3 - mac-arm64 seperate upload - scripts for other linux targets * action * action fix
1 parent ef863d6 commit 6d24c15

File tree

9 files changed

+1498
-719
lines changed

9 files changed

+1498
-719
lines changed

.github/workflows/build-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- name: Copy GUI tarball to root directory
9292
run: |
9393
cd ./../openFrameworks/apps/projectGenerator/frontend/dist
94-
mv projectGenerator-0.67.0.tar.gz $GITHUB_WORKSPACE/projectGenerator-linux-gui.gz
94+
mv projectGenerator-0.95.0.tar.gz $GITHUB_WORKSPACE/projectGenerator-linux-gui.gz
9595
9696
- name: Test Artefact zip
9797
run: |

.github/workflows/build-macos.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,11 @@ jobs:
6565
./scripts/osx/ci_install_core.sh
6666
- name: Build PG macOS GUI and command line
6767
run: |
68-
# echo "Current directory after moving up: (should be projectGenerator/projectGenerator)"
69-
# pwd
68+
# Move up one level to projectGenerator directory
7069
cd ../
71-
72-
# echo "Current directory after moving up: (should be projectGenerator/)"
73-
# echo "------------------"
74-
# pwd
75-
# ls
76-
# echo "------------------"
7770
if [ -f "openFrameworks/apps/projectGenerator/scripts/osx/ci_build_pg.sh" ]; then
7871
echo "ci_build_pg.sh exists, running script..."
7972
openFrameworks/apps/projectGenerator/scripts/osx/ci_build_pg.sh
80-
8173
else
8274
echo "ci_build_pg.sh does not exist, checking Git status..."
8375
if cd openFrameworks/apps/projectGenerator; then
@@ -124,8 +116,16 @@ jobs:
124116
else
125117
echo "projectGenerator-osx.zip NOT found at level 0"
126118
fi
127-
- name: Test cmdline
119+
- name: Test cmdline
128120
run: ../openFrameworks/apps/projectGenerator/scripts/osx/test_cmdline.sh
121+
122+
- name: Update Release macOS-arm64
123+
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
124+
uses: softprops/[email protected]
125+
with:
126+
token: ${{ secrets.GITHUB_TOKEN }}
127+
tag_name: ${{ env.RELEASE }}
128+
files: dist/projectGenerator-mac-arm64.zip
129129
- name: Update Release macOS
130130
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
131131
uses: softprops/[email protected]

commandLine/src/defines.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define OFPROJECTGENERATOR_MAJOR_VERSION "0"
2-
#define OFPROJECTGENERATOR_MINOR_VERSION "94"
2+
#define OFPROJECTGENERATOR_MINOR_VERSION "95"
33
#define OFPROJECTGENERATOR_PATCH_VERSION "0"
44

55
#define PG_VERSION (OFPROJECTGENERATOR_MAJOR_VERSION "." OFPROJECTGENERATOR_MINOR_VERSION "." OFPROJECTGENERATOR_PATCH_VERSION)

0 commit comments

Comments
 (0)