Skip to content

Commit a4d6aa2

Browse files
committed
Релиз 2.9.1.0
1 parent eb17735 commit a4d6aa2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

OneScriptForms/OneScriptForms/MessageBox.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ public string Text
8888
}
8989

9090
[ContextMethod("Показать", "Show")]
91-
public void Show(string text = null, string title = null, int buttons = 0, int icon = 0)
91+
public int Show(string text = null, string title = null, int buttons = 0, int icon = 0)
9292
{
93-
Base_obj.Show(text, title, buttons, icon);
93+
return Base_obj.Show(text, title, buttons, icon);
9494
}
9595
}
9696
}

OneScriptForms/OneScriptForms/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// Можно задать все значения или принять номера сборки и редакции по умолчанию
3333
// используя "*", как показано ниже:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("2.9.0.0")]
36-
[assembly: AssemblyFileVersion("2.9.0.0")]
35+
[assembly: AssemblyVersion("2.9.1.0")]
36+
[assembly: AssemblyFileVersion("2.9.1.0")]

0 commit comments

Comments
 (0)