fix: 修正用户名大小写不一致问题

统一将代码中的用户名"LeonMMcoset"修改为"Leonmmcoset",包括LICENSE文件、安装脚本和更新脚本中的引用,以及unbios.lua中的注释。确保所有引用保持一致。
This commit is contained in:
2025-08-31 17:30:12 +08:00
parent 7cf2e6f10f
commit 2d0a469953
4 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2025 LeonMMcoset Copyright (c) 2025 Leonmmcoset
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@@ -87,7 +87,7 @@ end
bullet("Getting repository tree...") bullet("Getting repository tree...")
local repodata = dl("https://api.github.com/repos/LeonMMcoset/LeonOS/git/trees/primary?recursive=1") local repodata = dl("https://api.github.com/repos/Leonmmcoset/LeonOS/git/trees/primary?recursive=1")
repodata = json.decode(repodata) repodata = json.decode(repodata)

View File

@@ -1,5 +1,5 @@
-- UnBIOS by JackMacWindows -- UnBIOS by JackMacWindows
-- Modified by LeonMMcoset to work with LeonOS -- Modified by Leonmmcoset to work with LeonOS
-- This will undo most of the changes/additions made in the BIOS, but some things may remain wrapped if `debug` is unavailable -- This will undo most of the changes/additions made in the BIOS, but some things may remain wrapped if `debug` is unavailable
-- To use, just place a `bios.lua` in the root of the drive, and run this program -- To use, just place a `bios.lua` in the root of the drive, and run this program
-- Here's a list of things that are irreversibly changed: -- Here's a list of things that are irreversibly changed:

View File

@@ -128,7 +128,7 @@ header()
write("Getting repository tree...") write("Getting repository tree...")
local repodata = json.decode(dl("https://api.github.com/repos/LeonMMcoset/LeonOS/git/trees/primary?recursive=1")) local repodata = json.decode(dl("https://api.github.com/repos/Leonmmcoset/LeonOS/git/trees/primary?recursive=1"))
write("Filtering files...") write("Filtering files...")