diff --git a/.changeset/dirty-boxes-sneeze.md b/.changeset/dirty-boxes-sneeze.md deleted file mode 100644 index b33818f..0000000 --- a/.changeset/dirty-boxes-sneeze.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"solive-docusaurus-theme-code": patch ---- - -fix boolean prop not coerce transform diff --git a/.changeset/happy-fans-complain.md b/.changeset/happy-fans-complain.md deleted file mode 100644 index a0c558c..0000000 --- a/.changeset/happy-fans-complain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"solive-docusaurus-theme-code": patch ---- - -fix plugin transform-model.ts import error lib diff --git a/.changeset/neat-tips-hammer.md b/.changeset/neat-tips-hammer.md deleted file mode 100644 index 80e4468..0000000 --- a/.changeset/neat-tips-hammer.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"solive-docusaurus-theme-code": patch -"solive-compiler-utils": patch -"solive-provider": patch -"solive-tsconfig": patch -"solive-core": patch -"solive-solc": patch ---- - -update package info diff --git a/.changeset/new-ravens-hammer.md b/.changeset/new-ravens-hammer.md deleted file mode 100644 index 19f220a..0000000 --- a/.changeset/new-ravens-hammer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"solive-core": patch ---- - -add disableValidation and monacoEditorOptions diff --git a/.changeset/rude-pears-sneeze.md b/.changeset/rude-pears-sneeze.md deleted file mode 100644 index 21be9fb..0000000 --- a/.changeset/rude-pears-sneeze.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"solive-docusaurus-theme-code": patch ---- - -fix match props error diff --git a/.changeset/strong-kids-design.md b/.changeset/strong-kids-design.md deleted file mode 100644 index dc6c29e..0000000 --- a/.changeset/strong-kids-design.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"solive-docusaurus-theme-code": patch ---- - -add simple mode diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2ac42a2 --- /dev/null +++ b/LICENSE @@ -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. diff --git a/apps/doc/docusaurus.config.js b/apps/doc/docusaurus.config.js index 2d0004e..0aa6008 100644 --- a/apps/doc/docusaurus.config.js +++ b/apps/doc/docusaurus.config.js @@ -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 @@ -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", @@ -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: [ diff --git a/apps/doc/i18n/zh/docusaurus-plugin-content-docs/current/extension/docusaurus-plugins.mdx b/apps/doc/i18n/zh/docusaurus-plugin-content-docs/current/extension/docusaurus-plugins.mdx index 59f4171..ece3ff0 100644 --- a/apps/doc/i18n/zh/docusaurus-plugin-content-docs/current/extension/docusaurus-plugins.mdx +++ b/apps/doc/i18n/zh/docusaurus-plugin-content-docs/current/extension/docusaurus-plugins.mdx @@ -10,6 +10,7 @@ hide_title: true ## 安装 1. 首先我们需要安装 `solive-docusaurus-theme-code` 插件: + ```bash npm2yarn npm install --save solive-docusaurus-theme-code ``` diff --git a/packages/compiler-utils/CHANGELOG.md b/packages/compiler-utils/CHANGELOG.md index 022c25f..4a1b437 100644 --- a/packages/compiler-utils/CHANGELOG.md +++ b/packages/compiler-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # solive-compiler-utils +## 0.0.2 + +### Patch Changes + +- 91a216e: update package info + ## 0.0.1 ### Patch Changes diff --git a/packages/compiler-utils/package.json b/packages/compiler-utils/package.json index 5f0ee36..abddebe 100644 --- a/packages/compiler-utils/package.json +++ b/packages/compiler-utils/package.json @@ -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": [ diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index df88e40..2cd0306 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -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] + - solive-compiler-utils@0.0.2 + - solive-provider@0.0.2 + - solive-solc@0.0.2 + ## 0.0.1 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 296b495..1bde39f 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -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", diff --git a/packages/docusaurus-plugin/CHANGELOG.md b/packages/docusaurus-plugin/CHANGELOG.md index 1b8a6ff..c151078 100644 --- a/packages/docusaurus-plugin/CHANGELOG.md +++ b/packages/docusaurus-plugin/CHANGELOG.md @@ -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] + - solive-core@0.0.3 + +## 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] + - solive-core@0.0.2 + +## 0.0.2 + +### Patch Changes + +- 5a8c475: fix match props error + ## 0.0.1 ### Patch Changes diff --git a/packages/docusaurus-plugin/package.json b/packages/docusaurus-plugin/package.json index 2361379..609a281 100644 --- a/packages/docusaurus-plugin/package.json +++ b/packages/docusaurus-plugin/package.json @@ -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": { diff --git a/packages/provider/CHANGELOG.md b/packages/provider/CHANGELOG.md index c855bfe..0318c15 100644 --- a/packages/provider/CHANGELOG.md +++ b/packages/provider/CHANGELOG.md @@ -1,5 +1,11 @@ # solive-provider +## 0.0.2 + +### Patch Changes + +- 91a216e: update package info + ## 0.0.1 ### Patch Changes diff --git a/packages/provider/package.json b/packages/provider/package.json index 9daf7da..bbd6f1a 100644 --- a/packages/provider/package.json +++ b/packages/provider/package.json @@ -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", diff --git a/packages/solc/CHANGELOG.md b/packages/solc/CHANGELOG.md index 7286dea..6cdd2d1 100644 --- a/packages/solc/CHANGELOG.md +++ b/packages/solc/CHANGELOG.md @@ -1,5 +1,11 @@ # solive-solc +## 0.0.2 + +### Patch Changes + +- 91a216e: update package info + ## 0.0.1 ### Patch Changes diff --git a/packages/solc/package.json b/packages/solc/package.json index 32013a1..5f6e333 100644 --- a/packages/solc/package.json +++ b/packages/solc/package.json @@ -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", diff --git a/packages/tsconfig/CHANGELOG.md b/packages/tsconfig/CHANGELOG.md index a956e54..3e25ed2 100644 --- a/packages/tsconfig/CHANGELOG.md +++ b/packages/tsconfig/CHANGELOG.md @@ -1,5 +1,11 @@ # solive-tsconfig +## 0.0.2 + +### Patch Changes + +- 91a216e: update package info + ## 0.0.1 ### Patch Changes diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json index 98cf5ae..8580e1e 100644 --- a/packages/tsconfig/package.json +++ b/packages/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "solive-tsconfig", - "version": "0.0.1", + "version": "0.0.2", "scripts": { "build": "echo 'nothing to build'" },