domsniper 0.1.2 → 0.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "domsniper",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "All-in-one domain intelligence toolkit — availability checker, security recon, portfolio manager. Built with Bun.",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",
package/src/app.tsx CHANGED
@@ -90,7 +90,7 @@ export function App({ initialDomains, batchFile, autoRegister = false }: AppProp
90
90
  const [showPortfolio, setShowPortfolio] = useState(false);
91
91
  const [filter, setFilter] = useState<FilterConfig>({ ...DEFAULT_FILTER });
92
92
  const [logs, setLogs] = useState<{ id: number; time: string; msg: string; fg: string }[]>([
93
- { id: 0, time: ts(), msg: "Domain Sniper v0.1.2 initialized", fg: theme.textMuted },
93
+ { id: 0, time: ts(), msg: "Domain Sniper v0.1.3 initialized", fg: theme.textMuted },
94
94
  { id: 1, time: ts(), msg: "Press ? for all commands", fg: theme.textMuted },
95
95
  ]);
96
96
  const [registrarConfig] = useState<RegistrarConfig | null>(loadConfigFromEnv());
@@ -1880,7 +1880,7 @@ export function App({ initialDomains, batchFile, autoRegister = false }: AppProp
1880
1880
  <text content="" />
1881
1881
  <box flexDirection="row" gap={1} justifyContent="center">
1882
1882
  <text content="◆" fg={theme.primary} />
1883
- <text content="DOMAIN SNIPER v0.1.2" fg={theme.primary} />
1883
+ <text content="DOMAIN SNIPER v0.1.3" fg={theme.primary} />
1884
1884
  </box>
1885
1885
  <box justifyContent="center">
1886
1886
  <text content="Domain Intelligence & Security Recon" fg={theme.textDisabled} />
@@ -2058,7 +2058,7 @@ export function App({ initialDomains, batchFile, autoRegister = false }: AppProp
2058
2058
  </>
2059
2059
  )}
2060
2060
  </box>
2061
- <text content={stats.total > 0 ? `${stats.available + stats.expired}/${stats.total} actionable` : "v0.1.2"} fg={theme.textDisabled} />
2061
+ <text content={stats.total > 0 ? `${stats.available + stats.expired}/${stats.total} actionable` : "v0.1.3"} fg={theme.textDisabled} />
2062
2062
  </box>
2063
2063
  </box>
2064
2064
  </box>
package/src/index.tsx CHANGED
@@ -43,7 +43,7 @@ const program = new Command();
43
43
  program
44
44
  .name("dsniper")
45
45
  .description("All-in-one domain intelligence toolkit — availability checker, security recon, portfolio manager")
46
- .version("0.1.2")
46
+ .version("0.1.3")
47
47
  .argument("[domains...]", "Domain(s) to check")
48
48
  .option("-f, --file <path>", "Path to file with domains (one per line)")
49
49
  .option("-a, --auto-register", "Automatically register available domains", false)