3,926

(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,928

(53 replies, posted in News)

Merged, merci.

3,929

(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,930

(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,931

(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,933

(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

Édites ton ancien message, tu verras apparaître "ajouter un fichier".
Une autre façon de faire est d'envoyer ton image sur un site d'hébergement d'images et de coller ensuite le lien vers cette image dans ton message.
Voila un cartouche ci-joint.

Thx for this informations.

Sinon essayes cette variable dans tes cartouches, elle prendra le nom de fichier enregistré sur ton disque :
%{savedfilename}.qet

Si tu enregistres sous un autre nom ton fichier elle sera automatiquement mise à jour.
PS, il faut enregistrer ton projet pour que les informations apparaissent dans tes cartouches.

Strange, see :


https://qelectrotech.org/forum/viewtopic.php?id=1004
https://qelectrotech.org/forum/viewtopic.php?id=1372 

Bonjour,
en combinant variables + extension fichier %{filename}.qet

https://download.qelectrotech.org/qet/forum_img/filename_ext.png

Hum, perhaps a driver's (GPU) problem, have you tried on other machine?

Hello,

what QET version and OS?

Petite astuce, il suffit d'appuyer sur la touche F1 dans le logiciel et d’être connecté au net pour avoir le manuel en ligne sous les yeux.

3,944

(554 replies, posted in News)

scorpio810 wrote:

Avec l'arrivée prochaine de Qt 5.13 il pourrait être intéressant d’explorer Qt WebAssembly, ce qui permettrait de consulter et modifier un projet, schémas sur n'importe quel navigateur et OS par exemple sur une tablette Android ou Ipad...


En attendant vous avez RollApp  et QET en version 0.5 sur un cloud dans votre butineur preferé quelque soit la machine, Android, Ipad, etc:
https://www.rollapp.com/app/qelectrotech


https://www.rollapp.com/plans

https://qelectrotech.org/forum/viewtopi … 2967#p2967


Ce serai bien s'il pouvaient mettre à jour vers la 0.6..., voila je viens d'en faire la demande, a suivre.

Bonjour, tu as la liste des variables ici :
https://download.qelectrotech.org/qet/m … ables.html

Hi,

with search and replace function (Ctl +f) on latest 0.7-rc1 in folio tab.

3,947

(554 replies, posted in News)

S.DEFFAUX wrote:

il existe aussi https://convertio.co/fr/ pour la conversion


Image conversion done in an instant with DraftSight 2019
Save countless hours of design time with the new Image Trace feature built directly into the DraftSight 2019 interface that allows you to:
quickly and painlessly convert simple or complex raster images to DWG files in seconds
eliminate the need to manually retrace images or use a 3rd party software
accurately trace logos, floor plans, and other images in .bmp, .png, and .jpg formats to convert to vector format
Once converted, the design can be easily saved, shared, or sent directly to a laser or vinyl cutter.

3,948

(554 replies, posted in News)

Toi aussi t'as besoin d'un export DXF, pour quelle raison ?,  j'en ai jamais eut le besoin..

3,949

(11 replies, posted in Scripts)

Essayes de le contacter par mail, ou par le forum.

3,950

(554 replies, posted in News)

Revision: 5898
Author:   scorpio810
Date:     2019-05-31 00:17:03 +0200 (Fri, 31 May 2019)
Log Message:
-----------
Elementspanelwidget: adds keyboard shortcuts to quickly move up, down,
or move the targeted folio to the beginning of the project


F3 MoveUp
F4 MoveDown
F5 MoveUpTop