New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

programmify

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

programmify - pypi Package Compare versions

Comparing version
0.0.6
to
0.0.7
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: programmify
Version: 0.0.6
Version: 0.0.7
Summary: Quickly make a windows executable with a system tray icon and an configurable (read empty) PyQT5 window

@@ -5,0 +5,0 @@ Author-email: Torin Halsted <modularizer@gmail.com>

@@ -7,3 +7,3 @@ [build-system]

name = "programmify"
version = "0.0.6"
version = "0.0.7"
description = "Quickly make a windows executable with a system tray icon and an configurable (read empty) PyQT5 window"

@@ -10,0 +10,0 @@ readme = "README.md"

Metadata-Version: 2.1
Name: programmify
Version: 0.0.6
Version: 0.0.7
Summary: Quickly make a windows executable with a system tray icon and an configurable (read empty) PyQT5 window

@@ -5,0 +5,0 @@ Author-email: Torin Halsted <modularizer@gmail.com>

@@ -15,3 +15,3 @@ import argparse

def png_to_ico(png_path: str, ico_path: str = None, size: int = 16):
def png_to_ico(png_path: str, ico_path: str = None, size: int = 64):
png_path = str(Path(png_path).resolve())

@@ -36,3 +36,3 @@ if ico_path is None:

parser.add_argument("--ico_path", help="Path to the .ico file")
parser.add_argument("--size", default=16, help="Icon size")
parser.add_argument("--size", type=int, default=64, help="Icon size")
args = parser.parse_args()

@@ -73,4 +73,5 @@ png_to_ico(args.png_path, args.ico_path, args.size)

if default_icon is None:
default_icon = detect_icon(Path(__file__).parent)
if default_icon is None:
default_icon = str(programmify_icon.resolve())

@@ -77,0 +78,0 @@