diff --git a/CHANGELOG b/CHANGELOG index 3649a19..94d301d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ Changelog 0.7 * Added trophies + * New Campaign missions 0.6 diff --git a/README.md b/README.md index f7ee228..5814c26 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,10 @@ You can support development of this game by purchasing one of the books in the t Website: www.battleforthesolarsystem.com Email: stephenjsweeney@battleforthesolarsystem.com +## SCREENSHOTS + +Screenshots from various versions can be found here: https://github.com/stephenjsweeney/tbftss/tree/master/dev/screenshots + ## CREDITS ### GRAPHICS diff --git a/STATS.md b/STATS.md new file mode 100644 index 0000000..4fbd5f9 --- /dev/null +++ b/STATS.md @@ -0,0 +1,17 @@ +# Statistics + +* Lines of code: 17364 +* Size of source: 535K +* Size of data: 496K +* Size of graphics: 3.4M +* Size of sound: 638K +* Size of music: 53M + +* Number of missions: 60 (inc. Sol) +* Number of challenges: 42 +* Number of spacecraft: 47 +* Number of trophies: 42 + +* Translatable strings: 681 + +* Number of GIT revisions: 1007 diff --git a/dev/stats.sh b/dev/stats.sh index 3a5c133..948f5cc 100755 --- a/dev/stats.sh +++ b/dev/stats.sh @@ -1,6 +1,6 @@ #!/bin/bash -e -STATS_FILE="stats.md" +STATS_FILE="STATS.md" cd .. @@ -37,7 +37,7 @@ echo "* Size of sound: $SND_SIZE" >> $STATS_FILE echo "* Size of music: $MUSIC_SIZE" >> $STATS_FILE echo "" >> $STATS_FILE -echo "* Number of missions: $NUM_MISSIONS" >> $STATS_FILE +echo "* Number of missions: $NUM_MISSIONS (inc. Sol)" >> $STATS_FILE echo "* Number of challenges: $NUM_CHALLENGES" >> $STATS_FILE echo "* Number of spacecraft: $TOTAL_CRAFT" >> $STATS_FILE echo "* Number of trophies: $NUM_TROPHIES" >> $STATS_FILE diff --git a/stats.md b/stats.md deleted file mode 100644 index 75d4689..0000000 --- a/stats.md +++ /dev/null @@ -1,17 +0,0 @@ -# Statistics - -* Lines of code: 17354 -* Size of source: 535K -* Size of data: 490K -* Size of graphics: 3.4M -* Size of sound: 638K -* Size of music: 53M - -* Number of missions: 59 -* Number of challenges: 42 -* Number of spacecraft: 47 -* Number of trophies: 41 - -* Translatable strings: 644 - -* Number of GIT revisions: 987