Skip to content

Commit c27189b

Browse files
committed
fix: Hotfix for errors caused by resource files
1 parent 622c8b2 commit c27189b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "biscuit-editor"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
description = "A lightweight, fast, and extensible code editor with a growing community"
55
authors = ["Billy <billydevbusiness@gmail.com>"]
66
license = "MIT"

src/biscuit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.0"
1+
__version__ = "3.0.1"
22
__version_info__ = tuple([int(num) for num in __version__.split(".")])
33

44
from .main import *

src/biscuit/settings/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, master) -> None:
2121
self.load_data()
2222

2323
def load_data(self) -> None:
24-
self.logo = self.load_image("logo.png")
24+
# self.logo = self.load_image("logo.png")
2525
self.stipple = self.get_res_path("bitmap/stipple.xbm")
2626
self.indent_guide = self.get_res_path("bitmap/indentguide.xbm")
2727
self.line = self.get_res_path("bitmap/line.xbm")

0 commit comments

Comments
 (0)