Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0593eb8fbf | |||
| 54dadd5bf2 | |||
| c191eb6248 | |||
| 35366a5a09 | |||
| 07eb4eefdd |
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@@ -26,6 +26,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
fetch-depth: 0
|
||||||
- name: Make script executable
|
- name: Make script executable
|
||||||
run: chmod +x ./patch_submodule.sh
|
run: chmod +x ./patch_submodule.sh
|
||||||
- name: Run patch submodule script
|
- name: Run patch submodule script
|
||||||
@@ -53,7 +54,9 @@ jobs:
|
|||||||
uses: gradle/actions/setup-gradle@v6
|
uses: gradle/actions/setup-gradle@v6
|
||||||
|
|
||||||
- name: Build APK
|
- name: Build APK
|
||||||
run: ./gradlew assemble
|
run: |
|
||||||
|
VERSION_CODE=$(git rev-list --count HEAD)
|
||||||
|
./gradlew assemble -PVERSION_CODE=$VERSION_CODE
|
||||||
|
|
||||||
# - name: Upload APK
|
# - name: Upload APK
|
||||||
# uses: actions/upload-artifact@v4
|
# uses: actions/upload-artifact@v4
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
<h1>Keepass Fidelity</h1>
|
<h1>Keepass Fidelity</h1>
|
||||||
<img width="100px" src="./metadata/en-US/images/icon.png" alt="Logo">
|
<img width="100px" src="./metadata/en-US/images/icon.png" alt="Logo">
|
||||||
|
|
||||||
<p>A minimalist fidelity/loyalty card plugin</p>
|
<p>A minimalist fidelity/loyalty card app with Keepass Database storage</p>
|
||||||
|
|
||||||
<img src="https://forthebadge.com/images/badges/built-for-android.svg" alt="Built for Android">
|
<img src="https://forthebadge.com/images/badges/built-for-android.svg" alt="Built for Android">
|
||||||
<img src="https://forthebadge.com/images/badges/built-with-love.svg" alt="Built with love">
|
<img src="https://forthebadge.com/images/badges/built-with-love.svg" alt="Built with love">
|
||||||
<br>
|
<br>
|
||||||
<a href="https://github.com/choelzl/keepass-fidelity/actions/workflows/build.yml">
|
<a href="https://github.com/helcel-net/keepass-fidelity/actions/workflows/build.yml">
|
||||||
<img src="https://github.com/choelzl/keepass-fidelity/actions/workflows/build.yml/badge.svg?branch=main" alt="Build Status">
|
<img src="https://github.com/helcel-net/keepass-fidelity/actions/workflows/build.yml/badge.svg?branch=main" alt="Build Status">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
## ⭐ Features
|
## ⭐ Features
|
||||||
|
|
||||||
- Search entries in [Keepass2Android](https://github.com/PhilippC/keepass2android/)
|
- Search entries in Keepass Database
|
||||||
- Scan & Create entries
|
- Scan & Create entries
|
||||||
- Recently used history for fast access
|
- Recently used history for fast access
|
||||||
- Protect entries from caching
|
- Protect entries from caching
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ android {
|
|||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId 'net.helcel.fidelity'
|
applicationId 'net.helcel.fidelity'
|
||||||
versionName "1.3"
|
versionName "1.3b"
|
||||||
versionCode getCommitCount()
|
versionCode project.hasProperty('VERSION_CODE') ? project.property('VERSION_CODE').toInteger() : 1
|
||||||
buildConfigField("String", "APP_NAME", "\"Keepass Fidelity\"")
|
buildConfigField("String", "APP_NAME", "\"Keepass Fidelity\"")
|
||||||
manifestPlaceholders["APP_NAME"] = "Keepass Fidelity"
|
manifestPlaceholders["APP_NAME"] = "Keepass Fidelity"
|
||||||
minSdk = 28
|
minSdk = 28
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
<p><i>Keepass-Fidelity</i> adds an interface to view/save barcodes (QR included) to Keepass through the plugin interface of the Keepass2Android app.</p><p><br></p><ul><li><b>Launcher:</b> view and launch recent entries (a per entry flag can disable this behaviour)</li><li><b>View:</b> view entries from the history or queried from Keepass2Android</li><li><b>Create:</b> add entries from the camera, an image of by filling out a form. The entry is then created in the Keepass2Android app</li><li><b>Data:</b> the app uses the following data Title (entry name), barcode type (QR, UPC, ...), barcode content (number/text content) and a "secure" flag (enable/disable caching the entry).</li></ul>
|
<p><i>Keepass-Fidelity</i> adds an interface to view&save barcodes (QR included) with a Keepass Database.</p><p><br></p><ul><li><b>Launcher:</b> view and launch recent entries (a per entry flag can disable this behaviour)</li><li><b>View:</b> view entries from loaded from the database</li><li><b>Create:</b> add entries from the camera, an image of by filling out a form. The entry is then created in the database</li><li><b>Data:</b> the app uses the following data Title (entry name), barcode type (QR, UPC, ...), barcode content (number/text content) and a "secure" flag (enable/disable caching the entry).</li></ul>
|
||||||
@@ -1 +1 @@
|
|||||||
Fidelity (Membership/Loyalty) Card plugin for Keepass2Android
|
Fidelity (Membership/Loyalty) Card app with Keepass Database Storage
|
||||||
Reference in New Issue
Block a user