Skip to content

Commit

Permalink
Merge pull request #32 from rly0nheart/v0.12.0
Browse files Browse the repository at this point in the history
V0.12.0
  • Loading branch information
rly0nheart authored Oct 21, 2023
2 parents 7313622 + b601f02 commit 3e23623
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Define URLs for Tor Expert Bundle and GeckoDriver
$torURL = "https://archive.torproject.org/tor-package-archive/torbrowser/12.5.6/tor-expert-bundle-12.5.6-windows-x86_64.tar.gz"
$torURL = "https://archive.torproject.org/tor-package-archive/torbrowser/13.0/tor-expert-bundle-13.0-windows-x86_64.tar.gz"
$geckoURL = "https://github.com/mozilla/geckodriver/releases/download/v0.33.0/geckodriver-v0.33.0-win64.zip"

# Define target directories for installation
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "tor2tor"
version = "0.11.0"
version = "0.12.0"
description = "Capture screenshots of onion services on an onion service."
authors = ["Richard Mwewa <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tor2tor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = "Richard Mwewa"
__about__ = "https://about.me/rly0nheart"
__version__ = "0.11.0"
__version__ = "0.12.0"
4 changes: 2 additions & 2 deletions tor2tor/coreutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ def set_loglevel(debug_mode: bool) -> logging.getLogger:
"""
logging.basicConfig(
level="NOTSET" if debug_mode else "INFO",
format="%(levelname)s %(message)s",
format="%(message)s",
handlers=[
RichHandler(markup=True, log_time_format="%H:%M:%S", show_level=False)
RichHandler(markup=True, log_time_format="%H:%M:%S", show_level=debug_mode)
],
)
return logging.getLogger("Tor2Tor")
Expand Down

0 comments on commit 3e23623

Please sign in to comment.