Recent posts

#11
General Archi Discussion / Re: Enterprise Patreon Members...
Last post by ScooterL - May 08, 2025, 00:12:03 AM
I have setup patreon but I can't download the excel or jscript plugins..
I am getting asked to 'upgrade' to a higher tier. Is this how it is?
Please help / advise?
#12
jArchi / Re: jArchi 1.10
Last post by romuald - May 07, 2025, 10:16:57 AM
Thanks!
Will test it
#13
jArchi / jArchi 1.10
Last post by Phil Beauvoir - May 06, 2025, 15:04:55 PM
Hello jArchi scripters!

jArchi 1.10 is now available.

This version includes an option to move visual View objects to new parents and a few fixes.

Please note that this version requires Archi 5.5 or later.

Change log - https://github.com/archimatetool/archi-scripting-plugin/wiki/Change-Log

Cheers!

Phil
#14
coArchi / Re: Commit signing
Last post by Phil Beauvoir - April 29, 2025, 20:25:41 PM
Hi,

signing of commits is not supported in coArchi. More information here.

Perhaps this is a feature for coArchi version 2 (sometime in the future, coArchi is open source so perhaps someone might contribute this).

Phil
#15
coArchi / Re: Commit signing
Last post by vinicius.jlantunes - April 29, 2025, 20:25:24 PM
Thanks for the quick response, even if it confirms what I feared  :'(
#16
coArchi / Re: Commit signing
Last post by Jean-Baptiste Sarrodie - April 29, 2025, 20:23:40 PM
Hi,

Quote from: vinicius.jlantunes on April 29, 2025, 20:19:42 PMIs coArchi able to operate with such restrictions in place (verified commits)? Or is it a fundamental incompatibility?

For the time being, that's unfortunately the second option, sorry.

Regards,

JB
#17
coArchi / Commit signing
Last post by vinicius.jlantunes - April 29, 2025, 20:19:42 PM
Hello all,

My organization has just made verified commits mandatory using GHG keys.

I have followed a long list of steps to get it all setup and am able to commit other non-Archi stuff, but having trouble with my model as per attached message.
I am able to read the model, so authentication is fine, problem is really just with publishing changes.

Is coArchi able to operate with such restrictions in place (verified commits)? Or is it a fundamental incompatibility?
#18
jArchi / Re: using junctionType
Last post by Phil Beauvoir - April 29, 2025, 12:20:31 PM
It depends what the variable "e" is. If it's a Junction concept then this will work:

type = e.junctionType;
However, if "e" is a Junction diagram object then you need to access the object's underlying concept:

type = e.concept.junctionType
In both cases you can use the latter
#19
jArchi / using junctionType
Last post by blayde64 - April 29, 2025, 11:57:13 AM
Hi there,

I have a little bit of code, and i cannot see why it doesnt work - in specific junctionType returns a result of "undefined". The rest of the code works. the debug statements (log.debug is my own thing) show that the element name is correct, and is triggered only when a junction is found. looking at the wiki i think i am accessing it properly... is there any reason why this wouldnt work? following the wiki, i also tried getJunctionType(), which also didn't work... any thoughts are welcome!

    if (e.specialization==null)
{
if (e.type !="junction")
{
typesList.push(e.type);
}
else
{
log.debug("Its a Junction - type is " + e.junctionType);
log.debug("Its a Junction - name is " + e.name);
var bt=e.junctionType+"-"+e.type;
typesList.push(bt);
}
    }
else
        typesList.push(e.specialization); //it is a specialization so push the specialization name.

 
#20
General Archi Discussion / Re: Multiple windows properti...
Last post by romuald - April 28, 2025, 15:58:40 PM
For this, we should be able to open twice the properties window which is not possible.