klio 1.5.3 → 1.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/astrology/astrologyConstants.js +4 -2
- package/src/cli/cli.js +2 -2
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -9,7 +9,8 @@ const planets = {
|
|
|
9
9
|
saturn: 6,
|
|
10
10
|
uranus: 7,
|
|
11
11
|
neptune: 8,
|
|
12
|
-
pluto: 9
|
|
12
|
+
pluto: 9,
|
|
13
|
+
chiron: 15
|
|
13
14
|
};
|
|
14
15
|
|
|
15
16
|
// Zodiac signs (English)
|
|
@@ -49,7 +50,8 @@ const dignities = {
|
|
|
49
50
|
6: { sign: 'Capricorn', exaltation: 'Libra', fall: 'Aries', detriment: 'Cancer' }, // Saturn
|
|
50
51
|
7: { sign: 'Aquarius', exaltation: 'Sagittarius', fall: 'Leo', detriment: 'Taurus' }, // Uranus
|
|
51
52
|
8: { sign: 'Pisces', exaltation: 'Leo', fall: 'Aquarius', detriment: 'Virgo' }, // Neptune
|
|
52
|
-
9: { sign: 'Scorpio', exaltation: 'Aries', fall: 'Taurus', detriment: 'Scorpio' } // Pluto
|
|
53
|
+
9: { sign: 'Scorpio', exaltation: 'Aries', fall: 'Taurus', detriment: 'Scorpio' }, // Pluto
|
|
54
|
+
15: { sign: 'Virgo', exaltation: 'Pisces', fall: 'Virgo', detriment: 'Pisces' } // Chiron
|
|
53
55
|
};
|
|
54
56
|
|
|
55
57
|
module.exports = {
|
package/src/cli/cli.js
CHANGED
|
@@ -1560,8 +1560,8 @@ program
|
|
|
1560
1560
|
};
|
|
1561
1561
|
}
|
|
1562
1562
|
|
|
1563
|
-
// Check if we should use natal positions (when --i is used without custom date)
|
|
1564
|
-
if (shouldUseBirthData(options) && !options.d) {
|
|
1563
|
+
// Check if we should use natal positions (when --i, --p1, --p2, --wp, or --up is used without custom date)
|
|
1564
|
+
if ((shouldUseBirthData(options) || shouldUsePersonData(options)) && !options.d) {
|
|
1565
1565
|
useNatalPositions = true;
|
|
1566
1566
|
customDate = birthData; // Use birth data for planet positions
|
|
1567
1567
|
console.log('Using natal positions from birth data.');
|