Skip to content

Commit

Permalink
release: 1.0.0 (#835)
Browse files Browse the repository at this point in the history
* release: 1.0

* refactor: sync release/1.0

* fix: only exit when prepublishOnly (#836)

* feat: add recommend extensions (#837)

* feat: add recommend extensions

* docs: typo

* docs: remove

* fix: fail to pase ts code (#839)

* fix: make sure that the start & end fields exist (#838)

* fix: make sure that the start & end fields exist

* docs: changelog

* docs: 编程 => 编码

* refactor: update icons (#846)

* refactor: icons

* docs: icon

* docs: update links

Co-authored-by: Hengchang Lu <44047106+luhc228@users.noreply.github.com>
  • Loading branch information
alvinhui and luhc228 authored May 31, 2021
1 parent a0e7486 commit b18a447
Show file tree
Hide file tree
Showing 913 changed files with 22,241 additions and 7,607 deletions.
22 changes: 11 additions & 11 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing Guide

Hi! I’m really excited that you are interested in contributing to Iceworks. Before submitting your contribution though, please make sure to take a moment and read through the following guidelines.
Hi! I’m really excited that you are interested in contributing to AppWorks. Before submitting your contribution though, please make sure to take a moment and read through the following guidelines.

## Develop Guidelines

Expand All @@ -21,11 +21,11 @@ Hi! I’m really excited that you are interested in contributing to Iceworks. Be
Clone repo and initialize the setup environment:

```bash
$ git clone git@github.com:ice-lab/iceworks.git
$ cd iceworks && npm run setup # This will take about 20 minutes
$ git clone git@github.com:appworks-lab/pack.git
$ cd appworks && npm run setup # This will take about 20 minutes

# add dep to some package
$ yarn workspace iceworks add <npmName>
$ yarn workspace appworks add <npmName>

# add dep to project
$ yarn add <npmName> -D -W
Expand All @@ -41,7 +41,7 @@ $ npm run publish:package # or npm run publish-beta:package

### Develop Extensions

You can add the VS Code Extension of Iceworks to the directory `extension`.
You can add the VS Code Extension of AppWorks to the directory `extension`.

#### Create a new Extension

Expand All @@ -64,9 +64,9 @@ Use the VS Code to develop the extension project.
Open a new window and set `/extensions/xxx` as workspace, enable extension debugging through `F5`:

```bash
# Take iceworks-app for example
# Take application-manager for example

$ code ./extensions/iceworks-app
$ code ./extensions/application-manager
```

> Please see [VS Code Extension](https://code.visualstudio.com/api) for more details.
Expand All @@ -77,12 +77,12 @@ $ code ./extensions/iceworks-app
# Install CLI package
$ npm install -g vsce

$ cd ./extensions/iceworks-app
$ cd ./extensions/application-manager
$ vsce package
# iceworks-app.vsix generated

# Test extension
$ code --install-extension ./extensions/iceworks-app/iceworks-app-x.x.x.vsix
$ code --install-extension ./extensions/application-manager/iceworks-app-x.x.x.vsix

$ vsce publish -p YOUR_PERSONAL_ACCESS_TOKEN
# <publisherID>.iceworks-app published to VS Code Marketplace
Expand All @@ -94,7 +94,7 @@ $ vsce publish -p YOUR_PERSONAL_ACCESS_TOKEN

You can download the beta version of extensions from the following link, only the extensions to be published will be in the package:

https://iceworks.oss-cn-hangzhou.aliyuncs.com/vscode-extensions/beta/Iceworks.zip
https://iceworks.oss-cn-hangzhou.aliyuncs.com/vscode-extensions/beta/AppWorks.zip
- When your PR has been merged into `master` branch, changed packages and VS Code Extensions will be auto published.

#### Personal Access Token
Expand All @@ -114,7 +114,7 @@ Get a Personal Access Token:

Set Personal Access Token for Github Actions:

1. Visit [Actions secrets](https://github.com/ice-lab/iceworks/settings/secrets/actions)
1. Visit [Actions secrets](https://github.com/appworks-lab/pack/settings/secrets/actions)
2. Update `VSCE_TOKEN`:
![](https://img.alicdn.com/imgextra/i2/O1CN01NpeNCf2558rTm9812_!!6000000007474-2-tps-2880-1754.png_790x10000.jpg)

Expand Down
6 changes: 3 additions & 3 deletions .github/DOCUMENT_SPECIFIC.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[插件版本徽标]: https://vsmarketplacebadge.apphb.com/version/iceworks-team.iceworks.svg
[插件下载徽标]: https://vsmarketplacebadge.apphb.com/installs-short/iceworks-team.iceworks.svg

# Iceworks XXX 插件
# AppWorks XXX 插件

概括介绍该插件。

Expand Down Expand Up @@ -42,11 +42,11 @@

## 更多

访问 [Iceworks 套件](https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks)获取更多功能。
访问 [AppWorks 套件](https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks)获取更多功能。

## License

[MIT](https://github.com/ice-lab/iceworks/blob/master/LICENSE)
[MIT](https://github.com/appworks-lab/pack/blob/master/LICENSE)
```

- When there is only one function, there is no need for a three-level title
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: "🚀 Feature Request"
about: Iceworks 提一个需求
about: AppWorks 提一个需求
labels: 'enhancement'

---
Expand Down
14 changes: 7 additions & 7 deletions .github/O2_SPECIFIC.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

O2 is a Ali internal editor, if you are a community developer, **PLEASE IGNORE** this document.

Iceworks converts VS Code Pack to O2 Pack, this document describes the develop, debug, and publish of the O2 Pack.
AppWorks converts VS Code Pack to O2 Pack, this document describes the develop, debug, and publish of the O2 Pack.

## General O2 Pack

General O2 pack by following commands:

```bash
$ git clone git@github.com:ice-lab/iceworks.git
$ cd iceworks/
$ git clone git@github.com:appworks-lab/pack.git
$ cd appworks/
$ npm install
$ npm run o2:general
```
Expand All @@ -21,7 +21,7 @@ $ npm run o2:general

```bash
$ tnpm install @ali/kaitian-cli -g
$ cd extensions/iceworks
$ cd extensions/appworks
$ tnpm install
$ npm run compile
$ kaitian dev
Expand All @@ -30,14 +30,14 @@ $ kaitian dev
## Publish O2 Pack

```bash
# iceworks.zip generated
# appworks.zip generated
$ npm run o2:package

# test
$ kaitian install extensions/iceworks/iceworks-team-iceworks-x.x.x.zip # install Pack to o2
$ kaitian install extensions/appworks/iceworks-team-iceworks-x.x.x.zip # install Pack to o2
$ o2 # open o2 by CLI

# upload iceworks.zip to OSS
# upload appworks.zip to OSS
$ ACCESS_KEY_ID=xxx ACCESS_KEY_SECRET=xxx npm run o2:upload

# O2.icework-kit published to Ali Marketplace
Expand Down
45 changes: 18 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
English | [简体中文](./README.zh-CN.md)

<p align="center">
<a href="https://ice.work">
   <img alt="Iceworks" src="https://img.alicdn.com/tfs/TB1kDZlXBBh1e4jSZFhXXcC9VXa-256-256.png" width="96">
<a href="https://appworks.site">
   <img alt="AppWorks" src="https://img.alicdn.com/imgextra/i4/O1CN01jLRijt1SPxrlCRSEJ_!!6000000002240-2-tps-258-258.png" width="96">
</a>
</p>

<h1 align="center">Iceworks</h1>
<h1 align="center">AppWorks</h1>

<p align="center">Visual Intelligent Development Pack</p>
<p align="center">Application Development Pack</p>

<p align="center">
<a href="https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks"><img src="https://vsmarketplacebadge.apphb.com/version/iceworks-team.iceworks.svg?logo=visual-studio-code" /></a>
<a href="https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks"><img src="https://vsmarketplacebadge.apphb.com/installs-short/iceworks-team.iceworks.svg" /></a>
<a href="https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks"><img src="https://vsmarketplacebadge.apphb.com/downloads-short/iceworks-team.iceworks.svg" /></a>
<a href="https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks&ssr=false#review-details"><img src="https://vsmarketplacebadge.apphb.com/rating-star/iceworks-team.iceworks.svg" /></a>
<a href="https://github.com/ice-lab/iceworks/actions"><img src="https://github.com/ice-lab/iceworks/workflows/ci/badge.svg" /></a>
<a href="https://codecov.io/gh/ice-lab/iceworks"><img src="https://img.shields.io/codecov/c/github/ice-lab/iceworks/master.svg" alt="Test Coverage" /></a>
<a href="https://github.com/ice-lab/iceworks/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome" /></a>
<a href="https://github.com/appworks-lab/pack/actions"><img src="https://github.com/appworks-lab/pack/workflows/ci/badge.svg" /></a>
<a href="https://codecov.io/gh/appworks-lab/pack"><img src="https://img.shields.io/codecov/c/github/appworks-lab/pack/master.svg" alt="Test Coverage" /></a>
<a href="https://github.com/appworks-lab/pack/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome" /></a>
<a href="/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="GitHub license" /></a>
</p>

## Quick Start

Use Iceworks to develop Universal Application quickly:
Use AppWorks to develop Universal Application quickly:

- Click "Shop Icon" on Activity Bar of VS Code
- Enter "iceworks" in the input box to search
- Click the Install button on the first iceworks option
- After installation is successful, click the "Iceworks icon" on Activity Bar of VS Code to start
- Enter "appworks" in the input box to search
- Click the Install button on the first appworks option
- After installation is successful, click the "AppWorks icon" on Activity Bar of VS Code to start

![demo](https://img.alicdn.com/imgextra/i2/O1CN018zKsMr230RYUOdLja_!!6000000007193-2-tps-2208-768.png)

[See the Pack for more details](extensions/iceworks/README.md).
[See the Pack for more details](extensions/appworks/README.md).

## Contributors

Feel free to report any questions as an [issue](https://github.com/ice-lab/iceworks/issues/new), we'd love to have your helping hand on Iceworks.
Feel free to report any questions as an [issue](https://github.com/appworks-lab/pack/issues/new), we'd love to have your helping hand on AppWorks.

If you're interested in Iceworks, see [CONTRIBUTING.md](./.github/CONTRIBUTING.md) for more information to learn how to get started.
If you're interested in AppWorks, see [CONTRIBUTING.md](./.github/CONTRIBUTING.md) for more information to learn how to get started.

## ICE Ecosystem
## Recommends

| Project | Version | Docs | Description |
|----------------|------------------|--------------|-----------|
Expand All @@ -64,19 +64,10 @@ If you're interested in Iceworks, see [CONTRIBUTING.md](./.github/CONTRIBUTING.m
[icestore-package]: https://npmjs.com/package/@ice/store
[formily-package]: https://npmjs.com/package/@formily/react

[icejs-docs]: https://ice.work/docs/guide/intro
[icestark-docs]: https://ice.work/docs/icestark/guide/about
[icejs-docs]: https://ice.work
[icestark-docs]: https://micro-frontends.ice.work
[icestore-docs]: https://github.com/ice-lab/icestore#icestore
[formily-docs]: https://formilyjs.org/

## Community

| DingTalk community | GitHub issues | Gitter |
|-------------------------------------|--------------|---------|
| <a href="https://ice.alicdn.com/assets/images/qrcode.png"><img src="https://ice.alicdn.com/assets/images/qrcode.png" width="150" /></a> | [issues] | [gitter]|

[issues]: https://github.com/alibaba/ice/issues
[gitter]: https://gitter.im/alibaba/ice
[formily-docs]: https://formilyjs.org

## License

Expand Down
41 changes: 16 additions & 25 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
简体中文 | [English](./README.md)

<p align="center">
<a href="https://ice.work">
   <img alt="Iceworks" src="https://img.alicdn.com/tfs/TB1kDZlXBBh1e4jSZFhXXcC9VXa-256-256.png" width="96">
<a href="https://appworks.site">
   <img alt="AppWorks" src="https://img.alicdn.com/imgextra/i4/O1CN01jLRijt1SPxrlCRSEJ_!!6000000002240-2-tps-258-258.png" width="96">
</a>
</p>

<h1 align="center">Iceworks</h1>
<h1 align="center">AppWorks</h1>

<p align="center">可视化智能开发套件</p>
<p align="center">多端研发套件</p>

<p align="center">
<a href="https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks"><img src="https://vsmarketplacebadge.apphb.com/version/iceworks-team.iceworks.svg?logo=visual-studio-code" /></a>
<a href="https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks"><img src="https://vsmarketplacebadge.apphb.com/installs-short/iceworks-team.iceworks.svg" /></a>
<a href="https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks"><img src="https://vsmarketplacebadge.apphb.com/downloads-short/iceworks-team.iceworks.svg" /></a>
<a href="https://marketplace.visualstudio.com/items?itemName=iceworks-team.iceworks&ssr=false#review-details"><img src="https://vsmarketplacebadge.apphb.com/rating-star/iceworks-team.iceworks.svg" /></a>
<a href="https://github.com/ice-lab/iceworks/actions"><img src="https://github.com/ice-lab/iceworks/workflows/ci/badge.svg" /></a>
<a href="https://codecov.io/gh/ice-lab/iceworks"><img src="https://img.shields.io/codecov/c/github/ice-lab/iceworks/master.svg" alt="Test Coverage" /></a>
<a href="https://github.com/ice-lab/iceworks/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome" /></a>
<a href="https://github.com/appworks-lab/pack/actions"><img src="https://github.com/appworks-lab/pack/workflows/ci/badge.svg" /></a>
<a href="https://codecov.io/gh/appworks-lab/pack"><img src="https://img.shields.io/codecov/c/github/appworks-lab/pack/master.svg" alt="Test Coverage" /></a>
<a href="https://github.com/appworks-lab/pack/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome" /></a>
<a href="/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="GitHub license" /></a>
</p>

## 快速开始

- 点击 VS Code 活动栏上的「插件商店图标」;
- 在输入框中输入「iceworks」进行搜索;
- 点击第一个「iceworks」选项上的「安装」按钮;
- 安装成功后,点击 VS Code 界面左侧活动栏上的「Iceworks 图标」,开始使用。
- 在输入框中输入「appworks」进行搜索;
- 点击第一个「appworks」选项上的「安装」按钮;
- 安装成功后,点击 VS Code 界面左侧活动栏上的「AppWorks 图标」,开始使用。

![示例](https://img.alicdn.com/imgextra/i1/O1CN0134fC4y1TwJQoZvsOr_!!6000000002446-2-tps-2208-768.png)

[查看套件文档](extensions/iceworks/README.md),了解更多功能。
[查看套件文档](extensions/appworks/README.md),了解更多功能。

## 参与贡献

欢迎通过 [issue](https://github.com/ice-lab/iceworks/issues/new) 反馈问题。
欢迎通过 [issue](https://github.com/appworks-lab/pack/issues/new) 反馈问题。

如果对 `Iceworks` 感兴趣,请参考 [CONTRIBUTING.md](./.github/CONTRIBUTING.md) 学习如何贡献代码。
如果对 `AppWorks` 感兴趣,请参考 [CONTRIBUTING.md](./.github/CONTRIBUTING.md) 学习如何贡献代码。

## ICE 生态
## 相关推荐

| Project | Version | Docs | Description |
|----------------|------------------|--------------|-----------|
Expand All @@ -62,20 +62,11 @@
[icestore-package]: https://npmjs.com/package/@ice/store
[formily-package]: https://npmjs.com/package/@formily/react

[icejs-docs]: https://ice.work/docs/guide/intro
[icestark-docs]: https://ice.work/docs/icestark/guide/about
[icejs-docs]: https://ice.work
[icestark-docs]: https://micro-frontends.ice.work
[icestore-docs]: https://github.com/ice-lab/icestore#icestore
[formily-docs]: https://formilyjs.org/

## 社区

| 钉钉群 | GitHub issues | Gitter |
|-------------------------------------|--------------|---------|
| <a href="https://ice.alicdn.com/assets/images/qrcode.png"><img src="https://ice.alicdn.com/assets/images/qrcode.png" width="150" /></a> | [issues] | [gitter]|

[issues]: https://github.com/alibaba/ice/issues
[gitter]: https://gitter.im/alibaba/ice

## License

[MIT](LICENSE)
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.0.0

Release 1.0.0

## 0.8.3
- feat: support preview in mobile device

Expand Down Expand Up @@ -105,7 +109,7 @@

## 0.5.0

- feat: Add Iceworks Doctor
- feat: Add AppWorks Doctor
- feat: Add welcome page

## 0.4.10
Expand Down Expand Up @@ -137,7 +141,7 @@

## 0.4.4

- feat: add Iceworks debug.
- feat: add AppWorks debug.

## 0.4.3

Expand Down Expand Up @@ -173,7 +177,7 @@

## 0.1.34

- feat: add Iceworks status bar entry
- feat: add AppWorks status bar entry
- feat: start the iceworks-project-creator automatically
- docs: Project => Application

Expand All @@ -187,7 +191,7 @@

## 0.1.22

Spelling of unified brand name: Iceworks.
Spelling of unified brand name: AppWorks.

## 0.1.0

Expand Down
Loading

0 comments on commit b18a447

Please sign in to comment.