Skip to content

Commit

Permalink
release work for 2024.1
Browse files Browse the repository at this point in the history
  • Loading branch information
koechlm committed Sep 4, 2023
1 parent be1821e commit f8f0efa
Show file tree
Hide file tree
Showing 21 changed files with 3,150 additions and 840 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -260,3 +260,5 @@ paket-files/
__pycache__/
*.pyc
/Setup1/Release 2022
/Setup1/Release 2024.1
/Setup1/Release 2023.2.1
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@
<Content Include="SDK Refs\Autodesk.DataManagement.Client.Framework.Forms.xml" />
<Content Include="SDK Refs\Autodesk.DataManagement.Client.Framework.Vault.dll" />
<Content Include="SDK Refs\Autodesk.DataManagement.Client.Framework.Vault.Forms.dll" />
<Content Include="SDK Refs\Autodesk.DataManagement.Client.Framework.Vault.Forms.xml" />
<Content Include="SDK Refs\Autodesk.DataManagement.Client.Framework.Vault.xml" />
<Content Include="SDK Refs\Autodesk.DataManagement.Client.Framework.xml" />
<Content Include="SDK Refs\Autodesk.iLogic.Interfaces.dll" />
Expand Down
6 changes: 3 additions & 3 deletions Autodesk.VltInvSrv.iLogicSampleJob/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Autodesk")]
[assembly: AssemblyProduct("Autodesk Vault Professional - API Sample")]
[assembly: AssemblyCopyright("Copyright © Autodesk 2022")]
[assembly: AssemblyCopyright("Copyright © Autodesk 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2023.2.1.0")]
[assembly: AssemblyFileVersion("2023.2.1.0")]
[assembly: AssemblyVersion("2024.1.0.0")]
[assembly: AssemblyFileVersion("2024.1.0.0")]
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
1,690 changes: 917 additions & 773 deletions Autodesk.VltInvSrv.iLogicSampleJob/SDK Refs/Autodesk.Inventor.Interop.xml

Large diffs are not rendered by default.

Binary file not shown.
30 changes: 20 additions & 10 deletions Autodesk.VltInvSrv.iLogicSampleJob/iLogicJobAdminForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -365,16 +365,25 @@ private void mUpdateUsrRlsGrid(string[] mUsrRls)
private void btnOpenJobRuleVault_Click(object sender, EventArgs e)
{
SelectFromVault selectFromVault = new SelectFromVault(Multiselect: false);
var returnval = selectFromVault.ShowDialog();
if (selectFromVault.DialogResult == DialogResult.OK)
try
{
var returnval = selectFromVault.ShowDialog();
if (selectFromVault.DialogResult == DialogResult.OK)
{
txtJobRuleVault.Text = selectFromVault.RetFullNames.FirstOrDefault();
iLogicJobAdmin.mSettingsChanged = true;
btnSaveToVlt.Enabled = true;
}
}
catch (Exception ex)
{
Autodesk.DataManagement.Client.Framework.Forms.Library.ShowError(ex.Message, "iLogic-Job Administration");
}
finally
{
txtJobRuleVault.Text = selectFromVault.RetFullNames.FirstOrDefault();

iLogicJobAdmin.mSettingsChanged = true;
btnSaveToVlt.Enabled = true;

selectFromVault.Dispose();
}

}

private void btnAddUserRules_Click(object sender, EventArgs e)
Expand All @@ -392,9 +401,10 @@ private void btnAddUserRules_Click(object sender, EventArgs e)

iLogicJobAdmin.mSettingsChanged = true;
btnSaveToVlt.Enabled = true;

selectFromVault.Dispose();
}

selectFromVault.Dispose();

}

private void mnuUserRulesDelete_Click(object sender, EventArgs e)
Expand Down Expand Up @@ -633,7 +643,7 @@ private void iLogicJobAdminForm_FormClosing(object sender, FormClosingEventArgs
{
if (iLogicJobAdmin.mSettingsChanged == true)
{

DialogResult dialogResult = MessageBox.Show("There are unsaved changes;\n\rDo you want to save them to Vault?", "iLogic Job Administration", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (dialogResult == DialogResult.Yes)
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ relationship are not supported.

VERSION HISTORY / RELEASE NOTES:
---------------------------------
2024.0.0.0 - updated for Vault Clinet / Job Processor 2024. NEW - the iLogic-VaultInventorServer library sample moved from the iLogic-Vault project into this solution.
2024.0.0.0 - updated for Vault Client / Job Processor 2024. NEW - the iLogic-VaultInventorServer library sample moved from the iLogic-Vault project into this solution.
2023.0.1.x - updated for Vault Client / Job Processor 2023. New detailed restriction dialog info for non-Configuration Admins trying to access iLogic Configuration
2022.3.0.0 - updated for Vault Client / Job Processor 2022.3
2022.2.0.0 - new methods AddFile, GetVaultFileStatus and UpdateVaultFileProperties implemented
Expand Down
Loading

0 comments on commit f8f0efa

Please sign in to comment.