Skip to content

Commit

Permalink
doc x38.3
Browse files Browse the repository at this point in the history
  • Loading branch information
visualfc committed Aug 13, 2023
1 parent c62265c commit ec6b7bb
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LiteIDE X

_LiteIDE is a simple, open source, cross-platform Go IDE._

* Version: X38.2
* Version: X38.3
* Author: [visualfc](mailto:[email protected])

### Features
Expand All @@ -33,7 +33,7 @@ _LiteIDE is a simple, open source, cross-platform Go IDE._
* Reload file by internal diff way

* Golang support
* Support Go1.18~Go1.20 generics
* Support Go1.18~Go1.21 generics
* Support Go1.18 go.work
* Support Go1.11 Go modules
* Support Go1.5 Go vendor
Expand Down
10 changes: 10 additions & 0 deletions liteidex/deploy/welcome/en/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
## LiteIDE X Version
LiteIDE is a simple, open source, cross-platform Go IDE.

### 2023.08.14 Ver X38.3
* LiteIDE
* support Go1.21
* LiteEnv
* support Go1.21 `go env`
* LiteFind
* support enter on directory searches
* Terminal
* fix source for not bash

### 2023.02.14 Ver X38.2
* LiteIDE
* fix and update gotools & gocode
Expand Down
2 changes: 1 addition & 1 deletion liteidex/deploy/welcome/en/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LiteIDE X

_LiteIDE is a simple, open source, cross-platform Go IDE._

* Version: X38.2
* Version: X38.3
* Author: [visualfc](mailto:[email protected])


Expand Down
10 changes: 10 additions & 0 deletions liteidex/deploy/welcome/zh_CN/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
## LiteIDE X Version
LiteIDE is a simple, open source, cross-platform Go IDE.

### 2023.08.14 Ver X38.3
* LiteIDE
* support Go1.21
* LiteEnv
* support Go1.21 `go env`
* LiteFind
* support enter on directory searches
* Terminal
* fix source for not bash

### 2023.02.14 Ver X38.2
* LiteIDE
* fix and update gotools & gocode
Expand Down
4 changes: 2 additions & 2 deletions liteidex/deploy/welcome/zh_CN/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LiteIDE X

_LiteIDE 是一个轻量级的开源跨平台 Go语言 IDE._

* 版本: X38.2
* 版本: X38.3
* 作者: [七叶 (visualfc)](mailto:[email protected])

### 功能
Expand All @@ -30,7 +30,7 @@ _LiteIDE 是一个轻量级的开源跨平台 Go语言 IDE._
* 重读文件使用代码差异方式

* Go 语言支持
* 支持 Go1.18~Go1.20 泛型
* 支持 Go1.18~Go1.21 泛型
* 支持 Go1.11 Go modules
* 支持 Go1.5 Go vendor
* 支持 Go1 GOPATH
Expand Down
3 changes: 1 addition & 2 deletions liteidex/src/liteapp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
<key>CFBundleVersion</key>
<string>X38</string>
<key>CFBundleShortVersionString</key>
<string>38.2</string>

<string>38.3</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
Expand Down
5 changes: 2 additions & 3 deletions liteidex/src/liteide/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>NSHighResolutionCapable</key>
<string>True</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2011-2022 visualfc. All rights reserved.</string>
<string>Copyright © 2011-2023 visualfc. All rights reserved.</string>
<key>CFBundleIconFile</key>
<string>liteide.icns</string>
<key>CFBundlePackageType</key>
Expand All @@ -21,8 +21,7 @@
<key>CFBundleVersion</key>
<string>X38</string>
<key>CFBundleShortVersionString</key>
<string>38.2</string>

<string>38.3</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
Expand Down
2 changes: 1 addition & 1 deletion liteidex/src/plugins/liteenv/liteenvplugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class PluginFactory : public LiteApi::PluginFactoryT<LiteEnvPlugin>
m_info->setId("plugin/LiteEnv");
m_info->setName("LiteEnv");
m_info->setAuthor("visualfc");
m_info->setVer("X38.1");
m_info->setVer("X38.3");
m_info->setInfo("Environment Manager");
m_info->setMustLoad(true);
}
Expand Down
2 changes: 1 addition & 1 deletion liteidex/src/plugins/litefind/litefindplugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class PluginFactory : public LiteApi::PluginFactoryT<LiteFindPlugin>
m_info->setId("plugin/LiteFind");
m_info->setName("LiteFind");
m_info->setAuthor("visualfc");
m_info->setVer("X37.4");
m_info->setVer("X38.3");
m_info->setInfo("Core Find/Replace");
m_info->setMustLoad(true);
}
Expand Down
2 changes: 1 addition & 1 deletion liteidex/src/plugins/terminal/terminalplugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class PluginFactory : public LiteApi::PluginFactoryT<TerminalPlugin>
public:
PluginFactory() {
m_info->setId("plugin/Terminal");
m_info->setVer("X38.1");
m_info->setVer("X38.3");
m_info->setName("Terminal");
m_info->setAuthor("visualfc");
m_info->setInfo("Terminal");
Expand Down

0 comments on commit ec6b7bb

Please sign in to comment.