Skip to content

Commit

Permalink
Version 1.0.4: Add native Android mobile app tag
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriele-v committed Feb 27, 2016
1 parent 6e53bfd commit 29e7973
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 15 deletions.
3 changes: 3 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.0.4
- Add native Android mobile app tag

Version 1.0.3
- iOS WebApp openend links in native browser instead of the App
- Autofocus (HTML5) to username on login screen
Expand Down
3 changes: 2 additions & 1 deletion WebApp/about.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MMEX">
<meta name="apple-mobile-web-app-capable" content="yes" />

Expand Down Expand Up @@ -56,6 +57,6 @@
<br />
</div>

<script src="res/app/base-1.0.3.js" type="text/javascript"></script>
<script src="res/app/base-1.0.4.js" type="text/javascript"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion WebApp/configuration_system.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## don't touch ##
######################################
$dbpath = "MMEX_New_Transaction.db";
$app_version = "1.0.3";
$app_version = "1.0.4";
$api_version = "1.0.1";
$tr_default_status = "R";
$tr_default_type = "Withdrawal";
Expand Down
1 change: 1 addition & 0 deletions WebApp/error.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MMEX">
<meta name="apple-mobile-web-app-capable" content="yes" />

Expand Down
5 changes: 4 additions & 1 deletion WebApp/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,9 @@ public static function upgrade_db ()
case "1.0.2":
db_upgrade::upgrade_version("1.0.3");
break;
case "1.0.3":
db_upgrade::upgrade_version("1.0.4");
break;
case $app_version;
break;
default:
Expand Down Expand Up @@ -999,7 +1002,7 @@ class various
{
public static function send_alert_and_redirect ($AlertMessage, $AlertRedirect)
{
echo "<script src='res/app/functions-1.0.3.js' type='text/javascript'></script>";
echo "<script src='res/app/functions-1.0.4.js' type='text/javascript'></script>";
echo "<script language='javascript'>";
if ($AlertRedirect <> "None")
{echo "send_alert_and_redirect ('${AlertMessage}','${AlertRedirect}')";}
Expand Down
3 changes: 2 additions & 1 deletion WebApp/guide.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MMEX">
<meta name="apple-mobile-web-app-capable" content="yes" />

Expand Down Expand Up @@ -55,6 +56,6 @@
<br />
</div>

<script src="res/app/base-1.0.3.js" type="text/javascript"></script>
<script src="res/app/base-1.0.4.js" type="text/javascript"></script>
</body>
</html>
3 changes: 2 additions & 1 deletion WebApp/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,9 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MMEX">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="MMEX">

<title>Money Manager EX</title>
<link rel="shortcuticon" href="res/favicon.ico" />
Expand Down
3 changes: 2 additions & 1 deletion WebApp/insert.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MMEX">
<meta name="apple-mobile-web-app-capable" content="yes" />

Expand Down Expand Up @@ -89,6 +90,6 @@
<br />
</div>

<script src="res/app/base-1.0.3.js" type="text/javascript"></script>
<script src="res/app/base-1.0.4.js" type="text/javascript"></script>
</body>
</html>
3 changes: 2 additions & 1 deletion WebApp/landing.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MMEX">
<meta name="apple-mobile-web-app-capable" content="yes" />

Expand Down Expand Up @@ -45,6 +46,6 @@
<br />
</div>

<script src="res/app/base-1.0.3.js" type="text/javascript"></script>
<script src="res/app/base-1.0.4.js" type="text/javascript"></script>
</body>
</html>
7 changes: 4 additions & 3 deletions WebApp/new_transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MMEX">
<meta name="apple-mobile-web-app-capable" content="yes" />

Expand All @@ -24,8 +25,8 @@
<script src="res/modernizr-3.2.0.js" type="text/javascript"></script>
<script src="res/jquery-2.1.4.min.js" type="text/javascript"></script>
<script src="res/typeahead.bundle-0.10.2.min.js" type="text/javascript"></script>
<script src="res/app/functions-1.0.3.js" type="text/javascript"></script>
<script src="res/app/new_transaction-1.0.3.js" type="text/javascript"></script>
<script src="res/app/functions-1.0.4.js" type="text/javascript"></script>
<script src="res/app/new_transaction-1.0.4.js" type="text/javascript"></script>
</head>

<body>
Expand Down Expand Up @@ -176,6 +177,6 @@
}
?>

<script src="res/app/base-1.0.3.js" type="text/javascript"></script>
<script src="res/app/base-1.0.4.js" type="text/javascript"></script>
</body>
</html>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions WebApp/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MMEX">
<meta name="apple-mobile-web-app-capable" content="yes" />

Expand All @@ -85,7 +86,7 @@
<link rel="stylesheet" type="text/css" href="res/bootstrap-theme-3.3.6.min.css" />
<link rel="stylesheet" type="text/css" href="res/style_global-0.9.9.css" />

<script src="res/app/functions-1.0.3.js" type="text/javascript"></script>
<script src="res/app/functions-1.0.4.js" type="text/javascript"></script>
<script src="res/jquery-2.1.4.min.js" type="text/javascript"></script>

</head>
Expand Down Expand Up @@ -204,6 +205,6 @@ function Disable_Authentication()
</form>
</div>

<script src="res/app/base-1.0.3.js" type="text/javascript"></script>
<script src="res/app/base-1.0.4.js" type="text/javascript"></script>
</body>
</html>
7 changes: 4 additions & 3 deletions WebApp/show.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MMEX">
<meta name="apple-mobile-web-app-capable" content="yes" />

Expand All @@ -21,7 +22,7 @@

<script src="res/jquery-2.1.4.min.js" type="text/javascript"></script>
<script src="res/bootstrap-3.3.6.min.js" type="text/javascript"></script>
<script src="res/app/functions-1.0.3.js" type="text/javascript"></script>
<script src="res/app/functions-1.0.4.js" type="text/javascript"></script>

</head>

Expand Down Expand Up @@ -160,7 +161,7 @@
echo "</div>\n";
}
?>
<script src="res/app/base-1.0.3.js" type="text/javascript"></script>
<script src="res/app/show-1.0.3.js" type="text/javascript"></script>
<script src="res/app/base-1.0.4.js" type="text/javascript"></script>
<script src="res/app/show-1.0.4.js" type="text/javascript"></script>
</body>
</html>

0 comments on commit 29e7973

Please sign in to comment.