Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
chongqiangchen authored May 16, 2023
2 parents a612638 + c41b0d3 commit 480b9f0
Show file tree
Hide file tree
Showing 21 changed files with 104 additions and 48 deletions.
5 changes: 0 additions & 5 deletions .changeset/dirty-boxes-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-fans-complain.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/neat-tips-hammer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/new-ravens-hammer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-pears-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strong-kids-design.md

This file was deleted.

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 WTF.Academy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
14 changes: 7 additions & 7 deletions apps/doc/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const SECTIONS = [

/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Solive",
tagline: "Solive is a platform for creating and managing Solidity smart contracts with a React component that works on mobile browsers and can be embedded into websites.",
title: "SoLive",
tagline: "SoLive is a platform for creating and managing Solidity smart contracts with a React component that works on mobile browsers and can be embedded into websites.",
favicon: "img/favicon.ico",

// Set the production url of your site here
Expand All @@ -43,8 +43,8 @@ const config = {

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: "Solive", // Usually your GitHub org/user name.
projectName: "Solive", // Usually your repo name.
organizationName: "SoLive", // Usually your GitHub org/user name.
projectName: "SoLive", // Usually your repo name.

onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
Expand Down Expand Up @@ -95,12 +95,12 @@ const config = {
defaultMode: 'dark',
disableSwitch: false,
respectPrefersColorScheme: false,
},
},
image: "img/docusaurus-social-card.jpg",
navbar: {
title: "Solive",
title: "SoLive",
logo: {
alt: "Solive",
alt: "SoLive",
src: "img/logo_300x300.png",
},
items: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ hide_title: true
## 安装

1. 首先我们需要安装 `solive-docusaurus-theme-code` 插件:

```bash npm2yarn
npm install --save solive-docusaurus-theme-code
```
Expand Down
6 changes: 6 additions & 0 deletions packages/compiler-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# solive-compiler-utils

## 0.0.2

### Patch Changes

- 91a216e: update package info

## 0.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solive-compiler-utils",
"version": "0.0.1",
"version": "0.0.2",
"main": "dist/index.js",
"typings": "dist/src/index.d.ts",
"files": [
Expand Down
16 changes: 16 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# solive-core

## 0.0.3

### Patch Changes

- 74ef4b0: add disableValidation and monacoEditorOptions

## 0.0.2

### Patch Changes

- 91a216e: update package info
- Updated dependencies [91a216e]
- [email protected]
- [email protected]
- [email protected]

## 0.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solive-core",
"version": "0.0.1",
"version": "0.0.3",
"description": "Solidity Monaco Editor Core Library",
"main": "dist/index.js",
"module": "dist/index.es.js",
Expand Down
29 changes: 29 additions & 0 deletions packages/docusaurus-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# solive-docusaurus-theme-code

## 0.0.5

### Patch Changes

- 74ef4b0: fix boolean prop not coerce transform
- 74ef4b0: add simple mode
- Updated dependencies [74ef4b0]
- [email protected]

## 0.0.4

### Patch Changes

- ebb8ef5: fix plugin transform-model.ts import error lib

## 0.0.3

### Patch Changes

- 91a216e: update package info
- Updated dependencies [91a216e]
- [email protected]

## 0.0.2

### Patch Changes

- 5a8c475: fix match props error

## 0.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/docusaurus-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solive-docusaurus-theme-code",
"version": "0.0.1",
"version": "0.0.5",
"description": "A Docusaurus v2 plugin that supports solidity code live.",
"main": "dist/index.js",
"exports": {
Expand Down
6 changes: 6 additions & 0 deletions packages/provider/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# solive-provider

## 0.0.2

### Patch Changes

- 91a216e: update package info

## 0.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solive-provider",
"version": "0.0.1",
"version": "0.0.2",
"description": "Ethereum VM Provider",
"module": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/solc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# solive-solc

## 0.0.2

### Patch Changes

- 91a216e: update package info

## 0.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/solc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solive-solc",
"version": "0.0.1",
"version": "0.0.2",
"description": "Solidity Contract Compiler Tool - Browser Supported",
"module": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/tsconfig/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# solive-tsconfig

## 0.0.2

### Patch Changes

- 91a216e: update package info

## 0.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solive-tsconfig",
"version": "0.0.1",
"version": "0.0.2",
"scripts": {
"build": "echo 'nothing to build'"
},
Expand Down

0 comments on commit 480b9f0

Please sign in to comment.