Skip to content

Commit 4547303

Browse files
committed
update version
1 parent d53b688 commit 4547303

File tree

9 files changed

+183
-109
lines changed

9 files changed

+183
-109
lines changed

_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="/assets/img/logo.svg" width="16%" />
22

3-
# xmake <small>2.9.2</small>
3+
# xmake <small>2.9.3</small>
44

55
> A cross-platform build utility based on Lua
66

about/changelog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## v2.9.3
4+
5+
### New features
6+
7+
* [#4637](https://github.com/xmake-io/xmake/issues/4637): Add mix generator for xpack
8+
* [#5107](https://github.com/xmake-io/xmake/issues/5107): Add deb generator for xpack
9+
* [#5148](https://github.com/xmake-io/xmake/issues/5148): Add on_source in package
10+
11+
### Changes
12+
13+
* [#5156](https://github.com/xmake-io/xmake/issues/5156): Improve to install cargo packages for rust
14+
15+
### Bugs fixed
16+
17+
* [#5176](https://github.com/xmake-io/xmake/pull/5176): Fix VS toolset v144
18+
319
## v2.9.2
420

521
### New features

mirror/about/changelog.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,21 @@ <h4>This is a mirror page, please see the original page: </h4><a href="https://x
9393
}
9494
</style>
9595
<h1 id="changelog">Changelog</h1>
96+
<h2 id="v293">v2.9.3</h2>
97+
<h3 id="newfeatures">New features</h3>
98+
<ul>
99+
<li><a href="https://github.com/xmake-io/xmake/issues/4637">#4637</a>: Add mix generator for xpack</li>
100+
<li><a href="https://github.com/xmake-io/xmake/issues/5107">#5107</a>: Add deb generator for xpack</li>
101+
<li><a href="https://github.com/xmake-io/xmake/issues/5148">#5148</a>: Add on_source in package</li>
102+
</ul>
103+
<h3 id="changes">Changes</h3>
104+
<ul>
105+
<li><a href="https://github.com/xmake-io/xmake/issues/5156">#5156</a>: Improve to install cargo packages for rust</li>
106+
</ul>
107+
<h3 id="bugsfixed">Bugs fixed</h3>
108+
<ul>
109+
<li><a href="https://github.com/xmake-io/xmake/pull/5176">#5176</a>: Fix VS toolset v144</li>
110+
</ul>
96111
<h2 id="v292">v2.9.2</h2>
97112
<h3 id="newfeatures">New features</h3>
98113
<ul>

mirror/manual/option_instance.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ <h4>This is a mirror page, please see the original page: </h4><a href="https://x
9393
}
9494
</style>
9595
<p>This page describes the interface for <code>option</code> of functions like <code>on_load()</code>, <code>on_check()</code> or <code>after_check()</code> of the <a href="manual/configuration_option.md">Configuration option</a></p>
96+
<h4 id="optionvalue">option:value</h4>
97+
<ul>
98+
<li>Get the value of the option</li>
99+
</ul>
96100
<h4 id="optionname">option:name</h4>
97101
<ul>
98102
<li>Get the name of the option</li>
@@ -114,6 +118,8 @@ <h4 id="optionset">option:set</h4>
114118
option:set("links", "sdl2")
115119
-- set the defined macros
116120
option:set("defines", "SDL_MAIN_HANDLED")
121+
-- set configvar
122+
option:set("configvar", option:name(), option:value(), {quote = false})
117123
</code></pre>
118124
<h4 id="optionadd">option:add</h4>
119125
<ul>

mirror/zh-cn/about/changelog.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,22 @@ <h4>This is a mirror page, please see the original page: </h4><a href="https://x
9292
line-height: 1;
9393
}
9494
</style>
95-
<h2 id="v292">v2.9.2</h2>
95+
<h2 id="v293">v2.9.3</h2>
96+
<h3 id="">新特性</h3>
97+
<ul>
98+
<li><a href="https://github.com/xmake-io/xmake/issues/4637">#4637</a>: 为 xpack 添加 mix 支持</li>
99+
<li><a href="https://github.com/xmake-io/xmake/issues/5107">#5107</a>: 为 xpack 添加 deb 支持</li>
100+
<li><a href="https://github.com/xmake-io/xmake/issues/5148">#5148</a>: 为包添加 on_source 配置域</li>
101+
</ul>
102+
<h3 id="">改进</h3>
103+
<ul>
104+
<li><a href="https://github.com/xmake-io/xmake/issues/5156">#5156</a>: 改进安装 cargo 包</li>
105+
</ul>
106+
<h3 id="">问题修复</h3>
107+
<ul>
108+
<li><a href="https://github.com/xmake-io/xmake/pull/5176">#5176</a>: 修复 VS toolset v144 支持</li>
109+
</ul>
110+
<h2 id="v292">v2.9.2</h2>
96111
<h3 id="">新特性</h3>
97112
<ul>
98113
<li><a href="https://github.com/xmake-io/xmake/pull/5005">#5005</a>: 显示所有 API</li>

mirror/zh-cn/manual/option_instance.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ <h4>This is a mirror page, please see the original page: </h4><a href="https://x
9393
}
9494
</style>
9595
<p>此页面描述了 <a href="zh-cn/manual/configuration_option.md">配置选项</a><code>on_load()</code><code>on_check()</code><code>after_check()</code> 等函数的 <code>option</code> 接口</p>
96+
<h4 id="optionvalue">option:value</h4>
97+
<ul>
98+
<li>获取选项的值</li>
99+
</ul>
96100
<h4 id="optionname">option:name</h4>
97101
<ul>
98102
<li>获取选项的名字</li>
@@ -115,6 +119,8 @@ <h4 id="optionset">option:set</h4>
115119
option:set("links", "sdl2")
116120
-- set the defined macros
117121
option:set("defines", "SDL_MAIN_HANDLED")
122+
-- set configvar
123+
option:set("configvar", option:name(), option:value(), {quote = false})
118124
</code></pre>
119125
<h4 id="optionadd">option:add</h4>
120126
<ul>

0 commit comments

Comments
 (0)