Browse Source

PRS MOBILE - version 7.11.3

Nick-PRSDigital@bitbucket.org 2 years ago
parent
commit
0f3c4f0729

+ 1 - 1
prs.mobile/comal.timesheets.Android/Properties/AndroidManifest.xml

@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="710300" package="au.com.frogsoftware.timesheets.comal_timesheets" android:installLocation="preferExternal" android:versionName="7.10.3">
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="711300" package="au.com.frogsoftware.timesheets.comal_timesheets" android:installLocation="preferExternal" android:versionName="7.11.3">
 	<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="33" />
 	<uses-permission android:name="android.permission.INTERNET" />
 	<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

+ 1 - 0
prs.mobile/comal.timesheets.Android/Resources/Resource.designer.cs

@@ -2,6 +2,7 @@
 //------------------------------------------------------------------------------
 // <auto-generated>
 //     This code was generated by a tool.
+//     Runtime Version:4.0.30319.42000
 //
 //     Changes to this file may cause incorrect behavior and will be lost if
 //     the code is regenerated.

+ 2 - 2
prs.mobile/comal.timesheets.iOS/Info.plist

@@ -9,9 +9,9 @@
 	<key>CFBundleName</key>
 	<string>TimeBench</string>
 	<key>CFBundleShortVersionString</key>
-	<string>7.10.1</string>
+	<string>7.11.3</string>
 	<key>CFBundleVersion</key>
-	<string>7.10.1</string>
+	<string>7.11.3</string>
 	<key>NSBluetoothAlwaysUsageDescription</key>
 	<string>Bluetooth access is needed to locate equipment items</string>
 	<key>NSBluetoothPeripheralUsageDescription</key>

+ 1 - 3
prs.mobile/comal.timesheets/Data Classes/NotifyChanges.cs

@@ -17,9 +17,7 @@ namespace comal.timesheets
             string latestChanges = "";
             List<string> changes = new List<string>
                 {
-                "- Fix to scanner page",
-                "- Fix to digital forms loading from task",
-                "- Added employee by job-only view of modules"
+                "- Login fixes"
                 };
             foreach (string s in changes)
             {

+ 2 - 3
prs.mobile/comal.timesheets/Main/App.xaml.cs

@@ -14,7 +14,6 @@ using XF.Material.Forms.UI;
 using Xamarin.Essentials;
 using SkiaSharp;
 using System.Threading;
-using Java.Util;
 using System.Linq;
 using System.Collections.Generic;
 
@@ -80,7 +79,7 @@ namespace comal.timesheets
                         if (Settings.URL.ToUpper().Contains("COM-AL"))
                         {
                             List<string> list = new List<string>();
-                            list.Add("http://remote.com-al.com.au:)" + Settings.Port);
+                            list.Add("http://remote.com-al.com.au:" + Settings.Port);
                             list.Add("http://remote2.com-al.com.au:" + Settings.Port);
                             list.Add("http://remote3.com-al.com.au:" + Settings.Port);
 
@@ -96,7 +95,7 @@ namespace comal.timesheets
                     if (DBSettings.URLs[0].ToUpper().Contains("COM-AL"))
                     {
                         List<string> list = new List<string>();
-                        list.Add("http://remote.com-al.com.au:)" + Settings.Port);
+                        list.Add("http://remote.com-al.com.au:" + Settings.Port);
                         list.Add("http://remote2.com-al.com.au:" + Settings.Port);
                         list.Add("http://remote3.com-al.com.au:" + Settings.Port);
 

+ 0 - 1
prs.mobile/comal.timesheets/StringList.xaml.cs

@@ -6,7 +6,6 @@ using System.Threading.Tasks;
 
 using Xamarin.Forms;
 using Xamarin.Forms.Xaml;
-using static Android.Content.ClipData;
 
 namespace comal.timesheets
 {