thonny-codemate 0.1.0__py3-none-any.whl → 0.1.2__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: thonny-codemate
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A Thonny IDE plugin that provides AI-powered coding assistance using local and cloud LLMs
5
5
  Author-email: tokoroten <shinta.nakayama@gmail.com>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
- thonny_codemate-0.1.0.dist-info/licenses/LICENSE,sha256=f6YK7MRRtaWl2brMAtg_aGrsLK_i4rVyho0y1PdnFi0,1065
1
+ thonny_codemate-0.1.2.dist-info/licenses/LICENSE,sha256=f6YK7MRRtaWl2brMAtg_aGrsLK_i4rVyho0y1PdnFi0,1065
2
2
  thonnycontrib/__init__.py,sha256=7INAjyU8ojDRVyo0y1OQh3ynMPRGqBJZL4fa--i3elk,33
3
- thonnycontrib/thonny_codemate/__init__.py,sha256=M312z1qN0Pxtl6xUggSFQ0euX2kD8voBCoqFIlLLM6Q,13485
3
+ thonnycontrib/thonny_codemate/__init__.py,sha256=I972dZtJ_Ds73y884hhj66QEaRyRrzCPzMuBn9l_PCA,13487
4
4
  thonnycontrib/thonny_codemate/api.py,sha256=YLXjPsB6cykgRwyjzrUBOGFtw0eu4BQgr1AiMbj8e7c,4259
5
5
  thonnycontrib/thonny_codemate/context_manager.py,sha256=K83M-VlBy7DR1xzedyPT8NViqnR9CmX95YmXnDBzRFM,11274
6
6
  thonnycontrib/thonny_codemate/external_providers.py,sha256=PmIRY_lLOILCAZa4mpP3yB9PU7ZWSddWjYPf2S7vkyY,29016
@@ -21,7 +21,7 @@ thonnycontrib/thonny_codemate/utils/__init__.py,sha256=xjA_6r7WFCf3RbCNnZhwFOSap
21
21
  thonnycontrib/thonny_codemate/utils/constants.py,sha256=l6KKItPClPy7IWZKH53Kpq-PNMfJogTYIZ2OGKTZO8w,3159
22
22
  thonnycontrib/thonny_codemate/utils/error_messages.py,sha256=kOucGfSwBIOE23GsVAIcQYY7YbKjezIuOxiIM1wTKY4,3601
23
23
  thonnycontrib/thonny_codemate/utils/unified_error_handler.py,sha256=yvrSiXC3Kzro4KLL6lDLMBRfdff79PLvBF1yjHFhv9E,10769
24
- thonny_codemate-0.1.0.dist-info/METADATA,sha256=ZKugHzfp8cMIdTNUXCnVjfRh25FESOit_I1LdW8R6iE,10870
25
- thonny_codemate-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
- thonny_codemate-0.1.0.dist-info/top_level.txt,sha256=thF9WQtY_lcNKOOR4SQeeWLAVWb4i8XhdGC7pEMAOHY,14
27
- thonny_codemate-0.1.0.dist-info/RECORD,,
24
+ thonny_codemate-0.1.2.dist-info/METADATA,sha256=NEuFXU-gfuVFhg8OWOa_YRTlpS3HPkTuSzpmqAl7yzM,10870
25
+ thonny_codemate-0.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
+ thonny_codemate-0.1.2.dist-info/top_level.txt,sha256=thF9WQtY_lcNKOOR4SQeeWLAVWb4i8XhdGC7pEMAOHY,14
27
+ thonny_codemate-0.1.2.dist-info/RECORD,,
@@ -31,7 +31,7 @@ logger = logging.getLogger(__name__)
31
31
  logger.disabled = True
32
32
 
33
33
  # プラグインのバージョン
34
- __version__ = "0.1.0"
34
+ __version__ = "0.1.2"
35
35
 
36
36
  # グローバル変数でプラグインの状態を管理
37
37
  _plugin_loaded = False
@@ -111,7 +111,7 @@ def load_plugin():
111
111
  command_id="show_llm_assistant",
112
112
  menu_name="tools",
113
113
  command_label=tr("Show LLM Assistant"),
114
- handler=lambda: workbench.show_view("LLM Assistant"), # ビュー名を使用
114
+ handler=lambda: workbench.show_view("LLMChatViewHTML"), # クラス名を使用
115
115
  group=150
116
116
  )
117
117