Skip to content

Commit 07692eb

Browse files
authored
Merge branch 'dev' into table-doc-fix
2 parents 3856adc + 850642e commit 07692eb

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

client/packages/lowcoder-comps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lowcoder-comps",
3-
"version": "0.0.23",
3+
"version": "0.0.24",
44
"type": "module",
55
"license": "MIT",
66
"dependencies": {

client/packages/lowcoder/src/i18n/locales/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2371,7 +2371,7 @@ export const en = {
23712371
"eventName": "Event Name",
23722372
"eventDesc": "Description",
23732373
"mehtod": "Methods",
2374-
"methodUsage": "You Can Interact with Components Through Their Methods, and You Can Call Them by Their Name Anywhere You Can Write JavaScript. Or You Can Call Them Through the 'Control Component' Action of an Event.",
2374+
"methodUsage": "You have the capability to engage with components via their respective methods, which can be accessed by their designated names within any segment where JavaScript is utilized. Additionally, these components can be activated through the 'Control Component' action, which is triggered in response to specific events",
23752375
"methodName": "Method Name",
23762376
"methodDesc": "Description",
23772377
"showBorder": "Show Border",

server/api-service/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ Java - OpenJDK 17 Maven - Version 3+ (preferably 3.8+)
1111
If you don't have an available MongoDB, you can start a local MongoDB service with docker:
1212

1313
```shell
14-
docker run -d --name openblocks-mongodb -p 27017:27017 -e MONGO_INITDB_DATABASE=openblocks mongo
14+
docker run -d --name lowcoder-mongodb -p 27017:27017 -e MONGO_INITDB_DATABASE=lowcoder mongo
1515
```
1616

17-
Configure the MongoDB connection URI in the application-openblocks.yml
17+
Configure the MongoDB connection URI in the application-lowcoder.yml
1818
<img src="../../docs/.gitbook/assets/server-setup-image1.png"/>
1919

2020
### Redis
2121

2222
If you don't have an available MongoDB, you can start a local Redis service with docker:
2323

2424
```shell
25-
docker run -d --name openblocks-redis -p 6379:6379 redis
25+
docker run -d --name lowcoder-redis -p 6379:6379 redis
2626
```
2727

28-
Configure the Redis connection URI in the application-openblocks.yml
28+
Configure the Redis connection URI in the application-lowcoder.yml
2929
<img src="../../docs/.gitbook/assets/server-setup-image2.png"/>
3030

3131
## Build and start the Lowcoder server jar
@@ -36,7 +36,7 @@ Configure the Redis connection URI in the application-openblocks.yml
3636
```shell
3737
cd server
3838
mvn clean package
39-
java -Dpf4j.mode=development -Dspring.profiles.active=openblocks -Dpf4j.pluginsDir=openblocks-plugins -jar openblocks-server/target/openblocks-server-1.0-SNAPSHOT.jar
39+
java -Dpf4j.mode=development -Dspring.profiles.active=lowcoder -Dpf4j.pluginsDir=lowcoder-plugins -jar lowcoder-server/target/lowcoder-server-1.0-SNAPSHOT.jar
4040
```
4141

4242
<img src="../../docs/.gitbook/assets/server-setup-start.gif"/>
@@ -58,15 +58,15 @@ IDEA 2021.3.2 (Community Edition):
5858
</tr>
5959
<tr>
6060
<td>-cp </td>
61-
<td>openblocks-server </td>
61+
<td>lowcoder-server </td>
6262
</tr>
6363
<tr>
6464
<td>VM options </td>
65-
<td>-Dpf4j.mode=development -Dpf4j.pluginsDir=openblocks-plugins -Dspring.profiles.active=openblocks -XX:+AllowRedefinitionToAddDeleteMethods --add-opens java.base/java.nio=ALL-UNNAMED</td>
65+
<td>-Dpf4j.mode=development -Dpf4j.pluginsDir=lowcoder-plugins -Dspring.profiles.active=lowcoder -XX:+AllowRedefinitionToAddDeleteMethods --add-opens java.base/java.nio=ALL-UNNAMED</td>
6666
</tr>
6767
<tr>
6868
<td>Main class </td>
69-
<td>com.openblocks.api.ServerApplication </td>
69+
<td>com.lowcoder.api.ServerApplication </td>
7070
</tr>
7171
</table>
7272

server/api-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<name>lowcoder-root</name>
1818

1919
<properties>
20-
<revision>2.0.1-SNAPSHOT</revision>
20+
<revision>2.3.0-SNAPSHOT</revision>
2121
<java.version>17</java.version>
2222
<javadoc.disabled>true</javadoc.disabled>
2323
<deploy.disabled>true</deploy.disabled>

0 commit comments

Comments
 (0)