Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gnumeric
Commits
cf2fe885
Commit
cf2fe885
authored
Jan 25, 2002
by
Jody Goldberg
Browse files
Add some warnings and update the reqs.
parent
a661a798
Changes
8
Hide whitespace changes
Inline
Side-by-side
BUGS
View file @
cf2fe885
...
...
@@ -19,6 +19,9 @@ Pending Patches
Long term breakage
------------------
- gnumeric_editable_enters the arguments are backwards. This is being called
on the editable, not the dialog.
- Auto-format (the "style on a range" kind) assumes a certain data layout,
such as a final "Total" row. I would like an extension that would allow
me to ignore the final line of the template. This could probably be
...
...
ChangeLog
View file @
cf2fe885
...
...
@@ -6,6 +6,7 @@
2002-01-24 Jody Goldberg <jody@gnome.org>
* configure.in : explicitly disable guile, psiconv, and bonobo for now.
Add a warning.
* src/Makefile.am : Apparently the sources list is order dependent.
Put the built sources at the top.
...
...
OChangeLog-2002-01-22
View file @
cf2fe885
...
...
@@ -6,6 +6,7 @@
2002-01-24 Jody Goldberg <jody@gnome.org>
* configure.in : explicitly disable guile, psiconv, and bonobo for now.
Add a warning.
* src/Makefile.am : Apparently the sources list is order dependent.
Put the built sources at the top.
...
...
OChangeLog-2003-12-23
View file @
cf2fe885
...
...
@@ -6,6 +6,7 @@
2002-01-24 Jody Goldberg <jody@gnome.org>
* configure.in : explicitly disable guile, psiconv, and bonobo for now.
Add a warning.
* src/Makefile.am : Apparently the sources list is order dependent.
Put the built sources at the top.
...
...
OChangeLog-2005-11-14
View file @
cf2fe885
...
...
@@ -6,6 +6,7 @@
2002-01-24 Jody Goldberg <jody@gnome.org>
* configure.in : explicitly disable guile, psiconv, and bonobo for now.
Add a warning.
* src/Makefile.am : Apparently the sources list is order dependent.
Put the built sources at the top.
...
...
README
View file @
cf2fe885
...
...
@@ -8,36 +8,50 @@ This is Gnumeric, the GNOME spreadsheet.
file COPYING.
The project aims to become a drop in replacement for commercial
spreadsheets. Gnumeric is still a young program and it is advancing
steadily.
If you are interested in contributing to it's development please
send us some
email, there are lots of projects available.
spreadsheets. Gnumeric is still a young program and it is advancing
steadily.
If you are interested in contributing to it's development please
send us some
email, there are lots of projects available.
To report Gnumeric bugs, please visit bugzilla.gnome.org.
WARNING WARNING WARNING
This is the _DEVELOPMENT_ branch of gnumeric. It is undergoing rapid change
and is _NOT_ suitable for packaging or production work. Please use the
stable branch
cvs co -r gnome_1_4 gnumeric
WARNING WARNING WARNING
Requirements
------------
You need:
glib >= 1.2.7 (glib 1.3 is not supported)
gtk+ >= 1.2.7 (gtk+ 1.3 is not supported)
gnome-libs >= 1.0.57 (gnome-libs 2.0 is not supported)
xml-i18n-tools >= 0.9 (only required to build, not while running)
libglade >= 0.16
gal >= 0.16
gnome-print >= 0.29
gnome-xml >= 1.8.14 (gnome-xml 2.x not supported yet)
glib >= 1.3.10
gtk+ >= 1.3.10
libgnome >= 1.105.0 ??
libgnomeui >= 1.106.0 ??
libbonobo >= 1.106.0 ??
libbonoboui >= 1.106.0 ??
libgnomeprint >= 1.106.0 ??
libgnomeprintui >= 1.106.0 ??
intltools >= 0.9
libglade >= 1.99.4
gal-2 >= 0.0.0 (gal-2 branch of module gal)
gnome-xml >= 2.4.12
NOTE : gnome-xml is also known as libxml
libole2 >=
0.2.4
libole2 >=
1.3.0
NOTE : libole2 is also known as libgnomeole2
Optionally:
bonobo >= 1.0.9
NOTE : With bonobo you will need gnome-libs >= 1.2.7
gb == 0.0.17 (Gnome Basic for macros)
gda >= 0.2.92 (GDA plugin, for accessing databases)
guile >= 1.5 ("Soon" to be releated Guile version)
guppi >= 0.40.0 (corresponds to 0.72)
Currently Disabled
gb == 0.0.17
guile >= 1.5
guppi >= 0.40.3
evolution >= beta3
Notes regarding plugins
...
...
configure.in
View file @
cf2fe885
...
...
@@ -486,6 +486,16 @@ stamp.h
echo "
WARNING WARNING WARNING
This is the _DEVELOPMENT_ branch of gnumeric. It is undergoing rapid change
and is _NOT_ suitable for packaging or production work. Please use the
stable branch
cvs co -r gnome_1_4 gnumeric
WARNING WARNING WARNING
Configuration:
Source code location: ${srcdir}
...
...
src/dialogs/dialog-sheet-order.c
View file @
cf2fe885
...
...
@@ -275,13 +275,13 @@ dialog_sheet_order_impl (WorkbookControlGUI *wbcg, GladeXML *gui)
#endif
gtk_window_set_policy
(
GTK_WINDOW
(
sm
.
dialog
),
FALSE
,
TRUE
,
FALSE
);
gtk_widget_show_all
(
G
NOME
_DIALOG
(
sm
.
dialog
)
->
vbox
);
gtk_widget_show_all
(
G
TK
_DIALOG
(
sm
.
dialog
)
->
vbox
);
bval
=
gnumeric_dialog_run
(
sm
.
wbcg
,
G
NOME
_DIALOG
(
sm
.
dialog
));
bval
=
gnumeric_dialog_run
(
sm
.
wbcg
,
G
TK
_DIALOG
(
sm
.
dialog
));
/* If the user canceled we have already returned */
if
(
bval
!=
-
1
)
gnome_dialog_close
(
G
NOME
_DIALOG
(
sm
.
dialog
));
gnome_dialog_close
(
G
TK
_DIALOG
(
sm
.
dialog
));
}
/*
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment