[gephex-devel] gephex--main--0.4--patch-1854
gephex at sonnenland.kexbox.org
gephex at sonnenland.kexbox.org
Sat Mar 5 00:28:51 CET 2005
Archive: gephex at gephex.org--2004
New revision: gephex--main--0.4--patch-1854
--
Revision: gephex--main--0.4--patch-1854
Archive: gephex at gephex.org--2004
Creator: The Gephex Source Archive <gephex at gephex.org>
Date: Sat Mar 5 00:25:55 CET 2005
Standard-date: 2005-03-04 23:25:55 GMT
Modified-files: INSTALL
modules/src/frbinmodule/frbinmodule.cpp
New-patches: georg at gephex.org--2004-home/gephex--georg--0.4--patch-396
georg at gephex.org--2004-home/gephex--georg--0.4--patch-397
gephex at gephex.org--2004/gephex--main--0.4--patch-1854
Summary: [MERGE-REQUEST] Fixed resizing bug in frbinmodule
Keywords:
Patches applied:
* georg at gephex.org--2004-home/gephex--georg--0.4--patch-396
Merged in main
* georg at gephex.org--2004-home/gephex--georg--0.4--patch-397
Fixed scaling bug in frbinmodule
* added files
{arch}/gephex/gephex--georg/gephex--georg--0.4/georg at gephex.org--2004-home/patch-log/patch-396
{arch}/gephex/gephex--georg/gephex--georg--0.4/georg at gephex.org--2004-home/patch-log/patch-397
{arch}/gephex/gephex--main/gephex--main--0.4/gephex at gephex.org--2004/patch-log/patch-1854
* modified files
--- orig/INSTALL
+++ mod/INSTALL
@@ -1,8 +1,10 @@
Please read README first!
-To install GePhex from source on windows, see README.win32.
+To install gephex from source on windows, see README.win32.
-To install GePhex on unix platforms, perform the following steps:
+To install gephex on mac os x, see README.macosx
+
+To install gephex on unix platforms, perform the following steps:
1. Type "./configure" (you may choose a different installation prefix
with --prefix=<your prefix here>, default is /usr/)
@@ -15,8 +17,7 @@
4. Go into <your chosen prefix>/bin and start gephex
-5. Have fun!!!
+5. Have fun!
For a more detailed documentation see:
- http://www.gephex.org/docu.php
-
+ http://www.gephex.org/docu/documentation.html#sec.building
--- orig/modules/src/frbinmodule/frbinmodule.cpp
+++ mod/modules/src/frbinmodule/frbinmodule.cpp
@@ -442,8 +442,8 @@
const unsigned int pos = frame_number % my->info.num_frames;
- const unsigned int xsize = default_size ? user_xsize : my->info.width;
- const unsigned int ysize = default_size ? user_ysize : my->info.height;
+ const unsigned int xsize = default_size ? my->info.width : user_xsize;
+ const unsigned int ysize = default_size ? my->info.height : user_ysize;
assert( xsize > 0 );
assert( ysize > 0 );
More information about the gephex-devel
mailing list