forked from mendezand/LTECleanerFOSS
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Added crash reporting (Kudos mostly to Gramophone projects for Uncaught Exception Handler backends, definitely really important to catch bugs and crashes) + Blacklists filter + Move aggresive filters to blacklist filter, disabled by default + use updatePercentage function instead of changing MainActivity gui bindings through FileScanner (cleaner code, and reusable FileScanner code in other projects). + Fixed Dynamic Colors not applied properly (i have to put it in Application, not MainActivity). + Fixed crashing when importing data, then clicking import/export again. + Reuse existing App.prefs, instead of creating individual prefs or rely on MainActivity.prefs. + [.github/ISSUE_TEMPLATE/bug-report] convert to .yml, and change some stuff... + [build.gradle] Disable crunch png by default, because its no longer needed, since the PNGs are optimized in the first place before compiling + [build.gradle] remove `.toString()` from `JavaVersion.VERSION_21`. + [build.gradle] Don't include some metadata (https://gitlab.com/IzzyOnDroid/repo/-/issues/491) + [build.gradle] Dependency upgrade... + [AndroidManifest] Add BlacklistActivity and ErrorActivity. + [App.kt] Count how many times the app has been run (not used yet, probably useful for first-run related code in the future). + [BootReceiver.kt] replace context with ctx. + [BootReceiver.kt] remove unnecessary runCleanup function. + [BootReceiver.kt] Replace ScheduledWorker.Companion variables with Constants variables. + [MainActivity.kt] move some scan Thread calls to scan function directly to reduce duplicate codes. + [MainActivity.kt] cleanup addText function code. + [MainActivity.kt] remove unnecessary reset function code. + [MainActivity.kt] move MainActivity.convertSize to CommonFunctions.convertSize + [SettingsActivity.kt] use separate loadFragment function. + [SettingsActivity.kt] Simplify crashing code (by simply throwing Exception). + [WhitelistActivity.kt] Added ability to disable filters + [WhitelistActivity.kt] Mostly same codes as WhiteList, but for blacklists, and pressing add asks for path (can use Kotlin regex). + [FileScanner.kt] Import java.util.Locale instead of everything in java.util + [FileScanner.kt] Add ability to remove empty files + [FileScanner.kt] remove unnecessary gui variable + [FileScanner.kt] Simplify getListFiles logic + [FileScanner.kt] Simplify maxCycles code + [FileScanner.kt] remove aggresive filter related codes + [PanicResponderActivity.kt] Code cleanups... + [PanicResponderActivity.kt] Trying to make it run somewhat faster by using Thread... + [ScheduledWorker.kt] replace `controllers.MainActivity.Companion.convertSize` with `CommonFunctions.convertSize` + [ScheduledWorker.kt] move UNIQUE_WORK_NAME and WORK_TAG to Constants.BGCLEAN_WORK_NAME and Constants.BGCLEAN_WORK_TAG + [ScheduledWorker.kt] move makeStatusNotification to CommonFunctions + [preferences.xml] Add blacklist & whitelist button, remove aggressive filter, add empty file, replace "empty" key to "emptyFolder" (to avoid confusion, since we have new empty file option as well), add dynamic color toggle, and modify about section as well. + [README.md] remove Repobeats analytics image that links to old repo + Remove some ununsed translations (only default and in-rID, the rest are in next commit because there is wayy too many of these)
- Loading branch information
Showing
24 changed files
with
1,121 additions
and
534 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: Bug report | ||
description: Create a bug report to help us improve | ||
labels: [bug, needs triage] | ||
body: | ||
- type: checkboxes | ||
id: checklist | ||
attributes: | ||
label: "Checklist" | ||
options: | ||
- label: "I am able to reproduce the bug with the latest version." | ||
required: true | ||
- label: "I made sure that there are *no existing issues* - [open](https://github.com/TeamNewPipe/NewPipe/issues) or [closed](https://github.com/TeamNewPipe/NewPipe/issues?q=is%3Aissue+is%3Aclosed) - which I could contribute my information to." | ||
required: true | ||
- label: "I have taken the time to fill in all the required details. I understand that the bug report will be dismissed otherwise." | ||
required: true | ||
|
||
- type: input | ||
id: app-version | ||
attributes: | ||
label: Affected version | ||
description: "In which version did you encounter the bug?" | ||
placeholder: "x.x.x - Not required if you include the log" | ||
|
||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to reproduce the bug | ||
description: | | ||
What did you do for the bug to show up? | ||
placeholder: | | ||
1. Go to '...' | ||
2. Scroll down to '....' | ||
3. Click on '....' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: | | ||
What do you expect to happen? | ||
- type: textarea | ||
id: actual-behavior | ||
attributes: | ||
label: Actual behavior | ||
description: | | ||
What happens with the steps given above? | ||
- type: textarea | ||
id: screen-media | ||
attributes: | ||
label: Screenshots/Screen recordings | ||
description: | | ||
A picture or video is worth a thousand words. | ||
If applicable, add screenshots or a screen recording to help explain your problem. | ||
GitHub supports uploading them directly in the text box. | ||
If your file is too big for GitHub to accept, try to compress it (ZIP-file) or feel free to paste a link to an image/video hoster here instead. | ||
:heavy_exclamation_mark: DON'T POST SCREENSHOTS OF THE ERROR PAGE. | ||
Instead, follow the instructions in the "Logs" section below. | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Logs | ||
description: | | ||
If your bug includes a crash log, tap on "Share formatted log" at the bottom, click "Copy to clipboard", and paste it here. | ||
- type: input | ||
id: device-os-info | ||
attributes: | ||
label: Affected Android/Custom ROM version | ||
description: | | ||
With what Operating System (+ version) did you encounter the bug? | ||
placeholder: "eg. Android 13/LineageOS 20" | ||
|
||
- type: input | ||
id: device-model-info | ||
attributes: | ||
label: Affected device model | ||
description: | | ||
On what device did you encounter the bug? | ||
placeholder: "eg. Google Pixel 7/Samsung Galaxy S10" | ||
|
||
- type: textarea | ||
id: additional-information | ||
attributes: | ||
label: Additional information | ||
description: | | ||
Any other information you'd like to include |
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
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
Oops, something went wrong.