Skip to content

Commit

Permalink
打包0.8.0-fix.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wanglin2 committed Oct 18, 2023
1 parent 1ea06e2 commit 6ba10bc
Show file tree
Hide file tree
Showing 14 changed files with 70 additions and 57 deletions.
4 changes: 2 additions & 2 deletions dist/js/chunk-1430959b.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/chunk-2d0f026c.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/chunk-2d208ffa.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1"><link rel="icon" href="dist/logo.ico"><title>思绪思维导图</title><script>// 自定义静态资源的路径
window.externalPublicPath = './dist/'
// 接管应用
window.takeOverApp = false</script><link href="dist/css/chunk-vendors.css?d19203eaeb8de9913fb3" rel="stylesheet"><link href="dist/css/app.css?d19203eaeb8de9913fb3" rel="stylesheet"></head><body><noscript><strong>We're sorry but thoughts doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script>const getDataFromBackend = () => {
window.takeOverApp = false</script><link href="dist/css/chunk-vendors.css?8082e15354ee539c1308" rel="stylesheet"><link href="dist/css/app.css?8082e15354ee539c1308" rel="stylesheet"></head><body><noscript><strong>We're sorry but thoughts doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script>const getDataFromBackend = () => {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve({
Expand Down Expand Up @@ -66,4 +66,4 @@
// 可以通过window.$bus.$on()来监听应用的一些事件
// 实例化页面
window.initApp()
}</script><script src="dist/js/chunk-vendors.js?d19203eaeb8de9913fb3"></script><script src="dist/js/app.js?d19203eaeb8de9913fb3"></script></body></html>
}</script><script src="dist/js/chunk-vendors.js?8082e15354ee539c1308"></script><script src="dist/js/app.js?8082e15354ee539c1308"></script></body></html>
2 changes: 1 addition & 1 deletion simple-mind-map/dist/simpleMindMap.common.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions simple-mind-map/dist/simpleMindMap.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -51820,6 +51820,7 @@ var Render = class {
Array.isArray(smmData) ? smmData : [smmData]
);
} else {
text4 = htmlEscape(text4);
const textArr = text4.split(/\r?\n|(?<!\n)\r/g).filter((item) => {
return !!item;
});
Expand Down
94 changes: 47 additions & 47 deletions simple-mind-map/dist/simpleMindMap.esm.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion simple-mind-map/dist/simpleMindMap.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion simple-mind-map/dist/simpleMindMap.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion simple-mind-map/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-mind-map",
"version": "0.8.0",
"version": "0.8.0-fix.1",
"description": "一个简单的web在线思维导图",
"authors": [
{
Expand Down
4 changes: 4 additions & 0 deletions web/src/pages/Doc/en/changelog/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.8.0-fix.1

Fix: Fixed the issue of creating a new node using direct paste if the pasted content contains HTML label symbols such as <> and the newly created node content is empty.

## 0.8.0

Breaking change: Greatly optimize some of the code and slightly improve performance, mainly by using the 'render' class to remove useless logic, adjust unreasonable implementations, and extract duplicate code; Modify function names, functions, etc.
Expand Down
2 changes: 2 additions & 0 deletions web/src/pages/Doc/en/changelog/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<template>
<div>
<h1>Changelog</h1>
<h2>0.8.0-fix.1</h2>
<p>Fix: Fixed the issue of creating a new node using direct paste if the pasted content contains HTML label symbols such as &lt;&gt; and the newly created node content is empty.</p>
<h2>0.8.0</h2>
<p>Breaking change: Greatly optimize some of the code and slightly improve performance, mainly by using the 'render' class to remove useless logic, adjust unreasonable implementations, and extract duplicate code; Modify function names, functions, etc.</p>
<p>Fix:</p>
Expand Down
4 changes: 4 additions & 0 deletions web/src/pages/Doc/zh/changelog/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.8.0-fix.1

修复:修复直接粘贴的方式创建新节点时如果粘贴的内容带有<>等html标签符号时新创建的节点内容为空的问题。

## 0.8.0

破坏性更新:大幅优化部分代码,小幅提升性能,主要是`render`类,删除无用逻辑、调整不合理的实现、提取重复代码;修改函数名称、函数功能等。
Expand Down
2 changes: 2 additions & 0 deletions web/src/pages/Doc/zh/changelog/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<template>
<div>
<h1>Changelog</h1>
<h2>0.8.0-fix.1</h2>
<p>修复:修复直接粘贴的方式创建新节点时如果粘贴的内容带有&lt;&gt;等html标签符号时新创建的节点内容为空的问题。</p>
<h2>0.8.0</h2>
<p>破坏性更新:大幅优化部分代码,小幅提升性能,主要是<code>render</code>类,删除无用逻辑、调整不合理的实现、提取重复代码;修改函数名称、函数功能等。</p>
<p>修复:</p>
Expand Down

0 comments on commit 6ba10bc

Please sign in to comment.