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

gEDA-cvs: gaf.git: branch: stable-1.6 created (1.6.0-20091004)



The branch, stable-1.6 has been created
        at  d8740dadf4a78d240a4dc8255f72fd316579146e (commit)


commit d8740dadf4a78d240a4dc8255f72fd316579146e
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Oct 4 21:58:54 2009 -0400

    Commited a few more updates to the libgeda/po files (caused by make distcheck)

commit 3fd50335ddfe0ed7f358d46a0fba23bff25073e6
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Oct 4 21:23:05 2009 -0400

    Updated date and version in all man pages

commit 7b1a1549a71ac20938fdf3c06ff40f93eeed7b7d
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Oct 4 21:22:24 2009 -0400

    Updated versions in prep for a new version

commit a8d42b7de50639897c888646883ce88d819d2589
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Oct 4 21:11:20 2009 -0400

    Ran make update-po in all po directories in prep for a new release

commit 6f6122a6aecd9e942898f7d91757e2f3f0199d7b
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Oct 4 21:04:19 2009 -0400

    Updated the NEWS file for the next release

commit 3edef9ffb6ebb859213efea337e3bd419b99da8e
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Oct 4 20:16:03 2009 -0400

    Spacing tweak

commit b7ca06041ea464b0d064bfa965843d2907a83571
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Oct 4 19:39:14 2009 -0400

    Updated the wiki docs from the online version (in prep for the next release)
    
    (Un)fortunately, the previous mechanism for updating the wiki offline
    docs from the online version is completely broken now (due to a segfault
    in an external tool), so a new mechanism was used to download the files.
    The good news is that the number of files and directories that need to
    be downloaded has been reduced considerably.  This is the first cut
    of the wiki sync.

commit 4f40000aff79919a3894de4e2e6e560e224220ce
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Tue Sep 29 01:43:05 2009 +0100

    libgeda: Move slot handling code to its own file, s_slot.c
    
    Separates special-case attribute handling from o_attrib.c
    
    Renamed functions:
      o_attrib_search_slot() -> s_slot_search_slot()
      o_attrib_slot_update() -> s_slot_update_object()
    
    libgeda private API:
      o_attrib_find_attrib_by_name() is no longer static to o_attrib.c

commit 3e6e56f8840a5df6512e9305879d75afd9ece373
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Tue Sep 29 01:43:02 2009 +0100

    Use o_text_set_string() to adjust attribute values
    
    Avoids re-writing the text->string member directly.

commit ff7738b406991a47bf77d2af4b20d0e59d148e1f
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Sep 28 21:30:51 2009 +0100

    Rubberband pin to pin connections by adding nets
    
    This relies on the fact that (as an implementation detail), gschem
    will rubber-band a zero length net created at the pin-pin interface.
    
    Somewhat of a kludge, but the behaviour is nice for the user.

commit a1bff619eb7f1c7be77cca7c47b82dc80b4e3571
Merge: 488a4849946cfb6e57469302cc24d4d98557aa46 1d83fae5a612f52affc5252fa3ef3324d01657a1
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Sep 28 17:07:21 2009 +0100

    Merge commit 'cesar/build-sys-improvements'

commit 488a4849946cfb6e57469302cc24d4d98557aa46
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Sep 28 16:35:35 2009 +0100

    gattrib: Configure test no longer requires pkgconfig
    
    Remove the dependancy to avoid un-necessary rot

commit 78da20ca286eb2f6e518c64dca94b888fc8c19af
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Sep 28 16:08:29 2009 +0100

    gattrib: Remove bit rotten GtkItemEntry widget implementation
    
    This fixes gattrib with Gtk > 2.16.x
    
    The old gtkitementry_2_2.c code subclassed GtkEntry, and (ab)used its
    private implementation. The implementation of GtkEntry changed in 2.18 to
    allow a model / view architecture, breaking this code (and thus gattrib).
    
    Since we didn't use any of the extra features the GtkItemEntry subclass
    provided, we can simply drop this code and use plain GtkEntry widgets in
    gattrib.
    
    Remove the configure test which requires gattrib to be disabled when
    building against later gtk versions.

commit 1d83fae5a612f52affc5252fa3ef3324d01657a1
Author: Cesar Strauss <cestrauss@xxxxxxxxx>
Date:   Wed Sep 23 19:50:59 2009 -0300

    build-sys: Avoid using "$*" for source files.
    
    When building out-of-tree, commands using $* for source files will not
    find them, since $* refers to the target, not the source. Better use
    $< for source files and $@ for target files.

commit 5ca5b9768cf70f3d0f905d784d0896c6b442c34f
Author: Cesar Strauss <cestrauss@xxxxxxxxx>
Date:   Wed Sep 23 19:29:07 2009 -0300

    build-sys: Check and set Windows-specific flags.
    
    The Windows platform has a native gcc port (MinGW) and a
    POSIX compliant one (Cygwin). Both need specific flags to
    build correctly.
    
    The rules are:
    
    * On all Windows platforms, pass -no-undefined to libtool.
      This allows shared libraries (DLLs) to be built.
    
    * On MinGW, use the -mms-bitfields compiler flag.
      This increases compatibility with the MSVC compiler.
    
    * On MinGW, pass -mwindows when linking GUI-only applications.
      This avoids opening a text console when running from a shortcut.

commit 287682ac11e4ae0c49f991ad7cdcaadf07779fbd
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Fri Sep 4 10:02:53 2009 -0400

    Changed tarball name to be all lower case to make package maintainers happier

commit 2197f7740aeef021c75504e82ad3004bb6a8e1b0
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Aug 31 19:38:11 2009 +0100

    libgeda: Make some net consolidation routines private
    
    Don't export the functions which are only used within libgeda.

commit f850ee37983f27d48d0173b003e8377f0bac3f63
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Aug 31 19:38:10 2009 +0100

    libgeda: Clarify code to re-select consolidated nets.
    
    Minor re-write to make the logic clearer.

commit e70cfefcd69a9038ba12759e7f690bc3a041d98c
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Aug 31 19:38:10 2009 +0100

    gschem: Don't explicitly consolidate nets as they are drawn
    
    There is no need to do this here, since all nets are consolidated
    in each call to o_undo_savestate().

commit 394425f81b0653fc8efa9f5890217ee4fae631e0
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Aug 31 19:38:10 2009 +0100

    Don't consolidate nets when loading files.
    
    Nets should be consolidated when placed, not when the file is loaded.

commit 399560caafde7046fe0e361712389e559969a424
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Aug 31 19:38:09 2009 +0100

    gschem: Fix net consolidation (HACK)
    
    Net consolidation was previously triggered at file save time, until
    commit 1f05fb8e7b857c2bba2fbcaa4893ecbedcc478a9 removed the call to
    o_net_consolidate() from o_save_buffer().
    
    Unfortunately, gschem relied on this call to ensure net consolidation
    behaviour worked as expected. When changes were made on the schematic,
    o_undo_savestate() was called to save an undo state (to a temporary
    file), which eventually called o_save_buffer(), and this caused nets
    on in the schematic to be consolidated.
    
    As a kludge to work around this regression, this commit adds a call
    to o_net_consolidate() in o_undo_savestate(). This of course, is not
    a nice place to put it! This issue should be revisited after 1.6.x
    is released, ideally finding a cleaner place to trigger consolidations.
    
    Notes on the problem:
    
    Consolidate nets needs to happen when:
    
      A new net is drawn (and added to the page)
      A net end-point is rubber-banded
      A net is moved / copied into place
      A net sitting perpendicularly between two colinear nets
        (preventing them consolidating) is removed (Cut/Move/Delete)
    
    We want the "undo" state saved to be inclusive of the net
    consolidation.. therefore it needs to happen _before_ the undo state
    is saved, or we would have to cheat, and consolidate again after any
    "undo" / "redo" operation.
    
    Since o_undo_savestate() is called after modifications are made to
    the page, it provides a useful (but kludgy) place to catch all of
    the above cases before the undo state is saved.

commit 45002f0be0efb9638bcb96e67bbd1e5d3cd602c6
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Aug 30 19:26:36 2009 -0400

    Updated all manpage versions in prep for a new release (v1.5.4)

commit 52946266fdb9c6d039c378af94b8b6f311996b48
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Aug 30 19:25:03 2009 -0400

    Ran make update-po in gschem in prep for a new release (v1.5.4)

commit ea27420dea16ff4d62d14235910fd5b395b6fff6
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sun Aug 30 19:04:32 2009 -0400

    Incremented package version and date to 1.5.4 and 20090830
    
    gEDA/gaf 1.5.3 had some critical bugs in it, specifically:
    d388f5370c4b264df90e79a412968589706402c4
    4a4218692e089ef40e17acf045cb94849e8b6b3c
    and a nice bug fix:
    b1f7256890fe8ff48ae077d1fa3cdfcf29ccdc0f
    
    gEDA/gaf v1.5.3 was never widely distributed, so it was withdrawn before
    it spread.  One of the bugs dealt with the so versioning on libgeda (so
    did not get any version), so I am not going to change the so version at
    this point in time (stays at 37:0:0).

commit b1f7256890fe8ff48ae077d1fa3cdfcf29ccdc0f
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Sun Aug 30 20:16:53 2009 +0100

    gschem: Substitute spaces for underscores in displayed accelerator strings
    
    This makes accelerators such as "Page_Up" display as "Page Up", in line
    with how normal GTK accelerators are displayed.

commit d388f5370c4b264df90e79a412968589706402c4
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Sun Aug 30 19:32:08 2009 +0100

    libgeda: Fix linking against guile
    
    With the geda-guile.m4 check, guile's library and linker flags are
    held in the GUILE_LIBS variable, not GUILE_LDFLAGS.

commit 4a4218692e089ef40e17acf045cb94849e8b6b3c
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Sun Aug 30 19:30:01 2009 +0100

    libgeda: Fix libtool versioning for libgeda.so
    
    We need to pass -version-info, not --version-info to libtool

commit ed5ec6928ef5653a2f8a7df7313e81648b538963
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 22:53:18 2009 -0400

    Added some additional fixed bugs to the NEWS file

commit 0dd9b27c559a4056312c0ad6275ba5c31d1aee46
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 22:39:16 2009 -0400

    Fixed bug where none of the translated languages were working correctly.
    
    The meaning and value of the PACKAGE #define has changed in the new build
    system and we don't need to use it in certain places (like when calling
    bindtextdomain or textdomain).
    
    This bug was reported by Carlos Nieves (Thanks!)

commit 52f809520c670690cb73b00b4207feb6860b073d
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 21:42:10 2009 -0400

    Ran make update-po in all po directories in prep for the next release

commit 48cfd281de766e976cce21103333e566ed6dfcab
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 17:32:36 2009 -0400

    Updated toplevel NEWS with another change

commit a34e326784706cb761ba689a75bef19a5b1ee880
Author: Mark Rages <markrages@xxxxxxxxx>
Date:   Sat Aug 29 17:05:06 2009 -0400

    Modify the drawing of the grips to set a hard limit on the screen size
    
    This patch changes the size of the grips in gschem.  In the past, the
    grip size was always directly related to the zoom factor (you would
    get really large grips when zoomed in a lot).  Now the grip sizes are a
    fixed size at certain zoom factors (grip sizes are reasonably sized when
    zoomed in a lot).  This patch also renders the grips on top of endpoint
    cues so that you can see the grip rectangle when you are zoomed in a lot
    (there might be a better way of doing this, but this works for now).
    
    Signed-off-by: Ales Hvezda <ahvezda@xxxxxxxx>

commit b0fa7dd7839915703d9101006bed1c7305477e30
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 16:51:44 2009 -0400

    Updated the versions of the software in all man pages

commit 211e381f2295cb29673199c0c767c254bfe3f2e4
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 16:50:20 2009 -0400

    Updated the AX_GIT_VERSION in prep for the next release

commit 9a928684c64bbd4343a71dcc3176073c075588d0
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 16:22:30 2009 -0400

    More tweaks to the toplevel NEWS file.

commit 47aae1c069fc118386d33682309ec18a86e6f71e
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 16:10:37 2009 -0400

    Updated NEWS file for the 1.5.3 release

commit b19eb8f35a3b4f404a395cdc637496ef15a36dd1
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 14:51:36 2009 -0400

    Updated package version and libgeda shared library version

commit 6ead47c4df3fa6e8227523aa88282c7d4e678f46
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 14:46:07 2009 -0400

    More tweaks to the images Makefile to not build by default and do cleanup

commit a8295ba6d957394c9d56465bc2bfc14a43fc251d
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 13:14:57 2009 -0400

    Added some machine generated documentation files to be ignored

commit e890e7c806dbd5bcd311ad5cd201a7f5ec31dcec
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 12:52:27 2009 -0400

    Added libgeda/docs/images to the build system
    
    Unfortunately automake complains when creating libgeda/docs/Makefile.in:
        `%'-style pattern rules are a GNU make extension
    It will be interesting to see if this causes anybody problems.

commit 6726beb5c3e3d30ade6d486d8760fc789118d1eb
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Sat Aug 29 10:36:32 2009 -0400

    Changed the order of the subdirs so that make check builds gxyrs earlier

commit 8db05013c0542a6e2f8931b9c2ba2318fe8b613f
Author: Carlos Nieves Onega <cnieves@xxxxxxxxxx>
Date:   Wed Aug 26 21:38:44 2009 +0200

    Updated spanish translation for libgeda and gschem.

commit 1ef5b2a3545e7ebc06025a460b0c9563663e789d
Author: Carlos Nieves Onega <cnieves@xxxxxxxxxx>
Date:   Sun Feb 1 13:38:36 2009 +0100

    Add a new scheme function to set the page filename.
    
    Add a new scheme function set-page-filename to set the filename
    of a given page.

commit af3f6fc265cb30972df4344a39a67451ab1148b2
Author: Carlos Nieves Onega <cnieves@xxxxxxxxxx>
Date:   Sun Feb 1 13:13:29 2009 +0100

    Run the add component hook after adding a new component using scheme.
    
    Run the add component hook after adding a new component
    using the scheme function add-component-at-x-y.

commit dbcfd09c99266379d08d90b9d8a9dd23a6566eec
Author: Carlos Nieves Onega <cnieves@xxxxxxxxxx>
Date:   Sun Feb 1 12:51:15 2009 +0100

    Fix x coordinate in add-component-at-xy function.
    
    X coordinate was previously get from the Y coordinate parameter.

commit 1b152740c10b5198d16a43a73f08ccbe90d37ccb
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Date:   Tue Aug 18 22:56:56 2009 -0400

    Updated all po files by running make update-po in all the */po directories
    
    Run make update-po again might be necessary as we get closer to release time.

commit 15e761e3d09923bb3cdc850b93f653850071cc35
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Aug 17 15:02:34 2009 +0100

    gattrib: Remove menu entry for unimplemented "File->Open" feature
    
    Popping up a dialog for unimplemented features stops the user being
    able to identify what parts of the program are supposed to work.
    
    Due to internal data-structures not being cleared out, opening new
    files is not a trivial feature to implement cleanly.
    
    Remove the non-working menu option for now.
    
    Users must select the files they wish to work with as command line
    arguments, or in the file-chooser dialog offered when the program
    starts.

commit e5ae12ec1091bd6e3c4067e395714efd3934b0c2
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Aug 17 13:18:10 2009 +0100

    Remove old text mechanism, including TEXT->prim_objs, symbols/font/*
    
    Now we have pango rendering, the old text mechanism and its
    glyph symbols are redundant and can be removed.

commit e061c8ea2a955d2eeb03da65c33945c30f821043
Merge: 1f06f3a27656ced3d56dbc55391fc97ec28b2611 e0e40c710281628213e55c432da6bf3783f7f3c1
Author: Dan McMahill <mcmahill@holding.(none)>
Date:   Mon Aug 17 07:53:37 2009 -0400

    Merge branch 'master' of ssh://git.gpleda.org/home/git/gaf

commit e0e40c710281628213e55c432da6bf3783f7f3c1
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Date:   Mon Aug 17 12:41:24 2009 +0100

    build-sys: Correct header in geda-gattrib.m4.





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