mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-07-13 17:51:43 +00:00
Ghost Commander update 1.60a1
This commit is contained in:
parent
1aaf99b013
commit
10a692619c
2 changed files with 48 additions and 6 deletions
|
|
@ -2,7 +2,7 @@ Categories:
|
||||||
- System
|
- System
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
WebSite: https://sites.google.com/site/ghostcommander1
|
WebSite: https://sites.google.com/site/ghostcommander1
|
||||||
SourceCode: https://sourceforge.net/p/ghostcommander/code
|
SourceCode: https://sourceforge.net/p/ghostcommander/svn/HEAD/tree/
|
||||||
IssueTracker: https://sourceforge.net/projects/ghostcommander/support
|
IssueTracker: https://sourceforge.net/projects/ghostcommander/support
|
||||||
Changelog: https://sites.google.com/site/ghostcommander1/history
|
Changelog: https://sites.google.com/site/ghostcommander1/history
|
||||||
Donate: https://sourceforge.net/p/ghostcommander/donate
|
Donate: https://sourceforge.net/p/ghostcommander/donate
|
||||||
|
|
@ -23,8 +23,8 @@ Description: |-
|
||||||
Requires root: No, but if provided you can remount filesystems and mess around
|
Requires root: No, but if provided you can remount filesystems and mess around
|
||||||
with system files.
|
with system files.
|
||||||
|
|
||||||
RepoType: srclib
|
RepoType: git-svn
|
||||||
Repo: GhostCommander
|
Repo: https://svn.code.sf.net/p/ghostcommander/svn/
|
||||||
|
|
||||||
Builds:
|
Builds:
|
||||||
- versionName: '1.35'
|
- versionName: '1.35'
|
||||||
|
|
@ -501,6 +501,16 @@ Builds:
|
||||||
scanignore:
|
scanignore:
|
||||||
- src/com/ghostsq/commander/adapters/CA.java
|
- src/com/ghostsq/commander/adapters/CA.java
|
||||||
|
|
||||||
|
- versionName: 1.60a1
|
||||||
|
versionCode: 395
|
||||||
|
commit: '29'
|
||||||
|
patch:
|
||||||
|
- build.patch
|
||||||
|
gradle:
|
||||||
|
- free
|
||||||
|
scanignore:
|
||||||
|
- src/main/java/com/ghostsq/commander/adapters/CA.java
|
||||||
|
|
||||||
MaintainerNotes: |-
|
MaintainerNotes: |-
|
||||||
No commit messages in source repo! No tags. Apks on website can be used to
|
No commit messages in source repo! No tags. Apks on website can be used to
|
||||||
confirm a release is real. Commit where AndroidManifest is changed usually
|
confirm a release is real. Commit where AndroidManifest is changed usually
|
||||||
|
|
@ -508,8 +518,9 @@ MaintainerNotes: |-
|
||||||
|
|
||||||
The scanignore is for the dex class loading which is used for loading plugins.
|
The scanignore is for the dex class loading which is used for loading plugins.
|
||||||
|
|
||||||
ArchivePolicy: 4 versions
|
As of 1.60a the repo has changed from https://svn.code.sf.net/p/ghostcommander/code/ to https://svn.code.sf.net/p/ghostcommander/svn/
|
||||||
|
|
||||||
AutoUpdateMode: Version %v
|
AutoUpdateMode: Version %v
|
||||||
UpdateCheckMode: RepoManifest
|
UpdateCheckMode: RepoManifest
|
||||||
CurrentVersion: 1.56.4
|
CurrentVersion: 1.60a1
|
||||||
CurrentVersionCode: 369
|
CurrentVersionCode: 395
|
||||||
|
|
|
||||||
31
metadata/com.ghostsq.commander/build.patch
Normal file
31
metadata/com.ghostsq.commander/build.patch
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
--- a/build.gradle
|
||||||
|
+++ b/build.gradle
|
||||||
|
@@ -1,3 +1,19 @@
|
||||||
|
+buildscript {
|
||||||
|
+ repositories {
|
||||||
|
+ google()
|
||||||
|
+ jcenter()
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ dependencies {
|
||||||
|
+ classpath 'com.android.tools.build:gradle:3.4.2'
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+repositories {
|
||||||
|
+ google()
|
||||||
|
+ jcenter()
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
|
android {
|
||||||
|
@@ -43,6 +59,8 @@
|
||||||
|
dependencies {
|
||||||
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||||
|
|
||||||
|
+ implementation 'net.lingala.zip4j:zip4j:1.3.3'
|
||||||
|
+
|
||||||
|
testImplementation 'junit:junit:4.12'
|
||||||
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
||||||
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
||||||
Loading…
Reference in a new issue