From f4dfa680ce95c02b878cbcb938a3c81d68576b9d Mon Sep 17 00:00:00 2001 From: "Xamarin Public Jenkins (auto-signing)" Date: Fri, 1 Jun 2018 08:44:40 +0000 Subject: [PATCH] Imported Upstream version 5.14.0.116 Former-commit-id: a1060d06ad743429ccc16477092659123892e701 --- configure.REMOVED.git-id | 2 +- configure.ac.REMOVED.git-id | 2 +- mcs/build/common/Consts.cs | 2 +- .../System.Windows.Forms/PropertyGrid.cs | 9 ++++++--- .../System.IO/CoreFXFileSystemWatcherProxy.cs | 10 +++++----- .../System/System.IO/FileSystemWatcher.cs | 12 +++++++----- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Security.dll.REMOVED.git-id | 2 +- .../1051400003/System.Xml.dll.REMOVED.git-id | 2 +- .../1051400003/System.dll.REMOVED.git-id | 2 +- .../1051400003/mcs.exe.REMOVED.git-id | 2 +- .../1051400003/mscorlib.dll.REMOVED.git-id | 2 +- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Security.dll.REMOVED.git-id | 2 +- .../1051400003/System.Xml.dll.REMOVED.git-id | 2 +- .../1051400003/System.dll.REMOVED.git-id | 2 +- .../1051400003/mcs.exe.REMOVED.git-id | 2 +- .../1051400003/mscorlib.dll.REMOVED.git-id | 2 +- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Security.dll.REMOVED.git-id | 2 +- .../1051400003/System.Xml.dll.REMOVED.git-id | 2 +- .../1051400003/System.dll.REMOVED.git-id | 2 +- .../1051400003/mcs.exe.REMOVED.git-id | 2 +- .../1051400003/mscorlib.dll.REMOVED.git-id | 2 +- mono/mini/version.h | 2 +- po/mcs/de.gmo | Bin 5406 -> 5406 bytes po/mcs/de.po.REMOVED.git-id | 2 +- po/mcs/es.gmo | Bin 16329 -> 16329 bytes po/mcs/es.po.REMOVED.git-id | 2 +- po/mcs/ja.gmo | Bin 20863 -> 20863 bytes po/mcs/ja.po.REMOVED.git-id | 2 +- po/mcs/mcs.pot | 4 ++-- po/mcs/pt_BR.gmo | Bin 72806 -> 72806 bytes po/mcs/pt_BR.po.REMOVED.git-id | 2 +- 40 files changed, 52 insertions(+), 47 deletions(-) diff --git a/configure.REMOVED.git-id b/configure.REMOVED.git-id index c6f525d016..120ff61a1a 100644 --- a/configure.REMOVED.git-id +++ b/configure.REMOVED.git-id @@ -1 +1 @@ -44df991ba30f88ca18964668fe7dfeedaad59fbb \ No newline at end of file +f2975e434fb9a78dbc5f2ccc946c7cbf285a3a46 \ No newline at end of file diff --git a/configure.ac.REMOVED.git-id b/configure.ac.REMOVED.git-id index d35aa2c44f..402e850e30 100644 --- a/configure.ac.REMOVED.git-id +++ b/configure.ac.REMOVED.git-id @@ -1 +1 @@ -6d86be4bee4429c6d41d6bbefa217551f0d0f345 \ No newline at end of file +71862039cdd700167d24ff50835960834c3faaf5 \ No newline at end of file diff --git a/mcs/build/common/Consts.cs b/mcs/build/common/Consts.cs index af9764c293..96156283a9 100644 --- a/mcs/build/common/Consts.cs +++ b/mcs/build/common/Consts.cs @@ -34,7 +34,7 @@ static class Consts // Use these assembly version constants to make code more maintainable. // - public const string MonoVersion = "5.14.0.110"; + public const string MonoVersion = "5.14.0.116"; public const string MonoCompany = "Mono development team"; public const string MonoProduct = "Mono Common Language Infrastructure"; public const string MonoCopyright = "(c) Various Mono authors"; diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/PropertyGrid.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/PropertyGrid.cs index 1f3e3256d6..d35331b2b0 100644 --- a/mcs/class/System.Windows.Forms/System.Windows.Forms/PropertyGrid.cs +++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/PropertyGrid.cs @@ -937,6 +937,7 @@ namespace System.Windows.Forms if (tabs != null && tabs.Count > 0) { foreach (PropertyTab tab in tabs) { PropertyToolBarButton button = new PropertyToolBarButton (tab); + button.Click += new EventHandler (toolbarbutton_clicked); toolbar.Items.Add (button); if (tab.Bitmap != null) { tab.Bitmap.MakeTransparent (); @@ -986,7 +987,7 @@ namespace System.Windows.Forms scopes.Clear (); IList currentIntersection = (i == 0 ? (IList)tabAttribute.TabClasses : (IList)intersection); for (int j=0; j < currentIntersection.Count; j++) { - if ((Type)intersection[j] == tabAttribute.TabClasses[j]) { + if ((Type)currentIntersection[j] == tabAttribute.TabClasses[j]) { new_intersection.Add (tabAttribute.TabClasses[j]); scopes.Add (tabAttribute.TabScopes[j]); } @@ -1410,8 +1411,10 @@ namespace System.Windows.Forms toRemove.Add (i); } foreach (int indexToRemove in toRemove) { - property_tabs.RemoveAt (indexToRemove); - property_tabs_scopes.RemoveAt (indexToRemove); + if (property_tabs.Count > indexToRemove) + property_tabs.RemoveAt (indexToRemove); + if (property_tabs_scopes.Count > indexToRemove) + property_tabs_scopes.RemoveAt (indexToRemove); } property_grid.RefreshToolbar (this); } diff --git a/mcs/class/System/System.IO/CoreFXFileSystemWatcherProxy.cs b/mcs/class/System/System.IO/CoreFXFileSystemWatcherProxy.cs index 92e04c3445..c485224783 100644 --- a/mcs/class/System/System.IO/CoreFXFileSystemWatcherProxy.cs +++ b/mcs/class/System/System.IO/CoreFXFileSystemWatcherProxy.cs @@ -105,16 +105,16 @@ namespace System.IO { var result = new C (); result.Changed += (object o, FileSystemEventArgs args) => - { ProxyDispatch (o, FileAction.Modified, args); }; + Task.Run (() => ProxyDispatch (o, FileAction.Modified, args)); result.Created += (object o, FileSystemEventArgs args) => - { ProxyDispatch (o, FileAction.Added, args); }; + Task.Run (() => ProxyDispatch (o, FileAction.Added, args)); result.Deleted += (object o, FileSystemEventArgs args) => - { ProxyDispatch (o, FileAction.Removed, args); }; + Task.Run (() => ProxyDispatch (o, FileAction.Removed, args)); result.Renamed += (object o, RenamedEventArgs args) => - { ProxyDispatch (o, FileAction.RenamedNewName, args); }; + Task.Run (() => ProxyDispatch (o, FileAction.RenamedNewName, args)); result.Error += (object o, ErrorEventArgs args) => - { ProxyDispatchError (handle, args); }; + Task.Run (() => ProxyDispatchError (handle, args)); Operation (map_op: (in_map, out_map, event_map, _) => { in_map.Add (handle, result); diff --git a/mcs/class/System/System.IO/FileSystemWatcher.cs b/mcs/class/System/System.IO/FileSystemWatcher.cs index e3b1d7ac81..7eb4c05cd5 100644 --- a/mcs/class/System/System.IO/FileSystemWatcher.cs +++ b/mcs/class/System/System.IO/FileSystemWatcher.cs @@ -37,6 +37,7 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Threading; +using System.Threading.Tasks; namespace System.IO { [DefaultEvent("Changed")] @@ -114,7 +115,7 @@ namespace System.IO { void InitWatcher () { lock (lockobj) { - if (watcher != null) + if (watcher_handle != null) return; string managed = Environment.GetEnvironmentVariable ("MONO_MANAGED_WATCHER"); @@ -510,17 +511,17 @@ namespace System.IO { case FileAction.Added: lastData.Name = filename; lastData.ChangeType = WatcherChangeTypes.Created; - OnCreated (new FileSystemEventArgs (WatcherChangeTypes.Created, path, filename)); + Task.Run (() => OnCreated (new FileSystemEventArgs (WatcherChangeTypes.Created, path, filename))); break; case FileAction.Removed: lastData.Name = filename; lastData.ChangeType = WatcherChangeTypes.Deleted; - OnDeleted (new FileSystemEventArgs (WatcherChangeTypes.Deleted, path, filename)); + Task.Run (() => OnDeleted (new FileSystemEventArgs (WatcherChangeTypes.Deleted, path, filename))); break; case FileAction.Modified: lastData.Name = filename; lastData.ChangeType = WatcherChangeTypes.Changed; - OnChanged (new FileSystemEventArgs (WatcherChangeTypes.Changed, path, filename)); + Task.Run (() => OnChanged (new FileSystemEventArgs (WatcherChangeTypes.Changed, path, filename))); break; case FileAction.RenamedOldName: if (renamed != null) { @@ -536,7 +537,8 @@ namespace System.IO { if (renamed == null) { renamed = new RenamedEventArgs (WatcherChangeTypes.Renamed, path, "", filename); } - OnRenamed (renamed); + var renamed_ref = renamed; + Task.Run (() => OnRenamed (renamed_ref)); renamed = null; break; default: diff --git a/mcs/class/lib/monolite-darwin/1051400003/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-darwin/1051400003/Mono.Security.dll.REMOVED.git-id index 0a12afedd6..a74d31204c 100644 --- a/mcs/class/lib/monolite-darwin/1051400003/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-darwin/1051400003/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -061d164b61dd4f5d7b45ea45d24beb68e090aa1d \ No newline at end of file +88463079f1bc9e293ff4eeffc52b8fe7ddb4b61d \ No newline at end of file diff --git a/mcs/class/lib/monolite-darwin/1051400003/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-darwin/1051400003/System.Configuration.dll.REMOVED.git-id index 7bb35ae2ae..56000f86f8 100644 --- a/mcs/class/lib/monolite-darwin/1051400003/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-darwin/1051400003/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -cb48e0acfece34c129d2f0df12736b761894e6ff \ No newline at end of file +69022cbbe03b81539b541184bb204f1027e88e47 \ No newline at end of file diff --git a/mcs/class/lib/monolite-darwin/1051400003/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-darwin/1051400003/System.Numerics.dll.REMOVED.git-id index 9ad4f4036e..03c43ab446 100644 --- a/mcs/class/lib/monolite-darwin/1051400003/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-darwin/1051400003/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -d9216fb81ca067b812c2af0244ab4b09fda355cc \ No newline at end of file +abf20bddd551faa4c03903b90d5ef125923a6a58 \ No newline at end of file diff --git a/mcs/class/lib/monolite-darwin/1051400003/System.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-darwin/1051400003/System.Security.dll.REMOVED.git-id index ed930710fc..46e3b6a586 100644 --- a/mcs/class/lib/monolite-darwin/1051400003/System.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-darwin/1051400003/System.Security.dll.REMOVED.git-id @@ -1 +1 @@ -5e57c68548c3d4b813e8afcd3faa90d664d333ee \ No newline at end of file +3a253a3488929d890119bb844ed58e36e6a9b20d \ No newline at end of file diff --git a/mcs/class/lib/monolite-darwin/1051400003/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-darwin/1051400003/System.Xml.dll.REMOVED.git-id index c2fe712cfa..da8809f50a 100644 --- a/mcs/class/lib/monolite-darwin/1051400003/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-darwin/1051400003/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -27f33bdbdeb3aeb2cd0603faa95162b9e685b44c \ No newline at end of file +f9d99688c9ea9c2a3c6d751ebcc47a65e35f4cd1 \ No newline at end of file diff --git a/mcs/class/lib/monolite-darwin/1051400003/System.dll.REMOVED.git-id b/mcs/class/lib/monolite-darwin/1051400003/System.dll.REMOVED.git-id index 91bdd8326f..a1f1a4ac73 100644 --- a/mcs/class/lib/monolite-darwin/1051400003/System.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-darwin/1051400003/System.dll.REMOVED.git-id @@ -1 +1 @@ -2ab602ec65de544966c6b22e2cf6c2901778f977 \ No newline at end of file +701fb7ddb42ec02b674abe8af949fa839afd936f \ No newline at end of file diff --git a/mcs/class/lib/monolite-darwin/1051400003/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-darwin/1051400003/mcs.exe.REMOVED.git-id index b848af1179..e484f7173c 100644 --- a/mcs/class/lib/monolite-darwin/1051400003/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-darwin/1051400003/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -6f76e77a06b2bdc54f25fbd8a4f39aa04c431c44 \ No newline at end of file +d5beee2f9672bee46acd54553c2a6cf4f66d4a57 \ No newline at end of file diff --git a/mcs/class/lib/monolite-darwin/1051400003/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-darwin/1051400003/mscorlib.dll.REMOVED.git-id index 7c6cd261fb..11ef5b9aac 100644 --- a/mcs/class/lib/monolite-darwin/1051400003/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-darwin/1051400003/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -7cb730ea0b4be07c4176b3f102c6e4a6e5697768 \ No newline at end of file +fccf96191cc72249f43f2d18d25931f1aba8b06b \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/1051400003/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/1051400003/Mono.Security.dll.REMOVED.git-id index 0a12afedd6..a74d31204c 100644 --- a/mcs/class/lib/monolite-linux/1051400003/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/1051400003/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -061d164b61dd4f5d7b45ea45d24beb68e090aa1d \ No newline at end of file +88463079f1bc9e293ff4eeffc52b8fe7ddb4b61d \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/1051400003/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/1051400003/System.Configuration.dll.REMOVED.git-id index 7bb35ae2ae..56000f86f8 100644 --- a/mcs/class/lib/monolite-linux/1051400003/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/1051400003/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -cb48e0acfece34c129d2f0df12736b761894e6ff \ No newline at end of file +69022cbbe03b81539b541184bb204f1027e88e47 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/1051400003/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/1051400003/System.Numerics.dll.REMOVED.git-id index 9ad4f4036e..03c43ab446 100644 --- a/mcs/class/lib/monolite-linux/1051400003/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/1051400003/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -d9216fb81ca067b812c2af0244ab4b09fda355cc \ No newline at end of file +abf20bddd551faa4c03903b90d5ef125923a6a58 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/1051400003/System.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/1051400003/System.Security.dll.REMOVED.git-id index ed930710fc..46e3b6a586 100644 --- a/mcs/class/lib/monolite-linux/1051400003/System.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/1051400003/System.Security.dll.REMOVED.git-id @@ -1 +1 @@ -5e57c68548c3d4b813e8afcd3faa90d664d333ee \ No newline at end of file +3a253a3488929d890119bb844ed58e36e6a9b20d \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/1051400003/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/1051400003/System.Xml.dll.REMOVED.git-id index c2fe712cfa..da8809f50a 100644 --- a/mcs/class/lib/monolite-linux/1051400003/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/1051400003/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -27f33bdbdeb3aeb2cd0603faa95162b9e685b44c \ No newline at end of file +f9d99688c9ea9c2a3c6d751ebcc47a65e35f4cd1 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/1051400003/System.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/1051400003/System.dll.REMOVED.git-id index 91bdd8326f..a1f1a4ac73 100644 --- a/mcs/class/lib/monolite-linux/1051400003/System.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/1051400003/System.dll.REMOVED.git-id @@ -1 +1 @@ -2ab602ec65de544966c6b22e2cf6c2901778f977 \ No newline at end of file +701fb7ddb42ec02b674abe8af949fa839afd936f \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/1051400003/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-linux/1051400003/mcs.exe.REMOVED.git-id index b848af1179..e484f7173c 100644 --- a/mcs/class/lib/monolite-linux/1051400003/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/1051400003/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -6f76e77a06b2bdc54f25fbd8a4f39aa04c431c44 \ No newline at end of file +d5beee2f9672bee46acd54553c2a6cf4f66d4a57 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/1051400003/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/1051400003/mscorlib.dll.REMOVED.git-id index 7c6cd261fb..11ef5b9aac 100644 --- a/mcs/class/lib/monolite-linux/1051400003/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/1051400003/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -7cb730ea0b4be07c4176b3f102c6e4a6e5697768 \ No newline at end of file +fccf96191cc72249f43f2d18d25931f1aba8b06b \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/1051400003/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/1051400003/Mono.Security.dll.REMOVED.git-id index 0a12afedd6..a74d31204c 100644 --- a/mcs/class/lib/monolite-win32/1051400003/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/1051400003/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -061d164b61dd4f5d7b45ea45d24beb68e090aa1d \ No newline at end of file +88463079f1bc9e293ff4eeffc52b8fe7ddb4b61d \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/1051400003/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/1051400003/System.Configuration.dll.REMOVED.git-id index 7bb35ae2ae..56000f86f8 100644 --- a/mcs/class/lib/monolite-win32/1051400003/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/1051400003/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -cb48e0acfece34c129d2f0df12736b761894e6ff \ No newline at end of file +69022cbbe03b81539b541184bb204f1027e88e47 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/1051400003/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/1051400003/System.Numerics.dll.REMOVED.git-id index 9ad4f4036e..03c43ab446 100644 --- a/mcs/class/lib/monolite-win32/1051400003/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/1051400003/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -d9216fb81ca067b812c2af0244ab4b09fda355cc \ No newline at end of file +abf20bddd551faa4c03903b90d5ef125923a6a58 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/1051400003/System.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/1051400003/System.Security.dll.REMOVED.git-id index ed930710fc..46e3b6a586 100644 --- a/mcs/class/lib/monolite-win32/1051400003/System.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/1051400003/System.Security.dll.REMOVED.git-id @@ -1 +1 @@ -5e57c68548c3d4b813e8afcd3faa90d664d333ee \ No newline at end of file +3a253a3488929d890119bb844ed58e36e6a9b20d \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/1051400003/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/1051400003/System.Xml.dll.REMOVED.git-id index c2fe712cfa..da8809f50a 100644 --- a/mcs/class/lib/monolite-win32/1051400003/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/1051400003/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -27f33bdbdeb3aeb2cd0603faa95162b9e685b44c \ No newline at end of file +f9d99688c9ea9c2a3c6d751ebcc47a65e35f4cd1 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/1051400003/System.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/1051400003/System.dll.REMOVED.git-id index 91bdd8326f..a1f1a4ac73 100644 --- a/mcs/class/lib/monolite-win32/1051400003/System.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/1051400003/System.dll.REMOVED.git-id @@ -1 +1 @@ -2ab602ec65de544966c6b22e2cf6c2901778f977 \ No newline at end of file +701fb7ddb42ec02b674abe8af949fa839afd936f \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/1051400003/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-win32/1051400003/mcs.exe.REMOVED.git-id index b848af1179..e484f7173c 100644 --- a/mcs/class/lib/monolite-win32/1051400003/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/1051400003/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -6f76e77a06b2bdc54f25fbd8a4f39aa04c431c44 \ No newline at end of file +d5beee2f9672bee46acd54553c2a6cf4f66d4a57 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/1051400003/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/1051400003/mscorlib.dll.REMOVED.git-id index 7c6cd261fb..11ef5b9aac 100644 --- a/mcs/class/lib/monolite-win32/1051400003/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/1051400003/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -7cb730ea0b4be07c4176b3f102c6e4a6e5697768 \ No newline at end of file +fccf96191cc72249f43f2d18d25931f1aba8b06b \ No newline at end of file diff --git a/mono/mini/version.h b/mono/mini/version.h index 758970fe34..92466c122c 100644 --- a/mono/mini/version.h +++ b/mono/mini/version.h @@ -1 +1 @@ -#define FULL_VERSION "explicit/2987232" +#define FULL_VERSION "explicit/1f3334f" diff --git a/po/mcs/de.gmo b/po/mcs/de.gmo index a2aa49d8d07ba26caba8bdac0c19fd422357684d..15b2e7643af9bb37c2717e9e629a2f8fde38e791 100644 GIT binary patch delta 23 ecmbQIHBW29BQ7p8T?0b}0}Crd^UZI#jJN diff --git a/po/mcs/ja.po.REMOVED.git-id b/po/mcs/ja.po.REMOVED.git-id index 00530e3741..a43e96359b 100644 --- a/po/mcs/ja.po.REMOVED.git-id +++ b/po/mcs/ja.po.REMOVED.git-id @@ -1 +1 @@ -890e4f0aab1f73ab3c5f0756055d7fb60a3b2577 \ No newline at end of file +04ee6e6515a55fe2f33a80529c0c3ebab18fc86a \ No newline at end of file diff --git a/po/mcs/mcs.pot b/po/mcs/mcs.pot index 77c74d601a..0092baa378 100644 --- a/po/mcs/mcs.pot +++ b/po/mcs/mcs.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mono 5.14.0.110\n" +"Project-Id-Version: mono 5.14.0.116\n" "Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n" -"POT-Creation-Date: 2018-05-31 08:28+0000\n" +"POT-Creation-Date: 2018-06-01 08:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/mcs/pt_BR.gmo b/po/mcs/pt_BR.gmo index c4f8bee9f044114e824387b0ed2997835455ecca..d9037a68df321d57531b22e7637e972106ae5ad0 100644 GIT binary patch delta 25 hcmaF1gXP%{mJQKUxy*D83>6G4tPIUJr%q*T2LOb!2@(JR delta 25 hcmaF1gXP%{mJQKUxlDD94HXP5tc)x+r%q*T2LOcE2^IhV diff --git a/po/mcs/pt_BR.po.REMOVED.git-id b/po/mcs/pt_BR.po.REMOVED.git-id index 3c00a9fab5..cd9d18c50f 100644 --- a/po/mcs/pt_BR.po.REMOVED.git-id +++ b/po/mcs/pt_BR.po.REMOVED.git-id @@ -1 +1 @@ -c5bd43ccb5758441f44946f9d01400aced3e69e7 \ No newline at end of file +da5743e70ab27b9dae6a254153bd1ac41d49b5bf \ No newline at end of file