diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2006-01-25 01:51:34 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2006-01-25 01:51:34 +0000 |
commit | 7effaf81bdf96d866e2c94ed2b8058c37f68c9c7 (patch) | |
tree | cd1d545aac92e9ece85e4b32cfb36ec40b83969e /cad/gschem/patches | |
parent | f43a67d266dfc69075b4efca180a3244f99c7a4e (diff) | |
download | pkgsrc-7effaf81bdf96d866e2c94ed2b8058c37f68c9c7.tar.gz |
Update to 20060123. Changes since the last version include
- added autobackup (saves to backup files every <n> seconds)
- added "L" drawing support
- added embedded picture support
- added a few new symbols
- added support for spice netlisting of Josephson junction devices
- added pcbpins netlist backend for forward annotating schematic pin
names to PCB layouts.
- several odd bug fixes
Diffstat (limited to 'cad/gschem/patches')
-rw-r--r-- | cad/gschem/patches/patch-aa | 55 | ||||
-rw-r--r-- | cad/gschem/patches/patch-ab | 55 |
2 files changed, 0 insertions, 110 deletions
diff --git a/cad/gschem/patches/patch-aa b/cad/gschem/patches/patch-aa deleted file mode 100644 index 983e874e09d..00000000000 --- a/cad/gschem/patches/patch-aa +++ /dev/null @@ -1,55 +0,0 @@ -$NetBSD: patch-aa,v 1.7 2005/09/09 12:07:23 dmcmahill Exp $ - ---- noweb/x_dialog.nw.orig 2005-08-20 14:13:28.000000000 +0000 -+++ noweb/x_dialog.nw -@@ -901,6 +901,7 @@ text_edit_dialog (TOPLEVEL *w_current, c - char *text_size_string; - int len; - int num_selected; -+ int select_index=0; - - num_selected = o_selection_return_num(w_current->page_current->selection2_head); - -@@ -977,7 +978,6 @@ text_edit_dialog (TOPLEVEL *w_current, c - gtk_widget_show(label); - - optionmenu = gtk_option_menu_new(); -- int select_index=0; - - gtk_option_menu_set_menu(GTK_OPTION_MENU(optionmenu), create_color_menu(w_current, &select_index)); - gtk_option_menu_set_history(GTK_OPTION_MENU(optionmenu), select_index); -@@ -3466,14 +3466,15 @@ create_color_menu (TOPLEVEL * w_current, - char *temp=NULL; - int found=0; - -- menu = gtk_menu_new (); -- group = NULL; -- - /* first lets see if we have a selected object, if so select its color */ - int select_col = -1; - int item_index = 0; - SELECTION *s_current = NULL; - OBJECT *object = NULL; -+ -+ menu = gtk_menu_new (); -+ group = NULL; -+ - /* skip over head */ - s_current = w_current->page_current->selection2_head->next; - -@@ -3651,6 +3652,7 @@ color_edit_dialog (TOPLEVEL *w_current) - GtkWidget *buttonapply = NULL; - GtkWidget *optionmenu; - GtkWidget *vbox, *action_area; -+ int select_index = 0; - - if (!w_current->clwindow) { - w_current->clwindow = x_create_dialog_box(&vbox, &action_area); -@@ -3679,7 +3681,6 @@ color_edit_dialog (TOPLEVEL *w_current) - #endif - - optionmenu = gtk_option_menu_new (); -- int select_index = 0; - gtk_option_menu_set_menu(GTK_OPTION_MENU(optionmenu), - create_color_menu (w_current, &select_index)); - gtk_option_menu_set_history(GTK_OPTION_MENU (optionmenu), select_index); diff --git a/cad/gschem/patches/patch-ab b/cad/gschem/patches/patch-ab deleted file mode 100644 index 7c867a67c1c..00000000000 --- a/cad/gschem/patches/patch-ab +++ /dev/null @@ -1,55 +0,0 @@ -$NetBSD: patch-ab,v 1.6 2005/09/09 12:07:23 dmcmahill Exp $ - ---- src/x_dialog.c.orig 2005-08-20 14:27:39.000000000 +0000 -+++ src/x_dialog.c -@@ -555,6 +555,7 @@ text_edit_dialog(TOPLEVEL * w_current, c - char *text_size_string; - int len; - int num_selected; -+ int select_index = 0; - - num_selected = - o_selection_return_num(w_current->page_current->selection2_head); -@@ -632,7 +633,6 @@ text_edit_dialog(TOPLEVEL * w_current, c - gtk_widget_show(label); - - optionmenu = gtk_option_menu_new(); -- int select_index = 0; - - gtk_option_menu_set_menu(GTK_OPTION_MENU(optionmenu), - create_color_menu(w_current, &select_index)); -@@ -2638,14 +2638,15 @@ static GtkWidget *create_color_menu(TOPL - char *temp = NULL; - int found = 0; - -- menu = gtk_menu_new(); -- group = NULL; -- - /* first lets see if we have a selected object, if so select its color */ - int select_col = -1; - int item_index = 0; - SELECTION *s_current = NULL; - OBJECT *object = NULL; -+ -+ menu = gtk_menu_new(); -+ group = NULL; -+ - /* skip over head */ - s_current = w_current->page_current->selection2_head->next; - -@@ -2788,6 +2789,7 @@ void color_edit_dialog(TOPLEVEL * w_curr - GtkWidget *buttonapply = NULL; - GtkWidget *optionmenu; - GtkWidget *vbox, *action_area; -+ int select_index = 0; - - if (!w_current->clwindow) { - w_current->clwindow = x_create_dialog_box(&vbox, &action_area); -@@ -2815,7 +2817,6 @@ void color_edit_dialog(TOPLEVEL * w_curr - #endif - - optionmenu = gtk_option_menu_new(); -- int select_index = 0; - gtk_option_menu_set_menu(GTK_OPTION_MENU(optionmenu), - create_color_menu(w_current, &select_index)); - gtk_option_menu_set_history(GTK_OPTION_MENU(optionmenu), select_index); |