Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
seto77 committed Mar 5, 2024
1 parent 714fcfe commit d5759e4
Show file tree
Hide file tree
Showing 11 changed files with 6,867 additions and 6,666 deletions.
4,828 changes: 2,414 additions & 2,414 deletions Crystallography.Controls/Crystal/CrystalControl.resx

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Crystallography.Controls/Crystallography.Controls.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<OutputType>Library</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyVersion>2024.3.5.1043</AssemblyVersion>
<FileVersion>2024.3.5.1043</FileVersion>
<AssemblyVersion>2024.3.5.1055</AssemblyVersion>
<FileVersion>2024.3.5.1055</FileVersion>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<ApplicationUseCompatibleTextRendering>true</ApplicationUseCompatibleTextRendering>
<ApplicationVisualStyles>true</ApplicationVisualStyles>
Expand Down
4 changes: 2 additions & 2 deletions Crystallography.OpenGL/Crystallography.OpenGL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<OutputType>Library</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyVersion>2024.3.5.1043</AssemblyVersion>
<FileVersion>2024.3.5.1043</FileVersion>
<AssemblyVersion>2024.3.5.1055</AssemblyVersion>
<FileVersion>2024.3.5.1055</FileVersion>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions Crystallography/Crystallography.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<OutputType>Library</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyVersion>2024.3.5.1043</AssemblyVersion>
<FileVersion>2024.3.5.1043</FileVersion>
<AssemblyVersion>2024.3.5.1055</AssemblyVersion>
<FileVersion>2024.3.5.1055</FileVersion>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>

Expand Down
189 changes: 122 additions & 67 deletions ReciPro/FormMain.Designer.cs

Large diffs are not rendered by default.

14 changes: 10 additions & 4 deletions ReciPro/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1161,10 +1161,16 @@ private void ToolStripMenuItemReadInitialCrystalList_Click(object sender, EventA

private void helpwebToolStripMenuItem_Click(object sender, EventArgs e)
{
var fn = "\\doc\\ReciProManual(" + (Language == Languages.English ? "en" : "ja") + ").pdf";
var appPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
var f = new FormPDF(appPath + fn) { Text = "ReciPro manual" };
f.Show();
if (Language != Languages.English)
Process.Start(new ProcessStartInfo("https://yseto.net/soft/recipro/") { UseShellExecute = true });
else
{

var fn = "\\doc\\ReciProManual(" + (Language == Languages.English ? "en" : "ja") + ").pdf";
var appPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
var f = new FormPDF(appPath + fn) { Text = "ReciPro manual" };
f.Show();
}
}
private void hintToolStripMenuItem_Click(object sender, EventArgs e)
{
Expand Down
Loading

0 comments on commit d5759e4

Please sign in to comment.