Skip to content

Commit

Permalink
updated developers info and added Mosaic manual direct access to main…
Browse files Browse the repository at this point in the history
… menu
  • Loading branch information
d3cod3 committed Mar 9, 2020
1 parent 055f914 commit 02c50c4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#define VERSION_GRAPHIC "033"
#define DESCRIPTION "Live Visual Patching Creative-Coding Platform"
#define MOSAIC_WWW "https://mosaic.d3cod3.org/"
#define MOSAIC_DEVELOPERS "Emanuele Mazza, Daan de Lange"
#define TAGS "mosaic,openframeworks,macos,linux,windows,creative-coding,video,audio,graphics,live-coding,visual-programming,creative-coding,transmedia"

#define WINDOW_TITLE "Mosaic 0.3.3"
Expand Down
15 changes: 12 additions & 3 deletions src/ofApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ void ofApp::setup(){

ofLog(OF_LOG_NOTICE,"%s | %s <%s>",WINDOW_TITLE,DESCRIPTION,MOSAIC_WWW);
ofLog(OF_LOG_NOTICE," an open project by Emanuele Mazza aka n3m3da");
ofLog(OF_LOG_NOTICE,"Developers: %s",MOSAIC_DEVELOPERS);
ofLog(OF_LOG_NOTICE,"This project deals with the idea of integrate/amplify human-machine communication, offering a real-time flowchart based visual interface for high level creative coding.\nAs live-coding scripting languages offer a high level coding environment, ofxVisualProgramming and the Mosaic Project as his parent layer container,\naim at a high level visual-programming environment, with embedded multi scripting languages availability (Processing/Java, Lua, Python, GLSL and BASH).\n");

// Visual Programming Environment Load
Expand Down Expand Up @@ -451,12 +452,12 @@ void ofApp::drawImGuiInterface(){
if(ImGui::MenuItem("Mosaic Github")){
ofLaunchBrowser("https://github.com/d3cod3/Mosaic");
}
if(ImGui::MenuItem("Mosaic Manual")){
ofLaunchBrowser("https://mosaic.d3cod3.org/manual/");
}
if(ImGui::MenuItem("Mosaic Reference")){
ofLaunchBrowser("https://mosaic.d3cod3.org/#reference");
}
if(ImGui::MenuItem("About Mosaic")){
showAboutWindow = !showAboutWindow;
}
ImGui::Spacing();
ImGui::Separator();
ImGui::Separator();
Expand All @@ -467,6 +468,13 @@ void ofApp::drawImGuiInterface(){
if(ImGui::MenuItem("ofxAddons")){
ofLaunchBrowser("http://ofxaddons.com/categories");
}
ImGui::Spacing();
ImGui::Separator();
ImGui::Separator();
ImGui::Spacing();
if(ImGui::MenuItem("About Mosaic")){
showAboutWindow = !showAboutWindow;
}
ImGui::EndMenu();
}

Expand All @@ -492,6 +500,7 @@ void ofApp::drawImGuiInterface(){
ImGui::Spacing();
ImGui::TextWrapped( DESCRIPTION );
ImGui::TextWrapped( MOSAIC_WWW );
ImGui::TextWrapped( "Developers: %s", MOSAIC_DEVELOPERS );
ImGui::Spacing();
ImGui::Text(" ");
ImGui::Spacing();
Expand Down

0 comments on commit 02c50c4

Please sign in to comment.