Ver Fonte

Merge branch 'nick' of http://prssvr:3000/PRSDigital/prs into nick

Nick-PRSDigital@bitbucket.org há 2 anos atrás
pai
commit
40fa0b2d2e

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

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

+ 0 - 5
prs.mobile/comal.timesheets/DigitalForms/Renderer/QAFormViewer.cs

@@ -2043,11 +2043,6 @@ namespace comal.timesheets.QAForms
                 return null;
             }
 
-        }
-
-        public void SetFieldColour(string field, System.Drawing.Color? colour = null)
-        {
-            
         }
         #endregion
         

+ 3 - 6
prs.mobile/comal.timesheets/Main/MainPage.xaml.cs

@@ -107,10 +107,7 @@ namespace comal.timesheets
 
         private void RunCustomScript()
         {
-            var form = new Client<KanbanForm>().Query(new Filter<KanbanForm>(x => x.FormCompletedBy.ID).IsEqualTo(ClientFactory.UserGuid).
-                And(x => x.Form.Code).IsEqualTo("TEST 1")).Rows.First().ToObject<KanbanForm>();
-            form.FormCompleted = DateTime.Now;
-            new Client<KanbanForm>().Save(form, "Test by nick");
+            
         }
 
         private void NotifyChanges()
@@ -118,8 +115,8 @@ namespace comal.timesheets
             string latestChanges = "";
             List<string> changes = new List<string>
             {
-                "- Bug fixes stock control functions",
-                "- Improvements to Digital Form expressions",
+                "- Further fixes to Dimensions",
+                "- iOS login issues"
                                                            
             };
             foreach (string s in changes)

+ 1 - 1
prs.mobile/comal.timesheets/Main/Settings.xaml

@@ -88,7 +88,7 @@
                         <ColumnDefinition x:Name="passwordTwo" Width="0"/>
                     </Grid.ColumnDefinitions>
                     <maskededit:SfMaskedEdit x:Name="Password" Grid.Column="0"  VerticalOptions="Fill" HorizontalOptions="Fill" FontSize="Small" ClearButtonVisibility="WhileEditing"
-                        Value="{Binding Password}" ValueChanged="UserPassword_Changed" PasswordChar="*" EnablePasswordDelay="True" PasswordDelayDuration="2"
+                        Value="{Binding Password}" ValueChanged="UserPassword_Changed" PasswordChar="*" EnablePasswordDelay="True" PasswordDelayDuration="0.5"
                                      />
                     <Entry Grid.Column="1" x:Name="showPassword" HorizontalOptions="Fill" FontSize="Small" IsEnabled="False" VerticalOptions="Fill"/>
                 </Grid>