Skip to content

Commit

Permalink
fix: Hotfix for errors caused by resource files
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlin7 committed Dec 2, 2024
1 parent 622c8b2 commit c27189b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "biscuit-editor"
version = "3.0.0"
version = "3.0.1"
description = "A lightweight, fast, and extensible code editor with a growing community"
authors = ["Billy <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/biscuit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.0.0"
__version__ = "3.0.1"
__version_info__ = tuple([int(num) for num in __version__.split(".")])

from .main import *
2 changes: 1 addition & 1 deletion src/biscuit/settings/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, master) -> None:
self.load_data()

def load_data(self) -> None:
self.logo = self.load_image("logo.png")
# self.logo = self.load_image("logo.png")
self.stipple = self.get_res_path("bitmap/stipple.xbm")
self.indent_guide = self.get_res_path("bitmap/indentguide.xbm")
self.line = self.get_res_path("bitmap/line.xbm")
Expand Down

0 comments on commit c27189b

Please sign in to comment.