Skip to content

Commit

Permalink
Fix JS in proton (#532)
Browse files Browse the repository at this point in the history
* Fix JS error

* v52
  • Loading branch information
danoli3 authored Jun 26, 2024
1 parent e7bbf6f commit 9382775
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commandLine/src/projects/baseProject.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#define PG_VERSION "51"
#define PG_VERSION "52"

#include "ofAddon.h"
#include "pugixml.hpp"
Expand Down
2 changes: 1 addition & 1 deletion frontend/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ ipcMain.on('launchProjectinIDE', (event, arg) => {
}

// // launch xcode
if( arg.platform == 'osx' || arg.platform == 'ios' || arg.platform == 'macos' || || arg.platform == 'tvos' ){
if( arg.platform == 'osx' || arg.platform == 'ios' || arg.platform == 'macos' || arg.platform == 'tvos' ){
if(hostplatform == 'osx'){
let osxPath = path.join(fullPath, projectName + '.xcodeproj');
console.log( osxPath );
Expand Down

0 comments on commit 9382775

Please sign in to comment.