-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 优化 项目编辑器格式配置 Signed-off-by: Naomi <[email protected]> * 优化 ci触发规则 Signed-off-by: Naomi <[email protected]> * 优化 项目代码格式化 Signed-off-by: Naomi <[email protected]> --------- Signed-off-by: Naomi <[email protected]>
- Loading branch information
1 parent
2e79a78
commit 30f1d61
Showing
588 changed files
with
7,360 additions
and
6,846 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.xml] | ||
insert_final_newline = false | ||
|
||
[*.yml] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
app/src/main/java/com/sevtinge/cemiuiler/module/Aireco.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 7 additions & 8 deletions
15
app/src/main/java/com/sevtinge/cemiuiler/module/ContentExtension.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
package com.sevtinge.cemiuiler.module; | ||
|
||
import com.sevtinge.cemiuiler.module.base.BaseModule; | ||
import com.sevtinge.cemiuiler.module.clock.EnableHourGlass; | ||
import com.sevtinge.cemiuiler.module.contentextension.DoublePress; | ||
import com.sevtinge.cemiuiler.module.contentextension.LinkOpenMode; | ||
import com.sevtinge.cemiuiler.module.contentextension.SuperImage; | ||
import com.sevtinge.cemiuiler.module.contentextension.UseThirdPartyBrowser; | ||
|
||
public class ContentExtension extends BaseModule { | ||
|
||
@Override | ||
public void handleLoadPackage() { | ||
initHook(new UseThirdPartyBrowser(), mPrefsMap.getBoolean("content_extension_browser")); | ||
initHook(new DoublePress(), mPrefsMap.getBoolean("content_extension_double_press")); | ||
initHook(new SuperImage(), mPrefsMap.getBoolean("content_extension_super_image")); | ||
initHook(new LinkOpenMode()); | ||
} | ||
@Override | ||
public void handleLoadPackage() { | ||
initHook(new UseThirdPartyBrowser(), mPrefsMap.getBoolean("content_extension_browser")); | ||
initHook(new DoublePress(), mPrefsMap.getBoolean("content_extension_double_press")); | ||
initHook(new SuperImage(), mPrefsMap.getBoolean("content_extension_super_image")); | ||
initHook(new LinkOpenMode()); | ||
} | ||
} | ||
|
12 changes: 11 additions & 1 deletion
12
app/src/main/java/com/sevtinge/cemiuiler/module/Gallery.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.