3,851

(67 replies, posted in EN : Help, suggestions, discussions, ...)

I register qelectrotech-dev, trunk is svn devel branch.

You could try to register an qelectrotech-devel or qelectrotech-ppd like you want and upload it for me?

3,852

(67 replies, posted in EN : Help, suggestions, discussions, ...)

Hello Max


snapcraft --debug                 
Using 'snap/snapcraft.yaml': Project assets will be searched for from the 'snap' directory.
Launching a VM.
mount failed: Error enabling mount support in 'snapcraft-qelectrotech-dev'       
An error occurred with the instance when trying to mount with 'multipass': returned exit code 2.
Ensure that 'multipass' is setup correctly and try again.

Well, I see that next week.

Cheers,
Laurent

3,853

(67 replies, posted in EN : Help, suggestions, discussions, ...)

Hello Max,

thanks a lot for your qelectrotech.yaml snap packaging.  

I had started some time ago to study snap and prepared a trunk based snap package, but not time for and motivation to continued. 
I just removed it, if you could try to publish again?

Best regards,
Laurent

Great workaround Znikt. nomicons/smile

Perhaps an idea to study would also be to use the link type properties : function, tension/protocole, to add some informations in your module, like this video.


Good hacks. ;-)

3,855

(49 replies, posted in Videos howto)

Hello,

like this ?

Other workaround :
https://download.qelectrotech.org/qet/forum_img/plc_io.png

http://www.favreber.ch/QElectroTech/

3,857

(1 replies, posted in Documentation)

Hi Julio,

you are welcome.
I tried to generate es po file, but I don't know if is the good way...
https://download.qelectrotech.org/qet/manual_0.7/

3,858

(554 replies, posted in News)

On peux remplacer "Liste des folios" par "SOMMAIRE" dans la traduction FR, si tu veux... nomicons/tongue pour le reste il faudrait rajouter un autre widget et beaucoup de code, donc niet! nomicons/wink En principe toutes ces variables tu les avais déjà pré définies.

Revision: 5918
Author:   scorpio810
Date:     2019-06-12 15:16:54 +0200 (Wed, 12 Jun 2019)
Log Message:
-----------
Basic shapes : set solid line pattern by default

3,860

(554 replies, posted in News)

Revision: 5915
Author:   scorpio810
Date:     2019-06-12 02:48:36 +0200 (Wed, 12 Jun 2019)
Log Message:
-----------
Adding or revoming diagram set project to modified

Revision: 5916
Author:   scorpio810
Date:     2019-06-12 03:03:02 +0200 (Wed, 12 Jun 2019)
Log Message:
-----------
When user cleanning an project, set project to modified

Des exemples :

https://download.qelectrotech.org/qet/s … a_bois.pdf
https://download.qelectrotech.org/qet/s … 19.qet.pdf

3,862

(554 replies, posted in News)

C'est quoi qui te gêne, le cartouche ou les variables?
Pour le cartouche ça risque d’être compliqué, pour les variables ça pourrait se faire avec des variables spéciales pour les pages sommaires.

3,863

(554 replies, posted in News)

galexis wrote:
scorpio810 wrote:

Non, tu peut définir des variables et cartouche pour tout le projet, mais aussi en cliquant sur un folio spécifier une autre révision, un autre cartouche que celui par défaut,  l'auteur, la date , etc.

Ok, mais ceux pour le sommaire hérite bien du réglage pour les nouveaux folios du projet ?

Oui.

3,864

(554 replies, posted in News)

Non, tu peut définir des variables et cartouche pour tout le projet, mais aussi en cliquant sur un folio spécifier une autre révision, un autre cartouche que celui par défaut,  l'auteur, la date , etc.

https://qelectrotech.org/submit-element.php

3,866

(554 replies, posted in News)

Pour info, comme le vous le savez-déjà les pages sommaires sont dynamiques, donc le cartouche de ces pages sommaires prendra celui mis en paramètre dans la configuration du projet -> nouveaux folios -> choix du cartouche. Ceci à chaque lancement du projet.

@loulou : Un petit dessin aiderai à mieux visualiser ta demande.
Tu es sur MacOS?

3,868

(53 replies, posted in News)

Merged, merci.

3,869

(554 replies, posted in News)

Revision: 5910
Author: scorpio810
Date: 2019-06-10 13:34:57 +0200 (Mon, 10 Jun 2019)
Log Message:
-----------
Bug fix : when user load a project which contains summary pages, project
was marked modified (summary was created on the fly and moved from the end on second
position), now the project is no longer marked as amended when user have one or multiples summary pages when loading this project.

3,870

(554 replies, posted in News)

Revision: 5908
Author: scorpio810
Date: 2019-06-10 12:07:13 +0200 (Mon, 10 Jun 2019)
Log Message:
-----------
Add a shortcut "Ctrl+Shift+P" to quickly open the dialog used
for create the auto numbering rules.

3,871

(554 replies, posted in News)

S.DEFFAUX wrote:

Lors de l'export en DXF, les logo ne s'affiche pas et le mémé problème pour les élements "graphisme".
c'est bon je m'en sort avec cloudconvert le rendu à l'air pas mal

Pour les baisc shapes  Polyline et polygone il manque du code dans createdxf.cpp pour gérer la conversion en DXF, pour moi c'est du chinois .. exemple_ci dessous par contre si un expert comme Ronny ou d'autres peuvent filer un coup de main, ce sera avec plaisir.

// Draw the Rectangle
            To_Dxf << 0         << "\r\n";
            To_Dxf << "LINE"    << "\r\n";
            To_Dxf << 8         << "\r\n";
            To_Dxf << 0         << "\r\n";    // Layer number (default layer in autocad)
            To_Dxf << 62        << "\r\n";
            To_Dxf << colour    << "\r\n";    // Colour Code
            To_Dxf << 10        << "\r\n";
            To_Dxf << x1        << "\r\n";    // X in UCS (User Coordinate System)coordinates
            To_Dxf << 20        << "\r\n";
            To_Dxf << y1        << "\r\n";    // Y in UCS (User Coordinate System)coordinates
            To_Dxf << 30        << "\r\n";
            To_Dxf << 0.0       << "\r\n";    // Z in UCS (User Coordinate System)coordinates
            To_Dxf << 11        << "\r\n";
            To_Dxf << x1+width  << "\r\n";    // X in UCS (User Coordinate System)coordinates
            To_Dxf << 21        << "\r\n";
            To_Dxf << y1        << "\r\n";    // Y in UCS (User Coordinate System)coordinates
            To_Dxf << 31        << "\r\n";
            To_Dxf << 0.0       << "\r\n";    // Z in UCS (User Coordinate System)coordinates
            To_Dxf << 0         << "\r\n";
            To_Dxf << "LINE"    << "\r\n";
            To_Dxf << 8         << "\r\n";
            To_Dxf << 0         << "\r\n";    // Layer number (default layer in autocad)
            To_Dxf << 62        << "\r\n";
            To_Dxf << colour    << "\r\n";    // Colour Code
            To_Dxf << 10        << "\r\n";
            To_Dxf << x1        << "\r\n";    // X in UCS (User Coordinate System)coordinates
            To_Dxf << 20        << "\r\n";
            To_Dxf << y1        << "\r\n";    // Y in UCS (User Coordinate System)coordinates
            To_Dxf << 30        << "\r\n";
            To_Dxf << 0.0       << "\r\n";    // Z in UCS (User Coordinate System)coordinates
            To_Dxf << 11        << "\r\n";
            To_Dxf << x1        << "\r\n";    // X in UCS (User Coordinate System)coordinates
            To_Dxf << 21        << "\r\n";
            To_Dxf << y1+height << "\r\n";    // Y in UCS (User Coordinate System)coordinates
            To_Dxf << 31        << "\r\n";
            To_Dxf << 0.0       << "\r\n";    // Z in UCS (User Coordinate System)coordinates
            To_Dxf << 0         << "\r\n";
            To_Dxf << "LINE"    << "\r\n";
            To_Dxf << 8         << "\r\n";
            To_Dxf << 0         << "\r\n";    // Layer number (default layer in autocad)
            To_Dxf << 62        << "\r\n";
            To_Dxf << colour    << "\r\n";    // Colour Code
            To_Dxf << 10        << "\r\n";
            To_Dxf << x1+width  << "\r\n";    // X in UCS (User Coordinate System)coordinates
            To_Dxf << 20        << "\r\n";
            To_Dxf << y1        << "\r\n";    // Y in UCS (User Coordinate System)coordinates
            To_Dxf << 30        << "\r\n";
            To_Dxf << 0.0       << "\r\n";    // Z in UCS (User Coordinate System)coordinates
            To_Dxf << 11        << "\r\n";
            To_Dxf << x1+width  << "\r\n";    // X in UCS (User Coordinate System)coordinates
            To_Dxf << 21        << "\r\n";
            To_Dxf << y1+height << "\r\n";    // Y in UCS (User Coordinate System)coordinates
            To_Dxf << 31        << "\r\n";
            To_Dxf << 0.0       << "\r\n";    // Z in UCS (User Coordinate System)coordinates
            To_Dxf << 0         << "\r\n";
            To_Dxf << "LINE"    << "\r\n";
            To_Dxf << 8         << "\r\n";
            To_Dxf << 0         << "\r\n";    // Layer number (default layer in autocad)
            To_Dxf << 62        << "\r\n";
            To_Dxf << colour    << "\r\n";    // Colour Code
            To_Dxf << 10        << "\r\n";
            To_Dxf << x1        << "\r\n";    // X in UCS (User Coordinate System)coordinates
            To_Dxf << 20        << "\r\n";
            To_Dxf << y1+height << "\r\n";    // Y in UCS (User Coordinate System)coordinates
            To_Dxf << 30        << "\r\n";
            To_Dxf << 0.0       << "\r\n";    // Z in UCS (User Coordinate System)coordinates
            To_Dxf << 11        << "\r\n";
            To_Dxf << x1+width  << "\r\n";    // X in UCS (User Coordinate System)coordinates
            To_Dxf << 21        << "\r\n";
            To_Dxf << y1+height << "\r\n";    // Y in UCS (User Coordinate System)coordinates
            To_Dxf << 31        << "\r\n";
            To_Dxf << 0.0       << "\r\n";    // Z in UCS (User Coordinate System)coordinates
            file.close();
        }
    }
}

Revision: 5906
Author:   scorpio810
Date:     2019-06-09 18:57:53 +0200 (Sun, 09 Jun 2019)
Log Message:
-----------
Elements final terminals change link type simlple to terminal, thanks S.DEFFAUX to report it

3,873

(53 replies, posted in News)

Encore merci pour ton travail.nomicons/wink
Des éléments en doublons ont été supprimés dernièrement dans  11_water, j'ai mis le nouveau  dossier à jour en pièce jointe pour t’éviter de traduire des éléments qui ont pu être supprimés.

Merci du retour, j’étais loin d'imaginer que tu étais sous la  vieille version 0.5, merci pour tes félicitations ainsi que ta présentation.

Je vais certainement mettre le doigt sur bien d'autres améliorations.

Voir le changelog :

Ces variables ont été ajoutées sur la 0.7, ça ne peut pas fonctionner sur une version antérieure.
Fait une sauvegarde de tes projets et essayes la 0.7.
https://qelectrotech.org/download.html