Skip to content

Commit dc1dfc6

Browse files
authored
本次提交最大的升级是,menuconfig全面采用kconfiglib,对应修改的内容: (#28)
(1)升级tools/script升级到最新版本rtt env (2)python由2.7升级为3.11,并删除python27文件夹 (3)删除tools/bin中老版本menuconfig.exe、pkgs.exe等文件 (4)首次启动脚本env.bat时需联网安装env、scons、kconfiglib等软件包 (5)修改tools/bin/env-init.bat,启动时候创建或激活python venv
1 parent e2a0d8d commit dc1dfc6

File tree

7,019 files changed

+844457
-1165596
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,019 files changed

+844457
-1165596
lines changed

.gitignore

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
*.pyc
2-
*.pickle
3-
/env_log_std
4-
/env_log_err
1+
*.pyc
2+
*.pickle
3+
.venv
4+
__pycache__
5+
/env_log_std
6+
/env_log_err

env.bat

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
@echo off
22

33
if /i "%processor_architecture%"=="x86" (
4-
start .\tools\ConEmu\ConEmu.exe
4+
start %~dp0tools\ConEmu\ConEmu.exe
55
) else if /i "%processor_architecture%"=="amd64" (
66
if defined processor_architew6432 (
7-
start .\tools\ConEmu\ConEmu.exe
7+
start %~dp0tools\ConEmu\ConEmu.exe
88
) else (
9-
start .\tools\ConEmu\ConEmu64.exe
9+
start %~dp0tools\ConEmu\ConEmu64.exe
1010
)
1111
)
1212

logo.png

32.9 KB
Loading

packages/packages

Submodule packages updated 45 files

tools/ConEmu/ConEmu.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<key name="Software">
33
<key name="ConEmu">
4-
<key name=".Vanilla" modified="2024-02-14 12:44:03" build="230724">
4+
<key name=".Vanilla" modified="2024-06-17 08:58:02" build="230724">
55
<value name="StartType" type="hex" data="02"/>
66
<value name="CmdLine" type="string" data=""/>
77
<value name="StartTasksFile" type="string" data=""/>
@@ -264,11 +264,11 @@
264264
<value name="Cascaded" type="hex" data="01"/>
265265
<value name="IntegralSize" type="hex" data="00"/>
266266
<value name="WindowMode" type="dword" data="0000051f"/>
267-
<value name="ConWnd X" type="long" data="1083"/>
268-
<value name="ConWnd Y" type="long" data="336"/>
269-
<value name="LastMonitor" type="string" data="0,0,2560,1390"/>
270-
<value name="ConWnd Width" type="dword" data="0000007b"/>
271-
<value name="ConWnd Height" type="dword" data="00000022"/>
267+
<value name="ConWnd X" type="long" data="554"/>
268+
<value name="ConWnd Y" type="long" data="103"/>
269+
<value name="LastMonitor" type="string" data="0,0,1920,1030"/>
270+
<value name="ConWnd Width" type="dword" data="00000078"/>
271+
<value name="ConWnd Height" type="dword" data="00000021"/>
272272
<value name="16bit Height" type="ulong" data="0"/>
273273
<value name="StartCreateDelay" type="ulong" data="100"/>
274274
<value name="ExtendFonts" type="hex" data="00"/>

tools/Python27/DLLs/_bsddb.pyd

-1.4 MB
Binary file not shown.

tools/Python27/DLLs/_ctypes.pyd

-120 KB
Binary file not shown.

tools/Python27/DLLs/_ctypes_test.pyd

-16.5 KB
Binary file not shown.

tools/Python27/DLLs/_elementtree.pyd

-183 KB
Binary file not shown.

tools/Python27/DLLs/_hashlib.pyd

-1.58 MB
Binary file not shown.

tools/Python27/DLLs/_msi.pyd

-23 KB
Binary file not shown.
-34 KB
Binary file not shown.

tools/Python27/DLLs/_socket.pyd

-50 KB
Binary file not shown.

tools/Python27/DLLs/_sqlite3.pyd

-62.5 KB
Binary file not shown.

tools/Python27/DLLs/_ssl.pyd

-2.02 MB
Binary file not shown.

tools/Python27/DLLs/_testcapi.pyd

-52.5 KB
Binary file not shown.

tools/Python27/DLLs/_tkinter.pyd

-50.5 KB
Binary file not shown.

tools/Python27/DLLs/bz2.pyd

-90.5 KB
Binary file not shown.

tools/Python27/DLLs/py.ico

-19.3 KB
Binary file not shown.

tools/Python27/DLLs/pyc.ico

-19.3 KB
Binary file not shown.

tools/Python27/DLLs/pyexpat.pyd

-181 KB
Binary file not shown.

tools/Python27/DLLs/select.pyd

-11.5 KB
Binary file not shown.

tools/Python27/DLLs/sqlite3.dll

-905 KB
Binary file not shown.

tools/Python27/DLLs/tcl85.dll

-1.16 MB
Binary file not shown.

tools/Python27/DLLs/tclpip85.dll

-9.5 KB
Binary file not shown.

tools/Python27/DLLs/tk85.dll

-1.7 MB
Binary file not shown.

tools/Python27/DLLs/unicodedata.pyd

-676 KB
Binary file not shown.

tools/Python27/DLLs/winsound.pyd

-12 KB
Binary file not shown.

tools/Python27/Doc/python2718.chm

-6.03 MB
Binary file not shown.

tools/Python27/LICENSE.txt

-748
This file was deleted.

0 commit comments

Comments
 (0)