Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitae41218

Browse files
authored
Merge branch 'dev' into feature-swagger-display
2 parentsdf558c1 +05d0743 commitae41218

File tree

4 files changed

+40
-5
lines changed

4 files changed

+40
-5
lines changed

‎client/packages/lowcoder/src/app.tsx

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,43 @@ class AppIndex extends React.Component<AppIndexProps, any> {
122122
{<title>{this.props.brandName}</title>}
123123
{<linkrel="icon"href={this.props.favicon}/>}
124124
<metaname="description"content={trans("productDesc")}/>
125+
<metaname="keywords"content="Lowcoder, Applications, App Builder, Internal Applications, Websites, Dashboards, Data Visualization, Customer Applications, CRM, ERP, eCommerce, VideoMeeting, Rapid Development"/>
126+
<metaname="author"content="Lowcoder Software LTD"/>
127+
<metaname="robots"content="index, follow"/>
128+
129+
130+
<metakey="og:title"property="og:title"content={this.props.brandName}/>
131+
<metakey="og:description"property="og:description"content={trans("productDesc")}/>
132+
<metakey="og:image"property="og:image"content="https://raw.githubusercontent.com/lowcoder-org/lowcoder-media-assets/main/images/App%20Editor%20%7C%20Main%20Screeen%20clean%20v2.4.0.png"/>
133+
<metakey="og:url"property="og:url"content={window.location.href}/>
134+
<metakey="og:type"property="og:type"content="website"/>
135+
136+
<metakey="twitter:card"name="twitter:card"content="summary_large_image"/>
137+
<metakey="twitter:title"name="twitter:title"content={this.props.brandName}/>
138+
<metakey="twitter:description"name="twitter:description"content={trans("productDesc")}/>
139+
<metakey="twitter:image"name="twitter:image"content="https://raw.githubusercontent.com/lowcoder-org/lowcoder-media-assets/main/images/App%20Editor%20%7C%20Main%20Screeen%20clean%20v2.4.0.png"/>
140+
141+
<metakey="viewport"name="viewport"content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
142+
<metakey="mobile-web-app-capable"name="mobile-web-app-capable"content="yes"/>
143+
<metakey="theme-color"name="theme-color"content="#b480de"/>
144+
145+
<metakey="apple-mobile-web-app-capable"name="apple-mobile-web-app-capable"content="yes"/>
146+
<metakey="apple-mobile-web-app-status-bar-style"name="apple-mobile-web-app-status-bar-style"content="black-translucent"/>
147+
<metakey="apple-mobile-web-app-title"name="apple-mobile-web-app-title"content={this.props.brandName}/>
148+
<linkkey="apple-touch-icon"rel="apple-touch-icon"href="https://raw.githubusercontent.com/lowcoder-org/lowcoder-media-assets/main/images/Lowcoder%20Logo%20512.png"/>
149+
<linkkey="apple-touch-startup-image"rel="apple-touch-startup-image"href="https://raw.githubusercontent.com/lowcoder-org/lowcoder-media-assets/main/images/Lowcoder%20Logo%20512.png"/>
150+
151+
<metakey="application-name"name="application-name"content={this.props.brandName}/>
152+
<metakey="msapplication-TileColor"name="msapplication-TileColor"content="#b480de"/>
153+
<metakey="msapplication-TileImage"name="msapplication-TileImage"content="https://raw.githubusercontent.com/lowcoder-org/lowcoder-media-assets/main/images/Lowcoder%20Logo%20150.png"/>
154+
{/*}<meta key="msapplication-config" name="msapplication-config" content="https://www.yourdomain.com/path/to/browserconfig.xml" />, */}
155+
156+
<linkrel="canonical"href={window.location.href}/>
125157
{isLowCoderDomain&&[
126158
// Adding Support for iframely to be able to embedd the component explorer in the docu
127-
<metakey="iframely:title"property="iframely:title"content="Lowcoder"/>,
128-
<metakey="iframely:description"property="iframely:description"content="Lowcoder | rapid App & VideoMeeting builder for everyone."/>,
159+
<metakey="iframely:title"property="iframely:title"content={this.props.brandName}/>,
160+
<metakey="iframely:description"property="iframely:description"content={trans("productDesc")}/>,
161+
129162
<linkkey="preconnect-googleapis"rel="preconnect"href="https://fonts.googleapis.com"/>,
130163
<linkkey="preconnect-gstatic"rel="preconnect"href="https://fonts.gstatic.com"crossOrigin="anonymous"/>,
131164
<linkkey="font-ubuntu"href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,700;1,400&display=swap"rel="stylesheet"/>,
Binary file not shown.

‎client/packages/lowcoder/src/pages/ApplicationV2/MoveToFolderModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const MoveToFolderModal = (props: { source?: HomeRes; onClose: () => void
108108
label:(
109109
<FolderSelectLabel>
110110
<FolderIconstyle={{marginRight:"8px",flexShrink:0}}/>
111-
{trans("home.rootFolder")}
111+
{trans("home.rootFolder")}
112112
</FolderSelectLabel>
113113
),
114114
value:"",
@@ -120,7 +120,7 @@ export const MoveToFolderModal = (props: { source?: HomeRes; onClose: () => void
120120
.map((f)=>({
121121
label:(
122122
<FolderSelectLabel>
123-
<FolderIconstyle={{marginRight:"8px",flexShrink:0}}/>
123+
<FolderIconstyle={{marginRight:"8px",width:"20px",flexShrink:0}}/>
124124
{f.name}
125125
</FolderSelectLabel>
126126
),

‎server/api-service/lowcoder-domain/src/main/java/org/lowcoder/domain/serversetting/service/ServerSettingServiceImpl.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ public class ServerSettingServiceImpl implements ServerSettingService {
2929
"LOWCODER_ADMIN_SMTP_USERNAME",
3030
"LOWCODER_ADMIN_SMTP_PASSWORD",
3131
"LOWCODER_SUPERADMIN_PASSWORD",
32-
"LOWCODER_SUPERADMIN_USERNAME");
32+
"LOWCODER_SUPERADMIN_USERNAME",
33+
"LOWCODER_SUPERUSER_PASSWORD",
34+
"LOWCODER_SUPERUSER_USERNAME");
3335

3436
@Autowired
3537
publicServerSettingServiceImpl(ServerSettingRepositoryrepository) {

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp