[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: pcb.git: branch: master updated (5f67bca0c03796749c3d3377f301d679b9c20fb9)



The branch, master has been updated
       via  5f67bca0c03796749c3d3377f301d679b9c20fb9 (commit)
       via  c28c595920d267d11c8163cc34cb33d63a346dda (commit)
      from  60f6fa16eda93c10dfc1ed8d030bebeeb0cb9693 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 doc/pcb.texi                 |    2 +-
 src/action.c                 |   70 ++++++++++++++++++++++++------------------
 src/buffer.c                 |    2 +-
 src/djopt.c                  |    5 ++-
 src/fontmode.c               |    4 +-
 src/hid/gtk/gui-top-window.c |    4 +-
 src/move.c                   |    2 +-
 7 files changed, 50 insertions(+), 39 deletions(-)


=================
 Commit Messages
=================

commit 5f67bca0c03796749c3d3377f301d679b9c20fb9
Author: Ineiev <ineiev@xxxxxxxxxxxxxxxx>
Commit: Ineiev <ineiev@xxxxxxxxxxxxxxxx>

    fix sections hierarhy

:100644 100644 3c5b1e2... 78c99d2... M	doc/pcb.texi

commit c28c595920d267d11c8163cc34cb33d63a346dda
Author: Felix Ruoff <Felix@xxxxxxxxxxxxxxxxxx>
Commit: Ineiev <ineiev@xxxxxxxxxxxxxxxx>

    Cleanup action documentation
    
    Add missing documentation
    * Display(ToggleLockNames)
    * Display(ToggleOnlyNames)
    * Select(Object)
    
    Remove invalid documentation
    * Connection(Measure)
    * Display(Scroll, Direction)
    * Display(Step, direction, amount, units)
    
    Cosmetic modifications:
    * dots at end of sentences
    * capital letter at start of sentences
    * remove some curious signs at the beginning of some lines.
    * fix a couple of typos
    
    Closes-bug: lp-699506

:100644 100644 63ef37e... f7dfd2b... M	src/action.c
:100644 100644 4442bbb... 110914c... M	src/buffer.c
:100644 100644 b5d9c39... 4995c08... M	src/djopt.c
:100644 100644 4f7f5b8... eae2545... M	src/fontmode.c
:100644 100644 4186d85... 1fbba95... M	src/hid/gtk/gui-top-window.c
:100644 100644 5e3913c... 3ded0d0... M	src/move.c

=========
 Changes
=========

commit 5f67bca0c03796749c3d3377f301d679b9c20fb9
Author: Ineiev <ineiev@xxxxxxxxxxxxxxxx>
Commit: Ineiev <ineiev@xxxxxxxxxxxxxxxx>

    fix sections hierarhy

diff --git a/doc/pcb.texi b/doc/pcb.texi
index 3c5b1e2..78c99d2 100644
--- a/doc/pcb.texi
+++ b/doc/pcb.texi
@@ -5238,7 +5238,7 @@ rats-nest" command after moving parts around.
 After the placement is complete, use the line tool to add traces to the
 board.  As traces are added, the corresponding rats line will disappear.
 
-@section Forward Annotation of Schematic Changes
+@subsection Forward Annotation of Schematic Changes
 If schematic changes are made after the layout has started,
 @code{gsch2pcb} can be used to forward annotate these changes to the
 layout.  To forward annotate schematic changes, run @samp{gsch2pcb

commit c28c595920d267d11c8163cc34cb33d63a346dda
Author: Felix Ruoff <Felix@xxxxxxxxxxxxxxxxxx>
Commit: Ineiev <ineiev@xxxxxxxxxxxxxxxx>

    Cleanup action documentation
    
    Add missing documentation
    * Display(ToggleLockNames)
    * Display(ToggleOnlyNames)
    * Select(Object)
    
    Remove invalid documentation
    * Connection(Measure)
    * Display(Scroll, Direction)
    * Display(Step, direction, amount, units)
    
    Cosmetic modifications:
    * dots at end of sentences
    * capital letter at start of sentences
    * remove some curious signs at the beginning of some lines.
    * fix a couple of typos
    
    Closes-bug: lp-699506

diff --git a/src/action.c b/src/action.c
index 63ef37e..f7dfd2b 100644
--- a/src/action.c
+++ b/src/action.c
@@ -2340,10 +2340,6 @@ Any ``found'' pins and vias are marked ``not found''.
 @item Reset
 All ``found'' objects are marked ``not found''.
 
-@item Measure
-The net under the cursor is found and measured (the lengths of all
-line segments are added together)
-
 @end table
 
 %end-doc */
@@ -2533,7 +2529,7 @@ static const char display_syntax[] =
   "Display(ToggleThindraw|ToggleThindrawPoly|ToggleOrthoMove|ToggleLocalRef)\n"
   "Display(ToggleCheckPlanes|ToggleShowDRC|ToggleAutoDRC)\n"
   "Display(ToggleLiveRoute|LockNames|OnlyNames)\n"
-  "Display(Pinout|PinOrPadName)\n" "Display(Scroll, Direction)";
+  "Display(Pinout|PinOrPadName)";
 
 static const char display_help[] = "Several display-related actions.";
 
@@ -2615,6 +2611,16 @@ left, or right, but not up+left or down+right.
 @item ToggleName
 Selects whether the pinouts show the pin names or the pin numbers.
 
+@item ToggleLockNames
+If set, text will ignore left mouse clicks and actions that work on
+objects under the mouse. You can still select text with a lasso (left
+mouse drag) and perform actions on the selection.
+
+@item ToggleOnlyNames
+If set, only text will be sensitive for mouse clicks and actions that
+work on objects under the mouse. You can still select other objects
+with a lasso (left mouse drag) and perform actions on the selection.
+
 @item ToggleMask
 Turns the solder mask on or off.
 
@@ -2646,11 +2652,6 @@ Toggles whether the names of pins, pads, or (yes) vias will be
 displayed.  If the cursor is over an element, all of its pins and pads
 are affected.
 
-@item Step <direction> <amount> <units>
-Steps the crosshair in the given direction, with 1=down/left, 2=down,
-etc, according to the numeric keypad layout.  If amount is not given,
-the crosshair steps along the grid.
-
 @end table
 
 %end-doc */
@@ -3006,7 +3007,8 @@ ActionDisplay (int argc, char **argv, int childX, int childY)
 static const char mode_syntax[] =
   "Mode(Arc|Arrow|Copy|InsertPoint|Line|Lock|Move|None|PasteBuffer)\n"
   "Mode(Polygon|Rectangle|Remove|Rotate|Text|Thermal|Via)\n"
-  "Mode(Notify|Release|Cancel|Stroke)\n" "Mode(Save|Restore)";
+  "Mode(Notify|Release|Cancel|Stroke)\n"
+  "Mode(Save|Restore)";
 
 static const char mode_help[] = "Change or use the tool mode.";
 
@@ -3296,7 +3298,8 @@ ActionRemoveSelected (int argc, char **argv, int x, int y)
 
 /* --------------------------------------------------------------------------- */
 
-static const char renumber_syntax[] = "Renumber()\n" "Renumber(filename)";
+static const char renumber_syntax[] = "Renumber()\n"
+                                      "Renumber(filename)";
 
 static const char renumber_help[] =
   "Renumber all elements.  The changes will be recorded to filename\n"
@@ -3857,8 +3860,7 @@ ActionAddRats (int argc, char **argv, int x, int y)
 
 static const char delete_syntax[] =
   "Delete(Object|Selected)\n"
-  "Delete(AllRats|SelectedRats)"
-  ;
+  "Delete(AllRats|SelectedRats)";
 
 static const char delete_help[] = "Delete stuff.";
 
@@ -4029,9 +4031,10 @@ ActionAutoRoute (int argc, char **argv, int x, int y)
 /* --------------------------------------------------------------------------- */
 
 static const char markcrosshair_syntax[] =
-  "MarkCrosshair()\n" "MarkCrosshair(Center)";
+  "MarkCrosshair()\n"
+  "MarkCrosshair(Center)";
 
-static const char markcrosshair_help[] = "Set/Reset the Crosshair mark";
+static const char markcrosshair_help[] = "Set/Reset the Crosshair mark.";
 
 /* %start-doc actions MarkCrosshair
 
@@ -4324,7 +4327,8 @@ ActionChangeClearSize (int argc, char **argv, int x, int y)
 /* ---------------------------------------------------------------------------  */
 
 static const char minmaskgap_syntax[] =
-  "MinMaskGap(delta)\n" "MinMaskGap(Selected, delta)";
+  "MinMaskGap(delta)\n"
+  "MinMaskGap(Selected, delta)";
 
 static const char minmaskgap_help[] =
   "Ensures the mask is a minimum distance from pins and pads.";
@@ -4408,7 +4412,8 @@ ActionMinMaskGap (int argc, char **argv, int x, int y)
 /* ---------------------------------------------------------------------------  */
 
 static const char mincleargap_syntax[] =
-  "MinClearGap(delta)\n" "MinClearGap(Selected, delta)";
+  "MinClearGap(delta)\n"
+  "MinClearGap(Selected, delta)";
 
 static const char mincleargap_help[] =
   "Ensures that polygons are a minimum distance from objects.";
@@ -4607,7 +4612,8 @@ ActionChangePinName (int argc, char **argv, int x, int y)
 /* --------------------------------------------------------------------------- */
 
 static const char changename_syntax[] =
-  "ChangeName(Object)\n" "ChangeName(Layout|Layer)";
+  "ChangeName(Object)\n"
+  "ChangeName(Layout|Layer)";
 
 static const char changename_help[] = "Sets the name of objects.";
 
@@ -5376,7 +5382,7 @@ ActionChangePaste (int argc, char **argv, int x, int y)
 /* --------------------------------------------------------------------------- */
 
 static const char select_syntax[] =
-  "Select(ToggleObject)\n"
+  "Select(Object|ToggleObject)\n"
   "Select(All|Block|Connection)\n"
   "Select(ElementByName|ObjectByName|PadByName|PinByName)\n"
   "Select(ElementByName|ObjectByName|PadByName|PinByName, Name)\n"
@@ -5384,7 +5390,7 @@ static const char select_syntax[] =
   "Select(TextByName|ViaByName|NetByName, Name)\n"
   "Select(Convert)";
 
-static const char select_help[] = "Toggles or sets the selection";
+static const char select_help[] = "Toggles or sets the selection.";
 
 /* %start-doc actions Select
 
@@ -5575,10 +5581,11 @@ static const char unselect_syntax[] =
   "Unselect(All|Block|Connection)\n"
   "Unselect(ElementByName|ObjectByName|PadByName|PinByName)\n"
   "Unselect(ElementByName|ObjectByName|PadByName|PinByName, Name)\n"
-  "Unselect(TextByName|ViaByName)\n" "Unselect(TextByName|ViaByName, Name)\n";
+  "Unselect(TextByName|ViaByName)\n"
+  "Unselect(TextByName|ViaByName, Name)\n";
 
 static const char unselect_help[] =
-  "unselects the object at the pointer location or the specified objects";
+  "Unselects the object at the pointer location or the specified objects.";
 
 /* %start-doc actions Unselect
 
@@ -5839,7 +5846,8 @@ ActionSaveTo (int argc, char **argv, int x, int y)
 /* --------------------------------------------------------------------------- */
 
 static const char savesettings_syntax[] =
-  "SaveSettings()\n" "SaveSettings(local)";
+  "SaveSettings()\n"
+  "SaveSettings(local)";
 
 static const char savesettings_help[] = "Saves settings.";
 
@@ -6228,7 +6236,8 @@ ActionPasteBuffer (int argc, char **argv, int x, int y)
 
 /* --------------------------------------------------------------------------- */
 
-static const char undo_syntax[] = "Undo()\n" "Undo(ClearList)";
+static const char undo_syntax[] = "Undo()\n"
+                                  "Undo(ClearList)";
 
 static const char undo_help[] = "Undo recent changes.";
 
@@ -6777,7 +6786,8 @@ static const char changeflag_syntax[] =
   "ChangeFlag(SelectedLines|SelectedPins|SelectedVias, flag, value)\n"
   "ChangeFlag(SelectedPads|SelectedTexts|SelectedNames, flag, value)\n"
   "ChangeFlag(SelectedElements, flag, value)\n"
-  "flag = square | octagon | thermal | join\n" "value = 0 | 1";
+  "flag = square | octagon | thermal | join\n"
+  "value = 0 | 1";
 
 static const char changeflag_help[] = "Sets or clears flags on objects.";
 
@@ -7236,7 +7246,7 @@ ActionElementList (int argc, char **argv, int x, int y)
 /* ---------------------------------------------------------------- */
 static const char elementsetattr_syntax[] = "ElementSetAttr(refdes,name[,value])";
 
-static const char elementsetattr_help[] = "Sets or clears an element-specific attribute";
+static const char elementsetattr_help[] = "Sets or clears an element-specific attribute.";
 
 /* %start-doc actions elementsetattr
 
@@ -7300,7 +7310,7 @@ ActionElementSetAttr (int argc, char **argv, int x, int y)
 /* ---------------------------------------------------------------- */
 static const char execcommand_syntax[] = "ExecCommand(command)";
 
-static const char execcommand_help[] = "Runs a command";
+static const char execcommand_help[] = "Runs a command.";
 
 /* %start-doc actions execcommand
 
@@ -7531,7 +7541,7 @@ static const char import_syntax[] =
   "Import(setnewpoint[,(mark|center|X,Y)])\n"
   "Import(setdisperse,D,units)\n";
 
-static const char import_help[] = "Import schematics";
+static const char import_help[] = "Import schematics.";
 
 /* %start-doc actions Import
 
@@ -7602,7 +7612,7 @@ Note that Import() doesn't delete anything - after an Import, elements
 which shouldn't be on the board are selected and may be removed once
 it's determined that the deletion is appropriate.
 
-In @code{Import()} is called with @code{setnewpoint} then the location
+If @code{Import()} is called with @code{setnewpoint}, then the location
 of new components can be specified.  This is where parts show up when
 they're added to the board.  The default is the center of the board.
 
diff --git a/src/buffer.c b/src/buffer.c
index 4442bbb..110914c 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -865,7 +865,7 @@ LoadFootprintByName (BufferTypePtr Buffer, char *Footprint)
 
 static const char loadfootprint_syntax[] = "LoadFootprint(filename[,refdes,value])";
 
-static const char loadfootprint_help[] = "Loads a single footprint by name";
+static const char loadfootprint_help[] = "Loads a single footprint by name.";
 
 /* %start-doc actions LoadFootprint
 
diff --git a/src/djopt.c b/src/djopt.c
index b5d9c39..4995c08 100644
--- a/src/djopt.c
+++ b/src/djopt.c
@@ -2923,10 +2923,11 @@ grok_layer_groups ()
 
 static const char djopt_syntax[] =
   "djopt(debumpify|unjaggy|simple|vianudge|viatrim|orthopull)\n"
-  "djopt(auto) - all of the above\n" "djopt(miter)";
+  "djopt(auto) - all of the above\n"
+  "djopt(miter)";
 
 static const char djopt_help[] =
-  "Perform various optimizations on the current board";
+  "Perform various optimizations on the current board.";
 
 /* %start-doc actions djopt
 
diff --git a/src/fontmode.c b/src/fontmode.c
index 4f7f5b8..eae2545 100644
--- a/src/fontmode.c
+++ b/src/fontmode.c
@@ -68,7 +68,7 @@ RCSID ("$Id$");
 static const char fontedit_syntax[] = "FontEdit()";
 
 static const char fontedit_help[] =
-  "Convert the current font to a PCB for editing";
+  "Convert the current font to a PCB for editing.";
 
 /* %start-doc actions FontEdit
 
@@ -161,7 +161,7 @@ FontEdit (int argc, char **argv, int Ux, int Uy)
 
 static const char fontsave_syntax[] = "FontSave()";
 
-static const char fontsave_help[] = "Convert the current PCB back to a font";
+static const char fontsave_help[] = "Convert the current PCB back to a font.";
 
 /* %start-doc actions FontSave
 
diff --git a/src/hid/gtk/gui-top-window.c b/src/hid/gtk/gui-top-window.c
index 4186d85..1fbba95 100644
--- a/src/hid/gtk/gui-top-window.c
+++ b/src/hid/gtk/gui-top-window.c
@@ -3854,7 +3854,7 @@ static const char adjuststyle_syntax[] =
 "AdjustStyle()\n";
 
 static const char adjuststyle_help[] =
-"Open the window which allows editing of the route styles";
+"Open the window which allows editing of the route styles.";
 
 /* %start-doc actions AdjustStyle
 
@@ -3883,7 +3883,7 @@ static const char editlayergroups_syntax[] =
 "EditLayerGroups()\n";
 
 static const char editlayergroups_help[] =
-"Open the preferences window which allows editing of the layer groups";
+"Open the preferences window which allows editing of the layer groups.";
 
 /* %start-doc actions EditLayerGroups
 
diff --git a/src/move.c b/src/move.c
index 5e3913c..3ded0d0 100644
--- a/src/move.c
+++ b/src/move.c
@@ -1057,7 +1057,7 @@ MoveLayer (int old_index, int new_index)
 
 static const char movelayer_syntax[] = "MoveLayer(old,new)";
 
-static const char movelayer_help[] = "Moves/Creates/Deletes Layers";
+static const char movelayer_help[] = "Moves/Creates/Deletes Layers.";
 
 /* %start-doc actions MoveLayer
 




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs