Skip to content

Commit

Permalink
version 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RohitKushvaha01 committed Mar 22, 2024
2 parents 7a26995 + c3b59f1 commit caf9c9e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
/bin/
/gen/
/out/
.androidide
# Uncomment the following line in case you need and you don't have the release build type files in your app
# Gradle files
.gradle/
Expand Down
26 changes: 23 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ Xed Editor is a versatile text editor designed specifically for Android devices,
- [x] Settings
- [x] Amoled Theme (pure black)
- [x] Undo-Redo
- [ ] Text Searching in text files
- [ ] Searching
- [ ] Batch Replacement
- [ ] Plugins
- [x] Terminal (due to fdroid restriction on precompiled binaries this feature will be provided as a plugin)
- [x] Terminal (will be provided as a plugin)



Expand All @@ -25,14 +26,33 @@ Xed Editor is a versatile text editor designed specifically for Android devices,
Download latest build
from [Releases](https://github.com/RohitKushvaha01/Xed-Editor/releases)

Builds on fdroid are outdated

[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
alt="Get it on F-Droid"
height="80">](https://f-droid.org/packages/com.rk.xededitor)


## Building from source

1. Clone the repo

```git clone https://github.com/RohitKushvaha01/Xed-Editor```

2. CD

```cd "Xed-Editor"```

4. Execute Permission

```chmod +x gradlew```

5. Build

```./gradlew build```


# Screenshots
## Screenshots

<div >
<img src="/fastlane/metadata/android/en-US/images/phoneScreenshots/01.jpg" width="32%" /> <img src="/fastlane/metadata/android/en-US/images/phoneScreenshots/02.jpg" width="32%" /> <img src="/fastlane/metadata/android/en-US/images/phoneScreenshots/03.jpg" width="32%" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,15 +227,6 @@ public static FragmentManager getManager() {
return manager;
}

// click listners
public void undo(View view) {
rkUtils.ni(this);
}

public void redo(View view) {
rkUtils.ni(this);
}

public void menu(View view) {
binding.drawerLayout.open();
}
Expand Down

0 comments on commit caf9c9e

Please sign in to comment.