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 CHANGED
@@ -1,4 +1,4 @@
1
- # Klio - Astrological CLI Tool
1
+ # Klio
2
2
 
3
3
  A command-line tool for astrological calculations, health analysis, and personalized astrology insights.
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "klio",
3
- "version": "1.5.3",
3
+ "version": "1.5.5",
4
4
  "description": "A CLI for astrological calculations",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -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.');