.60 beta build
This commit is contained in:
parent
86f6c78fc4
commit
7756f3c365
File diff suppressed because one or more lines are too long
|
@ -4,8 +4,8 @@
|
||||||
-->
|
-->
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.nesbox.tic"
|
package="com.nesbox.tic"
|
||||||
android:versionCode="5001"
|
android:versionCode="6000"
|
||||||
android:versionName="0.50.1"
|
android:versionName="0.60.0"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
|
|
||||||
<!-- Android 2.3.3 -->
|
<!-- Android 2.3.3 -->
|
||||||
|
|
|
@ -19,9 +19,9 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>0.50.1</string>
|
<string>0.60.0</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>0.50.1</string>
|
<string>0.60.0</string>
|
||||||
<key>NSHumanReadableCopyright</key>
|
<key>NSHumanReadableCopyright</key>
|
||||||
<string>http://tic.computer © 2017</string>
|
<string>http://tic.computer © 2017</string>
|
||||||
<key>NSHighResolutionCapable</key>
|
<key>NSHighResolutionCapable</key>
|
||||||
|
|
Binary file not shown.
|
@ -27,9 +27,9 @@
|
||||||
#include "defines.h"
|
#include "defines.h"
|
||||||
|
|
||||||
#define TIC_VERSION_MAJOR 0
|
#define TIC_VERSION_MAJOR 0
|
||||||
#define TIC_VERSION_MINOR 50
|
#define TIC_VERSION_MINOR 60
|
||||||
#define TIC_VERSION_PATCH 1
|
#define TIC_VERSION_PATCH 0
|
||||||
#define TIC_VERSION_STATUS ""
|
#define TIC_VERSION_STATUS " dev"
|
||||||
|
|
||||||
#if defined(TIC80_PRO)
|
#if defined(TIC80_PRO)
|
||||||
#define TIC_VERSION_POST " Pro"
|
#define TIC_VERSION_POST " Pro"
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
#define DEF2STR2(x) #x
|
#define DEF2STR2(x) #x
|
||||||
#define DEF2STR(x) DEF2STR2(x)
|
#define DEF2STR(x) DEF2STR2(x)
|
||||||
|
|
||||||
#define TIC_VERSION_LABEL DEF2STR(TIC_VERSION_MAJOR) "." DEF2STR(TIC_VERSION_MINOR) "." DEF2STR(TIC_VERSION_PATCH) TIC_VERSION_STATUS TIC_VERSION_POST
|
#define TIC_VERSION_LABEL DEF2STR(TIC_VERSION_MAJOR) "." DEF2STR(TIC_VERSION_MINOR) "." DEF2STR(TIC_VERSION_PATCH) TIC_VERSION_POST TIC_VERSION_STATUS
|
||||||
#define TIC_PACKAGE "com.nesbox.tic"
|
#define TIC_PACKAGE "com.nesbox.tic"
|
||||||
#define TIC_NAME "TIC-80"
|
#define TIC_NAME "TIC-80"
|
||||||
#define TIC_NAME_FULL TIC_NAME " tiny computer"
|
#define TIC_NAME_FULL TIC_NAME " tiny computer"
|
||||||
|
|
Loading…
Reference in New Issue