Skip to content

Commit

Permalink
preparing 0.2.4 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
d3cod3 committed Sep 10, 2019
1 parent 36b7be8 commit 72fbc78
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bin/data/release.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.4
Binary file removed bin/data/videos/splash_background.mov
Binary file not shown.
Binary file added bin/data/videos/splash_background.mp4
Binary file not shown.
6 changes: 3 additions & 3 deletions src/SplashScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void SplashScreen::setup(){
startTime = ofGetElapsedTimeMillis();

// load background
background.load("videos/splash_background.mov");
background.load("videos/splash_background.mp4");
background.setLoopState(OF_LOOP_NORMAL);
background.play();

Expand All @@ -71,9 +71,9 @@ void SplashScreen::draw(){

ofSetColor(255);
// draw background
background.draw(0,0,ofGetCurrentWindow()->getWidth(),ofGetCurrentWindow()->getHeight());
background.draw(-40,0,ofGetCurrentWindow()->getWidth()+80,ofGetCurrentWindow()->getHeight());

ofSetColor(255,6);
ofSetColor(255,66);
if(ofGetScreenWidth() >= 2560 && ofGetScreenHeight() >= 1600){ // RETINA SCREEN
font.drawString(VERSION_GRAPHIC,452,182);
}else{
Expand Down
6 changes: 3 additions & 3 deletions src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
#pragma mark once

#define PACKAGE "Mosaic"
#define VERSION "0.2.0"
#define VERSION_GRAPHIC "020"
#define VERSION "0.2.4"
#define VERSION_GRAPHIC "024"
#define DESCRIPTION "Live Visual Patching Creative-Coding Platform"
#define MOSAIC_WWW "https://mosaic.d3cod3.org/"
#define TAGS "mosaic,openframeworks,macos,linux,windows,creative-coding,video,audio,graphics,live-coding,visual-programming,creative-coding,transmedia"

#define WINDOW_TITLE "Mosaic 0.2.0"
#define WINDOW_TITLE "Mosaic 0.2.4"
#define WINDOW_START_WIDTH 1280
#define WINDOW_START_HEIGHT 720

Expand Down

0 comments on commit 72fbc78

Please sign in to comment.