Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
02db1bf9
Commit
02db1bf9
authored
7 years ago
by
Dmitry Jemerov
1
Browse files
Options
Download
Email Patches
Plain Diff
Don't duplicate "jetbrains-" in desktop entry filename (RIDER-13712)
parent
a23b28cd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
platform/build-scripts/groovy/org/jetbrains/intellij/build/impl/LinuxDistributionBuilder.groovy
+1
-1
...rains/intellij/build/impl/LinuxDistributionBuilder.groovy
platform/platform-impl/src/com/intellij/ui/AppUIUtil.java
+1
-1
platform/platform-impl/src/com/intellij/ui/AppUIUtil.java
with
2 additions
and
2 deletions
+2
-2
platform/build-scripts/groovy/org/jetbrains/intellij/build/impl/LinuxDistributionBuilder.groovy
+
1
-
1
View file @
02db1bf9
...
...
@@ -264,6 +264,6 @@ class LinuxDistributionBuilder extends OsSpecificDistributionBuilder {
.
replace
(
' '
,
'-'
)
.
replace
(
"intellij-idea"
,
"idea"
).
replace
(
"android-studio"
,
"studio"
)
.
replace
(
"-community-edition"
,
"-ce"
).
replace
(
"-ultimate-edition"
,
""
).
replace
(
"-professional-edition"
,
""
)
"jetbrains-"
+
name
name
.
startsWith
(
"jetbrains-"
)
?
name
:
"jetbrains-"
+
name
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
platform/platform-impl/src/com/intellij/ui/AppUIUtil.java
+
1
-
1
View file @
02db1bf9
...
...
@@ -171,7 +171,7 @@ public class AppUIUtil {
.
replace
(
' '
,
'-'
)
.
replace
(
"intellij-idea"
,
"idea"
).
replace
(
"android-studio"
,
"studio"
)
// backward compatibility
.
replace
(
"-community-edition"
,
"-ce"
).
replace
(
"-ultimate-edition"
,
""
).
replace
(
"-professional-edition"
,
""
);
String
wmClass
=
VENDOR_PREFIX
+
name
;
String
wmClass
=
name
.
startsWith
(
VENDOR_PREFIX
)
?
name
:
VENDOR_PREFIX
+
name
;
if
(
DEBUG_MODE
)
wmClass
+=
"-debug"
;
return
wmClass
;
}
...
...
This diff is collapsed.
Click to expand it.
小 白蛋
@baidan
mentioned in commit
f41f03b7
·
2 years ago
mentioned in commit
f41f03b7
mentioned in commit f41f03b7b4ea5c9b04acb7106b55ba38d1d9d084
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment