| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| typora-plugin@v1.19.0.zip | 2026-08-01 | 3.4 MB | |
| 1.19.0 source code.tar.gz | 2026-08-01 | 6.0 MB | |
| 1.19.0 source code.zip | 2026-08-01 | 6.2 MB | |
| README.md | 2026-08-01 | 2.2 kB | |
| Totals: 4 Items | 15.6 MB | 0 | |
1.19.x version 🎉🎉🎉
- refactor(core): BREAKING CHANGE Remove the
customplugin,BaseCustomPluginAPI, andcustom_plugin.user.tomlconfiguration file. - refactor(core): BREAKING CHANGE Replace
getBasePlugin()andtryGetPlugin()APIs with a unifiedgetPlugin()API. - refactor(easy_modify, right_outline, auto_number, resource_manager): Improve code quality.
- feat(window_tab): Support adjustable tab height (#1239) and refine UI/UX.
- change(commander): Remove the
NORMALIZE_ENV_VARSconfiguration option. - change(search_multi): Remove the
STOP_SEARCHING_ON_HIDINGconfiguration option. - change: Update CSS loaders for
action_buttons,collapse_list,collapse_paragraph,collapse_table,command_palette,dark,datatables,drawIO,fence_enhance,markdownlint,marp,mouse_gestures,no_image,read_only,right_click_menu, andslash_commands. - improve(search_multi): Refine UI/UX.
- bump: Upgrade
smol-tomlto v1.7.1.
开发者说明
此版本我做了 BREAKING CHANGE。我干掉了 custom 插件和 custom_plugin.default.toml ,custom_plugin.user.toml 文件。
在新版本下:
-
简化插件模型。不再区分一级插件和二级插件,所有自带插件和用户自定义插件都是一等公民,降低心智负担。由于干掉了
custom插件,用户自定义的插件需要做一些适配改动。详见 DEVELOP_PLUGINS.md (github.com)。 -
settings.default.toml和settings.user.toml是唯二的配置文件,他们是配置的唯一真实来源。 -
压缩包比上一版本减少了约 20KB 🎉。在不影响可读性和代码质量的前提下,我已经尽力压制项目的体积增长。当前项目共计 64 个插件。平均每个插件体积为 3.27 * 1024 / 64 = 52.32KB。
删除 custom 插件的代码在我本地已经放了三个月了,为了兼容一直没敢上线。直到最近,越来越多的二开的开发者都放弃二级插件,选用一级插件,这给了我勇气去清除一些技术债。在此感谢所有用户和二次开发者。