> ## Documentation Index
> Fetch the complete documentation index at: https://oom-wg.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# 历史更新

> 苏柚的历史版本与更新日志

export const UpdateLog = ({date, changes = [], link}) => {
  const types = {
    common: {
      icon: 'scroll-text',
      color: 'blue'
    },
    update: {
      icon: 'circle-fading-arrow-up',
      color: 'green'
    },
    fix: {
      icon: 'bug-off',
      color: 'yellow'
    },
    broken: {
      icon: 'circle-x',
      color: 'red'
    },
    setting: {
      icon: 'bolt',
      color: 'gray'
    }
  };
  return <>
			<h4>{date}</h4>
			{changes.map((item, index) => <div key={index} className="mb-1">
					<Badge icon={types[item.type].icon} color={types[item.type].color}>
						{item.text}
					</Badge>
				</div>)}
			{link && <p>
					<a href={link} target="_blank" className="border-none">
						<Badge icon="download" color="orange" shape="pill">
							下载地址
						</Badge>
					</a>
				</p>}
		</>;
};

<Note>
  "*常规代码维护*" 包括但不限于 **依赖更新**、**改动部分代码**、**优化性能**、**优化布局**、**提升稳定性**、**修复错误** 以及
  **为后续功能铺垫**
</Note>

<Tip>查找具体版本时可通过 *筛选* 来缩小查找范围</Tip>

## 0.8.x

<Update label="0.8.0" tags={['预览版']}>
  仍在开发中...
</Update>

## 过时版本

<Update label="0.1.1 至 0.7.3" tags={['预览版', '过时', '可下载']}>
  <Warning>
    `2024-12-23` 至 `2025-2-11` 的所有版本已完全弃用，部分版本可在 [GitHub](https://github.com/OOM-WG/ShiroSU-Utils/releases)
    查看
  </Warning>

  <Card title="蓝奏云下载" icon="download" arrow href="https://ling-yi2333.lanzouw.com/b00176w8ef">
    **提取码: `mysu`**

    <>    </>

    `2025-2-11` 至 `2025-6-3` 的所有过时版本
  </Card>

  <Tip>下载时若提示会员下载，请**切换浏览器 `UA` 为电脑**</Tip>
</Update>
