Skip to content

Releases: Fanhuaji/Sublime-Fanhuaji

4105-3.0.0

29 May 18:30
b41c43f
Compare
Choose a tag to compare

This release requires Package Control v4 or higher.

To install the latest Package Control, you can just execute the following script in ST console. (see wbond/package_control#1612)

from urllib.request import urlretrieve;urlretrieve(url="https://github.com/wbond/package_control/releases/latest/download/Package.Control.sublime-package", filename=sublime.installed_packages_path() + '/Package Control.sublime-package')

You also have to make sure Package Control's v4 channel is in its plugin settings and not being overridden.

	// A list of URLs that each contain a JSON file with a list of repositories.
	// The repositories from these channels are placed in order after the
	// repositories from the "repositories" setting
	"channels": [
		// channel_v4 for python 3.8 compatible libraries to enable plugins
		// to migrate to python 3.8 until packagecontrol.io supports new scheme.
		// Note: Must always be located before default channel in the list!
		"https://packagecontrol.github.io/channel/channel_v4.json",
		// default channel for packages
		"https://packagecontrol.io/channel_v3.json"
	],

  • refactor: use py38 libs (pydantic, requests) and remove vendor libs

4105-2.0.5

15 Feb 08:59
ea2d610
Compare
Choose a tag to compare
  • refactor: use more py38 syntax
  • chore(deps): update dacite 1.8.1

4105-2.0.4

13 Aug 17:51
7344717
Compare
Choose a tag to compare
  • refactor: utilize dataclass and dacite

4105-2.0.3

07 Mar 09:15
61df5c0
Compare
Choose a tag to compare
  • fix: modules should be reloaded when update plugin
  • refactor: simplify boot.py

4105-2.0.2

15 Feb 06:17
b72ee88
Compare
Choose a tag to compare
  • chore: update dependencies
  • refactor: entity-ize server responses
  • refactor: change how panel items look
    image

4105-2.0.1

04 Aug 09:22
9432b72
Compare
Choose a tag to compare
  • chore: update dependencies

4105-2.0.0

02 Aug 10:07
af43403
Compare
Choose a tag to compare
  • refactor: drop ST 3 support (min requirement is ST 4105)

    People can still use the legacy 1.3.3 release, which supports ST 3.

3118-1.3.3

02 Aug 10:18
0ae9808
Compare
Choose a tag to compare
  • fix: fanhuaji_convert_panel is not working

  • chore: add a default keybinding for the fanhuaji_convert_panel command

    [
      {
        keys: ["alt+f", "alt+h", "alt+j"],
        command: "fanhuaji_convert_panel",
      },
    ];

    image