Skip to content

Dev -> Main 2.6.3 #1521

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updating Versions for 2.6.3 release
  • Loading branch information
FalkWolsky committed Feb 10, 2025
commit fe3edddfd718c864d9b54459d8f864b75eb4837c
2 changes: 1 addition & 1 deletion client/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.2
2.6.3
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lowcoder-frontend",
"version": "2.6.2",
"version": "2.6.3",
"type": "module",
"private": true,
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion client/packages/lowcoder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lowcoder",
"version": "2.6.2",
"version": "2.6.3",
"private": true,
"type": "module",
"main": "src/index.sdk.ts",
Expand Down
7 changes: 4 additions & 3 deletions client/packages/lowcoder/src/pages/editor/editorView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,13 @@ const DeviceWrapper = ({

const deviceWidth = useMemo(() => {
if (deviceType === 'tablet' && deviceOrientation === 'portrait') {
return 980;
return 850;
}
if (deviceType === 'tablet' && deviceOrientation === 'landscape') {
return 1280;
return 1100;
}
if (deviceType === 'mobile' && deviceOrientation === 'portrait') {
return 550;
return 450;
}
if (deviceType === 'mobile' && deviceOrientation === 'landscape') {
return 1200;
Expand All @@ -381,6 +381,7 @@ const DeviceWrapper = ({
isLandscape={deviceOrientation === 'landscape'}
screenWidth={deviceWidth}
className={`device-mockup ${deviceOrientation === 'landscape' && deviceType === 'mobile' ? 'landscape' : 'portrait'} `}
frameColor={"background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);"}
>
{children}
</Wrapper>
Expand Down
2 changes: 1 addition & 1 deletion server/api-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


<properties>
<revision>2.6.2</revision>
<revision>2.6.3</revision>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
Expand Down
2 changes: 1 addition & 1 deletion server/node-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lowcoder-node-server",
"version": "2.6.2",
"version": "2.6.3",
"private": true,
"engines": {
"node": "^14.18.0 || >=16.0.0"
Expand Down
18 changes: 14 additions & 4 deletions server/node-service/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9252,8 +9252,8 @@ __metadata:
linkType: hard

"node-gyp@npm:latest":
version: 11.0.0
resolution: "node-gyp@npm:11.0.0"
version: 11.1.0
resolution: "node-gyp@npm:11.1.0"
dependencies:
env-paths: ^2.2.0
exponential-backoff: ^3.1.1
Expand All @@ -9267,7 +9267,7 @@ __metadata:
which: ^5.0.0
bin:
node-gyp: bin/node-gyp.js
checksum: d7d5055ccc88177f721c7cd4f8f9440c29a0eb40e7b79dba89ef882ec957975dfc1dcb8225e79ab32481a02016eb13bbc051a913ea88d482d3cbdf2131156af4
checksum: b196da39a7a45f302d6e03cfdb579eeecbfffa1ab3796de45652c2c0dcbf46b83fde715b054e4d00aa53da5f33033ac5791e20cbb7cc11267dac4f8975ef276c
languageName: node
linkType: hard

Expand Down Expand Up @@ -10481,7 +10481,7 @@ __metadata:
languageName: node
linkType: hard

"socks@npm:^2.3.3, socks@npm:^2.6.2, socks@npm:^2.8.3":
"socks@npm:^2.3.3, socks@npm:^2.6.2":
version: 2.8.3
resolution: "socks@npm:2.8.3"
dependencies:
Expand All @@ -10491,6 +10491,16 @@ __metadata:
languageName: node
linkType: hard

"socks@npm:^2.8.3":
version: 2.8.4
resolution: "socks@npm:2.8.4"
dependencies:
ip-address: ^9.0.5
smart-buffer: ^4.2.0
checksum: cd1edc924475d5dfde534adf66038df7e62c7343e6b8c0113e52dc9bb6a0a10e25b2f136197f379d695f18e8f0f2b7f6e42977bf720ddbee912a851201c396ad
languageName: node
linkType: hard

"sonic-boom@npm:^4.0.1":
version: 4.2.0
resolution: "sonic-boom@npm:4.2.0"
Expand Down
Loading