Skip to content

Commit

Permalink
README.md update
Browse files Browse the repository at this point in the history
  • Loading branch information
rodion-gudz committed Feb 17, 2021
1 parent 5b11783 commit 2aa1a37
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 29 deletions.
13 changes: 11 additions & 2 deletions .idea/artifacts/Android_Tool_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions .idea/libraries/Intellij_Forms.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Android-Tool.iml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
<orderEntry type="library" name="FlatLaf-library" level="project" />
<orderEntry type="library" name="Maven-Artifact" level="project" />
<orderEntry type="library" name="Intellij Forms" level="project" />
<orderEntry type="library" exported="" name="KotlinJavaRuntime" level="project" />
<orderEntry type="library" exported="" name="FlatLaf-library" level="project" />
<orderEntry type="library" exported="" name="Maven-Artifact" level="project" />
<orderEntry type="library" exported="" name="Intellij Forms" level="project" />
</component>
</module>
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,37 @@
## What is it?

#### Android Tool is a powerful and beautiful program, created to make popular adb and fastboot commands easier to use. A dark theme, intuitive interface and other features
### Latest Version: **1.0.0**
### Latest Version: **1.1.0**
## Main Features:
* #### Batch and single app installation (.apk files)
* #### Disable, enable or uninstall system apps
* #### Open, force stop or clear data of your apps
* #### Receive and save logs from your device
* #### Install or boot custom recovery or wipe partitions
* #### Always relevant links to firmware and everything you need
* #### And not only 😉

## Links:
* #### Telegram channel - [@android_tooI](https://t.me/android_tooI)
* #### Telegram chat - [@android_tooI_chat](https://t.me/android_tooI_chat)
* #### 4PDA thread - [Android Tool](https://4pda.ru/forum/index.php?showtopic=1000362)

## Screenshots:
* ##### Adb
![Adb Screenshot](https://i.imgur.com/xJH0I76.png)
![Adb Screenshot](https://i.imgur.com/zwdtIX3.png)
* ##### Logcat
![Logcat Screenshot](https://i.imgur.com/QDJqQBW.png)
![Logcat Screenshot](https://i.imgur.com/lwLcS2Z.png)
* ##### Fastboot
![Fastboot Screenshot](https://i.imgur.com/gFwkm4K.png)
![Fastboot Screenshot](https://i.imgur.com/yX5PzHs.png)
* ##### Recovery
![Fastboot Screenshot](https://i.imgur.com/PF3DEHP.png)
![Recovery Screenshot](https://i.imgur.com/1dulPXb.png)
* ##### Console
![Console Screenshot](https://i.imgur.com/ukc21M6.png)
* ##### Links
![Links Screenshot](https://i.imgur.com/LZJc3fi.png)
![Links Screenshot](https://i.imgur.com/EmmYFbv.png)

## The Latest Version And Updates
##### You can find the latest version on Github Repository Releases
##### You can find the latest version on [Github Repository Releases](https://github.com/fast-geek/Android-Tool/releases)

## Usage
### First method (Recommended)
Expand Down
21 changes: 12 additions & 9 deletions src/AboutDialog.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import com.intellij.uiDesigner.core.GridConstraints;
import com.intellij.uiDesigner.core.GridLayoutManager;

import javax.swing.*;
import javax.swing.plaf.FontUIResource;
import javax.swing.text.StyleContext;
Expand Down Expand Up @@ -34,31 +37,31 @@ public static void main() {
*/
private void $$$setupUI$$$() {
contentPane = new JPanel();
contentPane.setLayout(new com.intellij.uiDesigner.core.GridLayoutManager(1, 1, new Insets(10, 10, 10, 10), -1, -1));
contentPane.setLayout(new GridLayoutManager(1, 1, new Insets(10, 10, 10, 10), -1, -1));
final JPanel panel1 = new JPanel();
panel1.setLayout(new com.intellij.uiDesigner.core.GridLayoutManager(3, 4, new Insets(0, 0, 0, 0), -1, -1));
contentPane.add(panel1, new com.intellij.uiDesigner.core.GridConstraints(0, 0, 1, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_CENTER, com.intellij.uiDesigner.core.GridConstraints.FILL_BOTH, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_CAN_SHRINK | com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_CAN_GROW, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_CAN_SHRINK | com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_CAN_GROW, null, null, null, 0, false));
panel1.setLayout(new GridLayoutManager(3, 4, new Insets(0, 0, 0, 0), -1, -1));
contentPane.add(panel1, new GridConstraints(0, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH, GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, null, null, null, 0, false));
final JLabel label1 = new JLabel();
label1.setIcon(new ImageIcon(getClass().getResource("/icon/appIcon.png")));
label1.setText("");
panel1.add(label1, new com.intellij.uiDesigner.core.GridConstraints(0, 0, 3, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
panel1.add(label1, new GridConstraints(0, 0, 3, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
final JLabel label2 = new JLabel();
Font label2Font = this.$$$getFont$$$(null, -1, 36, label2.getFont());
if (label2Font != null) label2.setFont(label2Font);
label2.setText("Android-Tool");
panel1.add(label2, new com.intellij.uiDesigner.core.GridConstraints(0, 1, 1, 3, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_CENTER, com.intellij.uiDesigner.core.GridConstraints.FILL_HORIZONTAL, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
panel1.add(label2, new GridConstraints(0, 1, 1, 3, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_HORIZONTAL, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
final JLabel label3 = new JLabel();
label3.setText("Build");
panel1.add(label3, new com.intellij.uiDesigner.core.GridConstraints(2, 1, 1, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
panel1.add(label3, new GridConstraints(2, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
final JLabel label4 = new JLabel();
label4.setText("Version");
panel1.add(label4, new com.intellij.uiDesigner.core.GridConstraints(1, 1, 1, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
panel1.add(label4, new GridConstraints(1, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
buildLabel = new JLabel();
buildLabel.setText("");
panel1.add(buildLabel, new com.intellij.uiDesigner.core.GridConstraints(2, 2, 1, 2, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
panel1.add(buildLabel, new GridConstraints(2, 2, 1, 2, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
versionLabel = new JLabel();
versionLabel.setText("");
panel1.add(versionLabel, new com.intellij.uiDesigner.core.GridConstraints(1, 2, 1, 2, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
panel1.add(versionLabel, new GridConstraints(1, 2, 1, 2, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
}

/**
Expand Down

0 comments on commit 2aa1a37

Please sign in to comment.