diff --git a/README.md b/README.md index 909558b..5b7ebf4 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,13 @@ None so far. Version history ------------ -### Version 0.1.3: - - Add sources view (for selected surface) - - Select image sources - - Save and load composition +### Version 0.1.3 (2014-05-16): + - Added sources view (for selected surface) + - Added possibility to select image sources + - Save and load surfaces with image sources + - Joint and surface movement using arrow keys + - Added fullscreen toggle + - Adjusted the example to work with new changes ### Version 0.1.2 (2014-05-12): Restructured GUI mechanism for flexibility later. diff --git a/example/src/ofApp.cpp b/example/src/ofApp.cpp index 20d8aae..dd3132e 100644 --- a/example/src/ofApp.cpp +++ b/example/src/ofApp.cpp @@ -47,12 +47,15 @@ void ofApp::draw() if ( bShowInfo ) { // Draw instructions stringstream ss; - ss << "There are 3 modes:\n\n"; + ss << "There are 4 modes:\n\n"; ss << " 1. Presentation mode\n"; ss << " 2. Texture mapping mode\n"; ss << " 3. Projection mapping mode\n"; ss << " 4. Source selection mode\n\n"; ss << "You can switch between the modes by using <1>, <2>, <3> and <4> keys on the keyboard.\n\n"; + ss << "Press or to add random or normal surface.\n"; + ss << "Press to save the composition.\n"; + ss << "Press to toggle fullscreen.\n"; ss << "Hit to hide this message."; ofDrawBitmapStringHighlight(ss.str(), 10, 20, ofColor(0,0,0,100), ofColor(255,255,255,200));