]> git.zerfleddert.de Git - micropolis/log
micropolis
3 days agoRemove copy of DejaVu font and prioritize helvetica
Michael Gernoth [Sat, 28 Jun 2025 08:18:00 +0000 (10:18 +0200)]
Remove copy of DejaVu font and prioritize helvetica

Dynamically adding and removing directories to/from the font-path
is a bad idea, so remove our own copy of the DejaVu font and use
Helvetica if it is available. This makes rendered fonts a bit
more bearable.

3 days agoAdd MicropolisPublicNameLicense and update readme
Michael Gernoth [Sat, 28 Jun 2025 08:04:37 +0000 (10:04 +0200)]
Add MicropolisPublicNameLicense and update readme

5 months agotk/tclx: explicitly declare types
Michael Gernoth [Thu, 30 Jan 2025 10:39:44 +0000 (11:39 +0100)]
tk/tclx: explicitly declare types

fixes build failures on newer gcc versions

5 months agotclxmath: add include for time.h
Michael Gernoth [Thu, 30 Jan 2025 10:39:06 +0000 (11:39 +0100)]
tclxmath: add include for time.h

3 years agoXINCLUDE: use /usr/X11R6/include everywhere
Michael Gernoth [Sat, 4 Jun 2022 12:13:05 +0000 (14:13 +0200)]
XINCLUDE: use /usr/X11R6/include everywhere

As X11 includes live in /usr/include on linux the previous
path was wrong anyway so switch to a path which should work
on other systems (does not break linux).

3 years agouse $(MAKE) in recursion to subdirectories
Michael Gernoth [Sat, 4 Jun 2022 09:34:28 +0000 (11:34 +0200)]
use $(MAKE) in recursion to subdirectories

As gnu make is needed to compile micropolis, don't just directly call
make in subdirectories but use $(MAKE) instead.

3 years agoremove outdated and unused .dif-files
Michael Gernoth [Sat, 4 Jun 2022 09:26:39 +0000 (11:26 +0200)]
remove outdated and unused .dif-files

3 years agosrc/tk/tkrawtcp.c: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/tk/tkrawtcp.c: Micropolis build fixes for recent macOS

Fix:
tkrawtcp.c:658:3: error: implicit declaration of function 'TkBindError' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
                TkBindError(interp);
                ^
tkrawtcp.c:665:3: error: implicit declaration of function 'TkBindError' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
                TkBindError(interp);
                ^
tkrawtcp.c:672:3: error: implicit declaration of function 'TkBindError' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
                TkBindError(interp);
                ^
tkrawtcp.c:680:3: error: implicit declaration of function 'TkBindError' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
                TkBindError(interp);
                ^

3 years agosrc/tk/tkevent.c: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/tk/tkevent.c: Micropolis build fixes for recent macOS

Fix:
tkevent.c:682:3: error: implicit declaration of function 'TkWmProtocolEventProc' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
                TkWmProtocolEventProc(winPtr, eventPtr);
                ^
tkevent.c:1447:5: error: implicit declaration of function 'Tcl_CheckForSignal' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
if (Tcl_CheckForSignal (tk_mainInterp, TCL_OK) == TCL_ERROR)
    ^
tkevent.c:1512:5: error: implicit declaration of function 'Tcl_CheckForSignal' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
if (Tcl_CheckForSignal (tk_mainInterp, TCL_OK) == TCL_ERROR)
    ^

3 years agosrc/tk/tkconfig.h: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/tk/tkconfig.h: Micropolis build fixes for recent macOS

Fix:
tkoption.c:875:9: error: implicit declaration of function 'read' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    if (read(fileId, buffer, (int) statBuf.st_size) != statBuf.st_size) {
        ^

3 years agosrc/tk/makefile: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/tk/makefile: Micropolis build fixes for recent macOS

Fix:
tkevent.c:24:10: fatal error: 'tclxtend.h' file not found
         ^~~~~~~~~~~~

3 years agosrc/tclx/ucbsrc/tclexpr.sed: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/tclx/ucbsrc/tclexpr.sed: Micropolis build fixes for recent macOS

Fix:
tclexpr.c:1321:1: error: implicit declaration of function 'Tcl_ReturnDouble' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
Tcl_ReturnDouble (interp, value.doubleValue);
^

3 years agosrc/tclx/ucbsrc/tclbasic.sed: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/tclx/ucbsrc/tclbasic.sed: Micropolis build fixes for recent macOS

Fix:
tclbasic.c:711:18: error: implicit declaration of function 'Tcl_CheckForSignal' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
        result = Tcl_CheckForSignal (interp, result);
                 ^

3 years agosrc/tclx/ucbsrc/makefile: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/tclx/ucbsrc/makefile: Micropolis build fixes for recent macOS

Fix:
tclbasic.c:23:10: fatal error: 'tclxtend.h' file not found
         ^~~~~~~~~~~~

3 years agosrc/tclx/tkucbsrc/makefile: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/tclx/tkucbsrc/makefile: Micropolis build fixes for recent macOS

Fix:
../../tk/tkconfig.h:55:10: fatal error: 'X11/Xlib.h' file not found
         ^~~~~~~~~~~~

3 years agosrc/tclx/src/tclxgdat.y: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/tclx/src/tclxgdat.y: Micropolis build fixes for recent macOS

Fix:
y.tab.c:1310:16: error: implicit declaration of function 'yylex' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
      yychar = YYLEX;
               ^
y.tab.c:1586:7: error: implicit declaration of function 'yyerror' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
      yyerror (YY_("syntax error"));
      ^
y.tab.c:1732:3: error: implicit declaration of function 'yyerror' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
  yyerror (YY_("memory exhausted"));
  ^

3 years agosrc/sim/makefile: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
src/sim/makefile: Micropolis build fixes for recent macOS

Evaluate SDLINCLUDE and SDLLIB just once, not for every compile.

Remove use of undefined XPMHOME variable.

3 years agoMakefile: Micropolis build fixes for recent macOS
Ryan Schmidt [Wed, 18 May 2022 10:53:08 +0000 (05:53 -0500)]
Makefile: Micropolis build fixes for recent macOS

Hide the sim executable in an appropriately-named subdirectory of libexec
rather than directly in libexec.

In the micropolis wrapper script, use a shebang line, use exec so that the
shell doesn't stay around, and quote user-supplied arguments properly.

7 years agoremove matherr
Markus Koschany [Tue, 13 Mar 2018 20:42:31 +0000 (21:42 +0100)]
remove matherr

Work around "tclxmerr.c:40:30: error: dereferencing pointer to incomplete type
'struct exception'"

7 years agoglibc 2.27
Markus Koschany [Tue, 13 Mar 2018 19:25:31 +0000 (20:25 +0100)]
glibc 2.27

Remove SVID error handling to fix FTBFS with glibc 2.27.

Forwarded: no
Bug-Debian: https://bugs.debian.org/891338

9 years agomicropolis-activity: fails to build with clang instead of gcc
Alexander Ovchinnikov [Sun, 16 Mar 2014 13:38:05 +0000 (09:38 -0400)]
micropolis-activity: fails to build with clang instead of gcc

Your package fails to build with clang instead of gcc. [-Wreturn-type]
The attached patch fixes it.

9 years agosim/w_x.c: initialize view->auto_y_goal
Michael Gernoth [Fri, 27 Nov 2015 16:59:54 +0000 (17:59 +0100)]
sim/w_x.c: initialize view->auto_y_goal

14 years agoshow less event history on small screens
Michael Gernoth [Sat, 18 Dec 2010 00:51:51 +0000 (01:51 +0100)]
show less event history on small screens

14 years agoadd button to hide mini-map
Michael Gernoth [Sat, 18 Dec 2010 00:47:04 +0000 (01:47 +0100)]
add button to hide mini-map

14 years agoshow mini-map when hovering over the empty mini-map frame
Michael Gernoth [Thu, 16 Dec 2010 21:31:44 +0000 (22:31 +0100)]
show mini-map when hovering over the empty mini-map frame

14 years agoimplement small-screen support for the initial micropolis screen
Michael Gernoth [Thu, 16 Dec 2010 09:53:32 +0000 (10:53 +0100)]
implement small-screen support for the initial micropolis screen

as the mini-map is not resizable, it is currently disabled, I'm
looking for a better solution

14 years agobegin suppport for smaller screens, currently just prints a warning
Michael Gernoth [Thu, 16 Dec 2010 08:50:24 +0000 (09:50 +0100)]
begin suppport for smaller screens, currently just prints a warning

Variables defining the scenarion window size and images can now be
set from micropolis.tcl depending on the display size. As there are
currently no nice small images available, just a warning is printed

15 years agoAvoid SIGLOST==SIGPWR namespace collision on sparc (LP: #505080).
Kamal Mostafa [Sat, 9 Jan 2010 08:29:56 +0000 (08:29 +0000)]
Avoid SIGLOST==SIGPWR namespace collision on sparc (LP: #505080).

15 years agomake monster behaviour configurable
Michael Gernoth [Sun, 11 Oct 2009 22:03:19 +0000 (00:03 +0200)]
make monster behaviour configurable

15 years agowater will not kill the monster
Michael Gernoth [Fri, 9 Oct 2009 15:57:40 +0000 (17:57 +0200)]
water will not kill the monster

this is how the original DOS-version behaves

15 years agolet the monster survive if it is born in a river
Michael Gernoth [Fri, 9 Oct 2009 15:33:16 +0000 (17:33 +0200)]
let the monster survive if it is born in a river

15 years agochange SDL linking to work with newer SDL versions again
Michael Gernoth [Fri, 2 Oct 2009 13:34:24 +0000 (15:34 +0200)]
change SDL linking to work with newer SDL versions again

15 years agoallow overriding $CC for tclx
Michael Gernoth [Tue, 8 Sep 2009 07:33:38 +0000 (09:33 +0200)]
allow overriding $CC for tclx

15 years agoFix the last warning on x86_64
Michael Gernoth [Tue, 8 Sep 2009 07:07:29 +0000 (09:07 +0200)]
Fix the last warning on x86_64

15 years agoEnable warnings and fix them, all of them
Michael Gernoth [Mon, 7 Sep 2009 20:24:48 +0000 (22:24 +0200)]
Enable warnings and fix them, all of them

This involved adding prototypes for most functions and fixing
all errors revealed by this. The outcome should be a much more
stable Micropolis, as now all functions are called with their
defined arguments and also have a defined return value.
This should fix debian bug #522529 in a different way than the
patch in the bug description

17 years agoprevent forking a huge number of player processes by limiting them to
Michael Gernoth [Tue, 12 Feb 2008 20:22:44 +0000 (21:22 +0100)]
prevent forking a huge number of player processes by limiting them to
a maximum of 10 per second

17 years agoexit child when exec fails
Michael Gernoth [Tue, 12 Feb 2008 06:25:17 +0000 (07:25 +0100)]
exit child when exec fails

17 years agoexplicitly start sdl_helper with /bin/sh
Michael Gernoth [Mon, 11 Feb 2008 21:45:31 +0000 (22:45 +0100)]
explicitly start sdl_helper with /bin/sh

17 years agouse old forking player when SDL_mixer is not available
Michael Gernoth [Mon, 11 Feb 2008 21:23:19 +0000 (22:23 +0100)]
use old forking player when SDL_mixer is not available

17 years agoadd ugly sdl_helper to automagically find and enable SDL_mixer
Michael Gernoth [Mon, 11 Feb 2008 20:56:54 +0000 (21:56 +0100)]
add ugly sdl_helper to automagically find and enable SDL_mixer

17 years agoreenable ui sounds played by UIMakeSound
Michael Gernoth [Mon, 11 Feb 2008 20:12:35 +0000 (21:12 +0100)]
reenable ui sounds played by UIMakeSound

17 years agoencapsulate sdl_mixer stuff in #ifdef WITH_SDL_MIXER
Michael Gernoth [Mon, 11 Feb 2008 20:07:37 +0000 (21:07 +0100)]
encapsulate sdl_mixer stuff in #ifdef WITH_SDL_MIXER

17 years agoFix SDL includes for OS X.
Deanna Phillips [Mon, 11 Feb 2008 13:56:15 +0000 (08:56 -0500)]
Fix SDL includes for OS X.

Append to, rather than overwrite CFLAGS.  Extra include paths can be
passed through the environment.

17 years agoZap unused vars.
Deanna Phillips [Mon, 11 Feb 2008 13:27:05 +0000 (08:27 -0500)]
Zap unused vars.

17 years agoLinux pkg-config needs double dashes.
Deanna Phillips [Mon, 11 Feb 2008 13:07:40 +0000 (08:07 -0500)]
Linux pkg-config needs double dashes.

17 years agoAdd an SDL sound backend and use it instead of spawning an external
Deanna Phillips [Sun, 10 Feb 2008 23:32:08 +0000 (18:32 -0500)]
Add an SDL sound backend and use it instead of spawning an external
player.  SDL and SDL_mixer are now required.  You may get them from:

http://www.libsdl.org
http://www.libsdl.org/projects/SDL_mixer/

If you have problems building, try uncommenting the extra SDLLIBS and
SDLINCLUDES variables in src/sim/makefile.

17 years agoadd "uninstall" target
Michael Gernoth [Mon, 4 Feb 2008 13:50:00 +0000 (14:50 +0100)]
add "uninstall" target

17 years agoadd .desktop-file from Ian Darwin, forwarded by Deanna Phillips
Michael Gernoth [Mon, 4 Feb 2008 11:22:59 +0000 (12:22 +0100)]
add .desktop-file from Ian Darwin, forwarded by Deanna Phillips
This adds integration into various desktops

17 years agoDESTDIR support for Makefile
Michael Gernoth [Mon, 4 Feb 2008 10:54:43 +0000 (11:54 +0100)]
DESTDIR support for Makefile

17 years agoadd "install" target to Makefile
Michael Gernoth [Sun, 3 Feb 2008 23:03:39 +0000 (00:03 +0100)]
add "install" target to Makefile

17 years agoremove executable bit from sounds
Michael Gernoth [Sun, 3 Feb 2008 22:41:17 +0000 (23:41 +0100)]
remove executable bit from sounds

17 years agosearch sounds and player in $ResourceDir
Michael Gernoth [Sun, 3 Feb 2008 20:59:05 +0000 (21:59 +0100)]
search sounds and player in $ResourceDir

17 years agotarget "all" should be phony
Michael Gernoth [Sun, 3 Feb 2008 20:43:56 +0000 (21:43 +0100)]
target "all" should be phony

17 years agoadd simple Makefile in top directory
Michael Gernoth [Sun, 3 Feb 2008 20:41:42 +0000 (21:41 +0100)]
add simple Makefile in top directory

17 years agoadd .gitignore to ignore build-products
Michael Gernoth [Mon, 28 Jan 2008 21:07:24 +0000 (22:07 +0100)]
add .gitignore to ignore build-products

17 years agodo not include unused alloca.h (from Deanna Phillips' OpenBSD repository)
Michael Gernoth [Sun, 27 Jan 2008 20:00:55 +0000 (21:00 +0100)]
do not include unused alloca.h (from Deanna Phillips' OpenBSD repository)

17 years agoinclude xpm.h from X11/ (from Deanna Phillips' OpenBSD repository)
Michael Gernoth [Sun, 27 Jan 2008 19:59:22 +0000 (20:59 +0100)]
include xpm.h from X11/ (from Deanna Phillips' OpenBSD repository)

17 years agoOptimize redrawing so that the mouse is more responsive, from Marc Espie.
Michael Gernoth [Sun, 27 Jan 2008 19:12:58 +0000 (20:12 +0100)]
Optimize redrawing so that the mouse is more responsive, from Marc Espie.
Fixes sluggish mouse behavior.
Forwarded by Deanna Phillips.

17 years agoavoid black flashing on scenario description
Michael Gernoth [Sun, 27 Jan 2008 15:29:14 +0000 (16:29 +0100)]
avoid black flashing on scenario description

17 years agocleanup UILoseGame
Michael Gernoth [Sun, 27 Jan 2008 13:20:47 +0000 (14:20 +0100)]
cleanup UILoseGame

17 years agodon't wreck ships when disasters are disabled
Michael Gernoth [Sun, 27 Jan 2008 13:16:57 +0000 (14:16 +0100)]
don't wreck ships when disasters are disabled

17 years agodon't quit immediately when the user loses a scenario, instead present a message
Michael Gernoth [Sun, 27 Jan 2008 00:18:33 +0000 (01:18 +0100)]
don't quit immediately when the user loses a scenario, instead present a message

17 years agoshow description (including time limit) when hovering over a scenario
Michael Gernoth [Sat, 26 Jan 2008 21:15:41 +0000 (22:15 +0100)]
show description (including time limit) when hovering over a scenario

17 years agofix fire coverage overlay by iterating over the whole map
Michael Gernoth [Sat, 26 Jan 2008 19:45:43 +0000 (20:45 +0100)]
fix fire coverage overlay by iterating over the whole map

17 years agostill more NumLock fixes, this time for scrollbars and sliders
Michael Gernoth [Sat, 26 Jan 2008 18:55:51 +0000 (19:55 +0100)]
still more NumLock fixes, this time for scrollbars and sliders

17 years agohandle spaces in path-names, too
Michael Gernoth [Sat, 26 Jan 2008 16:05:14 +0000 (17:05 +0100)]
handle spaces in path-names, too

17 years agohandle spaces in filenames
Michael Gernoth [Sat, 26 Jan 2008 13:52:58 +0000 (14:52 +0100)]
handle spaces in filenames

17 years agoAdd "Pause" to Priority menu
Michael Gernoth [Sat, 26 Jan 2008 13:13:36 +0000 (14:13 +0100)]
Add "Pause" to Priority menu

17 years agofix power grid overlay on big endian X servers
Michael Gernoth [Sat, 26 Jan 2008 10:38:33 +0000 (11:38 +0100)]
fix power grid overlay on big endian X servers

17 years agofix remaining NumLock problems by teaching tk to detect the Alt modifier
Michael Gernoth [Fri, 25 Jan 2008 23:36:58 +0000 (00:36 +0100)]
fix remaining NumLock problems by teaching tk to detect the Alt modifier

17 years agore-add (disabled) air crash disaster
Michael Gernoth [Thu, 24 Jan 2008 17:13:09 +0000 (18:13 +0100)]
re-add (disabled) air crash disaster
edit src/sim/makefile and remove -DNO_AIRCRASH from DEFINES to enable it

17 years agodraw a solid overlay, when requested
Michael Gernoth [Thu, 24 Jan 2008 17:09:38 +0000 (18:09 +0100)]
draw a solid overlay, when requested

17 years agoallow scenario window to be closed
Michael Gernoth [Wed, 23 Jan 2008 21:13:24 +0000 (22:13 +0100)]
allow scenario window to be closed

17 years agomake double click work on OS X
Michael Gernoth [Tue, 22 Jan 2008 21:42:11 +0000 (22:42 +0100)]
make double click work on OS X

17 years agofix modifier problems (like NumLock) by ignoring hateMods
Michael Gernoth [Sun, 20 Jan 2008 13:23:23 +0000 (14:23 +0100)]
fix modifier problems (like NumLock) by ignoring hateMods

17 years agofix typo in crime alert
Michael Gernoth [Sun, 20 Jan 2008 00:39:51 +0000 (01:39 +0100)]
fix typo in crime alert

17 years agofix real cause of crash when falling back to wire mode
Michael Gernoth [Wed, 16 Jan 2008 23:43:49 +0000 (00:43 +0100)]
fix real cause of crash when falling back to wire mode

17 years agofix for crash when falling back from shared memory to wired mode.
Michael Gernoth [Wed, 16 Jan 2008 22:15:09 +0000 (23:15 +0100)]
fix for crash when falling back from shared memory to wired mode.
(the big_tile_pixmap is inaccessible while it is recreated, so
 do not try to access it)

17 years agofix multiplayer mode
Michael Gernoth [Wed, 16 Jan 2008 00:40:49 +0000 (01:40 +0100)]
fix multiplayer mode

17 years agoadd missing break in switch
Michael Gernoth [Tue, 15 Jan 2008 23:35:16 +0000 (00:35 +0100)]
add missing break in switch

17 years agoimplement shared memory for 24bpp
Michael Gernoth [Tue, 15 Jan 2008 23:25:10 +0000 (00:25 +0100)]
implement shared memory for 24bpp

17 years agoFix for shared memory leak by Kurt Miller.
Michael Gernoth [Tue, 15 Jan 2008 22:19:49 +0000 (23:19 +0100)]
Fix for shared memory leak by Kurt Miller.
Thanks to Deanna Phillips for forwarding it.

17 years agoshrink game window to fit on screen if necessary
Michael Gernoth [Tue, 15 Jan 2008 21:18:18 +0000 (22:18 +0100)]
shrink game window to fit on screen if necessary

17 years agomore big endian fixes (overlays on minimaps)
Michael Gernoth [Tue, 15 Jan 2008 21:10:35 +0000 (22:10 +0100)]
more big endian fixes (overlays on minimaps)

17 years agoadd /usr/X11R6/lib to libpath
Michael Gernoth [Tue, 15 Jan 2008 17:31:23 +0000 (18:31 +0100)]
add /usr/X11R6/lib to libpath

17 years agoreplace call to setpgrp with setpgid, as setpgrp is defined different on OS X Tiger
Michael Gernoth [Tue, 15 Jan 2008 17:26:20 +0000 (18:26 +0100)]
replace call to setpgrp with setpgid, as setpgrp is defined different on OS X Tiger

17 years agorename setenv and unsetenv to not clash with functions provided by libc
Michael Gernoth [Tue, 15 Jan 2008 17:21:11 +0000 (18:21 +0100)]
rename setenv and unsetenv to not clash with functions provided by libc

17 years agofix colors on BGR displays
Michael Gernoth [Tue, 15 Jan 2008 13:30:34 +0000 (14:30 +0100)]
fix colors on BGR displays

17 years agofix dependencies for simulator binary
Michael Gernoth [Tue, 15 Jan 2008 13:02:27 +0000 (14:02 +0100)]
fix dependencies for simulator binary

17 years agocorrectly differentiate between solaris and SunOS
Michael Gernoth [Mon, 14 Jan 2008 22:57:53 +0000 (23:57 +0100)]
correctly differentiate between solaris and SunOS

17 years agouse bash builtin to detect player
Michael Gernoth [Mon, 14 Jan 2008 22:51:57 +0000 (23:51 +0100)]
use bash builtin to detect player

17 years agoenable swapping for 8 bit on big endian machines
Michael Gernoth [Mon, 14 Jan 2008 22:40:07 +0000 (23:40 +0100)]
enable swapping for 8 bit on big endian machines

17 years agosh compatibility fixes
Michael Gernoth [Mon, 14 Jan 2008 22:37:51 +0000 (23:37 +0100)]
sh compatibility fixes

17 years agobetter search for matching visual
Michael Gernoth [Mon, 14 Jan 2008 22:15:02 +0000 (23:15 +0100)]
better search for matching visual

17 years agofix 15 bit mode
Michael Gernoth [Mon, 14 Jan 2008 22:10:44 +0000 (23:10 +0100)]
fix 15 bit mode

17 years agoinitialize HostName
Michael Gernoth [Mon, 14 Jan 2008 20:43:40 +0000 (21:43 +0100)]
initialize HostName

17 years agofix height of windows in column 1
Michael Gernoth [Mon, 14 Jan 2008 17:37:01 +0000 (18:37 +0100)]
fix height of windows in column 1

17 years agocorrectly resize editor window to be in sync with the mini map
Michael Gernoth [Mon, 14 Jan 2008 14:18:53 +0000 (15:18 +0100)]
correctly resize editor window to be in sync with the mini map

17 years agoresize editor when resizing window
Michael Gernoth [Mon, 14 Jan 2008 12:13:00 +0000 (13:13 +0100)]
resize editor when resizing window

17 years agoallow window to be resized
Michael Gernoth [Mon, 14 Jan 2008 09:11:50 +0000 (10:11 +0100)]
allow window to be resized
this is not optimal, as the embedded subwindows do not resize but at least it
is usable on smaller displays

Impressum, Datenschutz