Skip to content

Commit

Permalink
fix: 更新3.3.1. 修复mac arm架构下对pdebug的引用, 修复升级提示
Browse files Browse the repository at this point in the history
  • Loading branch information
TENCENT\stuartwang committed Sep 25, 2023
1 parent 3e048ab commit e3ac3d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Debugger/LuaPanda.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ local customGetSocketInstance = nil; --支持用户实现一个自定义调
local consoleLogLevel = 2; --打印在控制台(print)的日志等级 0 : all/ 1: info/ 2: error.
--用户设置项END

local debuggerVer = "3.3.0"; --debugger版本号
local debuggerVer = "3.3.1"; --debugger版本号
LuaPanda = {};
local this = LuaPanda;
local tools = {}; --引用的开源工具,包括json解析和table展开工具等
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "luapanda",
"displayName": "LuaPanda",
"version": "3.3.0",
"version": "3.3.1",
"publisher": "stuartwang",
"description": "lua debug and code tools for VS Code.",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/debug/updateManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class UpdateManager{
let updateTipSetting = VisualSetting.getLaunchjson(rootFolder , "updateTips");
if ( intDVer < intAVer && updateTipSetting !== false){
// if ( intDVer < intAVer){
vscode.window.showInformationMessage('LuaPanda VSCode 插件已升级 3.2.0 版本, 建议同时升级 LuaPanda.lua 文件。首次开始调试前请重建一下 launch.json 文件, 避免产生兼容问题。launch.json 配置项目参考 https://github.com/Tencent/LuaPanda/blob/master/Docs/Manual/launch-json-introduction.md', "好的");
vscode.window.showInformationMessage('LuaPanda VSCode 插件已升级 ' + Tools.adapterVersion + ' 版本, 建议同时升级 LuaPanda.lua 文件。首次开始调试前请重建一下 launch.json 文件, 避免产生兼容问题。launch.json 配置项目参考 https://github.com/Tencent/LuaPanda/blob/master/Docs/Manual/launch-json-introduction.md', "好的");

vscode.window.showInformationMessage('当前工程中的 LuaPanda.lua 文件版本较低,是否自动替换为最新版本?', 'Yes', 'No', 'Never').then(value => {
if(value === "Yes"){
Expand Down

0 comments on commit e3ac3d3

Please sign in to comment.