Skip to content

Commit

Permalink
Upload all version 7.50 files
Browse files Browse the repository at this point in the history
  • Loading branch information
CruiserOne authored Sep 10, 2022
1 parent 6da80f3 commit a2689af
Show file tree
Hide file tree
Showing 46 changed files with 15,218 additions and 13,650 deletions.
15 changes: 9 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Astrolog (Version 7.40) File: Makefile (Unix version)
# Astrolog (Version 7.50) File: Makefile (Unix version)
#
# IMPORTANT NOTICE: Astrolog and all chart display routines and anything
# not enumerated elsewhere in this program are Copyright (C) 1991-2022 by
Expand All @@ -17,18 +17,21 @@
# library, and if applicable, the main X library.
#
NAME = astrolog
OBJ = astrolog.o atlas.o calc.o charts0.o charts1.o charts2.o charts3.o\
OBJS = astrolog.o atlas.o calc.o charts0.o charts1.o charts2.o charts3.o\
data.o express.o general.o intrpret.o io.o matrix.o placalc.o placalc2.o\
xdata.o xgeneral.o xdevice.o xcharts0.o xcharts1.o xcharts2.o xscreen.o\
swecl.o swedate.o swehouse.o swejpl.o swemmoon.o swemplan.o sweph.o\
swephlib.o

# If you don't have X windows, delete the "-lX11" part from the line below:
# If not compiling with GNUC, delete the "-ldl" part from the line below:
LIBS = -lm -lX11 -ldl
LIBS = -lm -lX11 -ldl -s
CPPFLAGS = -O -Wno-write-strings -Wno-narrowing -Wno-comment
RM = rm -f

astrolog:: $(OBJ)
cc -o $(NAME) $(OBJ) $(LIBS)
strip $(NAME)
$(NAME): $(OBJS)
cc -o $(NAME) $(OBJS) $(LIBS)

clean:
$(RM) $(OBJS) $(NAME)
#
6 changes: 5 additions & 1 deletion astrolog.as
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@AD740 ; Astrolog 7.40 default settings file astrolog.as
@AD750 ; Astrolog 7.50 default settings file astrolog.as

; The contents of this file can be automatically generated with the
; "File / Save Settings" menu command, or with the -od command switch.
Expand All @@ -7,6 +7,7 @@
-z0 Autodetect ; Default Daylight time [0 standard, 1 daylight]
-zl 122W19'59 47N36'35 ; Default location [longitude and latitude]
-zv 167ft ; Default elevation [in feet or meters ]
-zf 59F ; Default temperature [in Fahren. or Celsius ]
-zj "Current moment now" "Seattle, WA, USA" ; Default name and location

-Yz 0 ; Time minute addition to be used if "now" charts are offset.
Expand All @@ -22,6 +23,7 @@ _k ; Ansi color text ["=k" is color, "_k" is monochrome ]
:d 48 ; Searching divisions [Change "48" to desired divisions ]
_b0 ; Print zodiac seconds ["_b0" to minute, "=b0" to second ]
=b ; Use ephemeris files ["=b" uses them, "_b" doesn't ]
=0b ; Disable old calculations ["=0b" disables them, "_0b" allows ]
:w 0 ; Wheel chart text rows [Change "0" to desired wheel rows ]
:I 80 ; Text screen columns [Change "80" to desired columns ]
-YQ 0 ; Text screen scroll limit [Change "24" or set to "0" for none]
Expand Down Expand Up @@ -75,6 +77,7 @@ _Yv ; European length units ["_Yv" is imperial, "=Yv" is metric]
-YR0 0 0 ; Restrict sign changes, direction changes
-YR1 1 1 ; Restrict latitude direction changes, distance direction changes
-YR2 1 1 ; Restrict latitude zero node crossings, distance equivalence
-YR7 0 1 1 0 1 ; Restrict rulerships: std, esoteric, hierarch, exalt, ray
-YRZ 0 0 0 0 ; Restrict angle events: rising, zenith, setting, nadir
Expand Down Expand Up @@ -176,6 +179,7 @@ _Yv ; European length units ["_Yv" is imperial, "=Yv" is metric]
; GRAPHICS DEFAULTS:
_XJ ; Indian type wheels ["_XJ" is Western, "=XJ" is Indian ]
=Xm ; Color charts ["=Xm" is color, "_Xm" is monochrome]
_Xr ; Reverse background ["_Xr" is black, "=Xr" is white ]
:Xw 600 600 ; Default X and Y resolution (not including sidebar)
Expand Down
Loading

0 comments on commit a2689af

Please sign in to comment.