> ## 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.

# 历史更新

> ShiroSU NewTech 的历史版本与更新日志

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>}
		</>;
};

## 0.1.x

<Update label="0.1.4 beta" tags={['beta']}>
  <UpdateLog
    date="2026-06-11"
    changes={[
  { type: 'common', text: '常规代码维护' },
  { type: 'update', text: '优化镜像修补逻辑' }
]}
  />
</Update>

<Update label="0.1.3 beta" tags={['beta']}>
  <UpdateLog
    date="2026-06-05"
    changes={[
  { type: 'common', text: '常规代码维护' },
  { type: 'update', text: '优化救砖逻辑' }
]}
  />
</Update>

<Update label="0.1.2 beta" tags={['beta']}>
  <UpdateLog
    date="2026-06-04"
    changes={[
  { type: 'common', text: '常规代码维护' },
  { type: 'update', text: 'Shell 迁移 Rust' }
]}
  />
</Update>

<Update label="0.1.1 beta" tags={['beta']}>
  <UpdateLog date="2026-06-01" changes={[{ type: 'update', text: '正式发布完整版本' }]} />
</Update>
