Release notes/0.35/fr

From Inkscape Wiki
Revision as of 15:28, 3 July 2006 by Matiphas (talk | contribs) (creation (translation of ReleaseNotes035 to French))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Inkscape Version 0.35

Cette version est issue du code de Sodipodi 0.32 codebase, avec l'incorporation des patchs de la branche hydra-october et le travail de dizaines de contributeurs.

Modifications

Petit hack pour les éléments IDs de la norme SVG - Bob Jamison - Integré le 08/10/2003

Adds ID name widget to the item properties dialog box. http://troi.lincom-asg.com/~rjamison/files/sodipodi/itemdialog.png Patch# 819043

Nouveau mécanisme de jonction des noeuds - Bob Jamison - Integré le 08/10/2003

Adds a modified form of joining nodes, allowing curves to be closed without deleting or moving any existing nodes; instead it adds a new curve segment for the closure. http://troi.lincom-asg.com/~rjamison/files/sodipodi/join/newedit.png Patch# 819054

Le changement d'unités dans la boîte de dialogue Dimensions et Position est cassé

Depending upon the size of the rectangle you drew it will be distorted and displaced by seemingly random (though not really) values. I tracked the problem down to an interaction between spus_unit_activate() and sp_object_layout_any_value_changed(). To fix it, I modified sp_object_layout_any_value_changed() to check the unit object for its update flag and return if it -- ifkerby. Patch# 799363

Modification des attributs Texte de la sélection - snauj

Makes possible to apply text property changes on selection. With this patch sodipodi choose all text objects from selection and apply changes on them. Patch# 816676

Mise à plat du code de gestion des Transactions - mental

Refactors the Actions code. Trims transaction undo list to MAX_UNDO. Add sp_document_cancel(). Replace various operations with transactions. Patch# 819745

Correction de l'option de compilation --with-kde - anonyme

Patch# 819963

Sous menu 'Récemment ouvert' - anonyme

Patch# 820223

Nettoyage du code de desktop-properties.c - bryce

Adds a couple functions to abstract widget creation somewhat. Patch# 822497

Renommage & make distcheck - ted, mental, and njh

The codebase has been re-branded into 'inkscape'. We're leaving the filetype to use the sodipodi namespace for compatibility reasons, and are leaving the 'sp_' prefix on functions since in C++ we can use real namespaces and will strip the prefixes when we're further along with that.

Transposition en C++ - njh, mental, bryce, and ted

Codebase is converted to be compileable using either gcc or g++. We went through the codebase adding casts where needed, making all the string object types be consistant (const gchar*), placing extern "C" wrappers around problematical routines, and more. This is preliminary preparation for moving the codebase wholesale to C++ so that we can begin to take advantage of OOP capabilities to better abstract and streamline the code.

Raccourcis clavier - Bulia Byak

Bulia Byak has been actively working on implementing keyboard shortcuts in the application. He's fixed up the arrow keys in the selector and node editor, made the ESC key deselect and cancel rubber band selections, added many more ways to switch tools and call dialogs. Bulia says, "I have created a wiki page 'KeyboardShortcuts' (imported from sodipodi) where I will track my progress with keyboard. Ideally, I would like to see the program almost totally controllable from keyboard, with only the tasks like freehand drawing left to mouse."