bloodycrownD / simple-extension-manager

MIT License
8 stars 2 forks source link

Pack Sync doesn't seem to be working correctly #4

Open Old-Farmer opened 1 year ago

Old-Farmer commented 1 year ago

I create packs on my linux machine, and sync them with the official sync function. However, I can't see my custom packs on my windows machine, but I have found them in my extensions.json on my windows machine, Things like:

{ "identifier": { "id": "bloodycrown.myxextension" }, "version": "1.0.0", "preRelease": false, "pinned": false, "installed": true }, { "identifier": { "id": "bloodycrown.xxcxcxxxextensionxpack" }, "preRelease": false, "version": "1.0.0", "pinned": false, "installed": true }

I have no idea about the problem.

我在linux上创建了软件包,然后使用了官方的同步功能,但是在我的Windows机器上看不到同步的包,仅可以在同步的extensions.json中发现我创建的包,但是却不能正常显示出来。

bloodycrownD commented 1 year ago

暂时没实现这个功能,这段时间我会尝试增加这个功能

Old-Farmer commented 1 year ago

哦哦,主要是我看到你的那个readme里面有一个同步的feature,我还以为是个bug。谢谢,加油!

bloodycrownD commented 1 year ago

I create packs on my linux machine, and sync them with the official sync function. However, I can't see my custom packs on my windows machine, but I have found them in my extensions.json on my windows machine, Things like:

{ "identifier": { "id": "bloodycrown.myxextension" }, "version": "1.0.0", "preRelease": false, "pinned": false, "installed": true }, { "identifier": { "id": "bloodycrown.xxcxcxxxextensionxpack" }, "preRelease": false, "version": "1.0.0", "pinned": false, "installed": true }

I have no idea about the problem.

我在linux上创建了软件包,然后使用了官方的同步功能,但是在我的Windows机器上看不到同步的包,仅可以在同步的extensions.json中发现我创建的包,但是却不能正常显示出来。

image 官方的同步功能,你的意思是通过这种方式进行同步吗?同步之后windows的环境有与linux环境相同的扩展

Old-Farmer commented 1 year ago

@bloodycrownD 是的,就是这个功能

bloodycrownD commented 1 year ago

@bloodycrownD 是的,就是这个功能

vscode官方没提供同步扩展数据的api,所以没办法实现通过官方同步功能来实现扩展列表的同步。不过我更新了手动同步的功能,比一个个重新建应该能方便点。以后可能会更新通过gist实现同步的功能。

Old-Farmer commented 1 year ago

@bloodycrownD 是的,就是这个功能

vscode官方没提供同步扩展数据的api,所以没办法实现通过官方同步功能来实现扩展列表的同步。不过我更新了手动同步的功能,比一个个重新建应该能方便点。以后可能会更新通过gist实现同步的功能。

cool,这下起码方便了一些。