diff --git a/.github/.ARCHIVARIUS_URL b/.github/.ARCHIVARIUS_URL deleted file mode 100644 index 33b530779..000000000 --- a/.github/.ARCHIVARIUS_URL +++ /dev/null @@ -1 +0,0 @@ -https://catalog.flipperzero.one diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 2705f8595..000000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,22 +0,0 @@ -# Application Submission - -- [ Describe your application here - its features or what has changed since the last version ] - - -# Extra Requirements - -- [ Describe if your application requires any extra hardware or software ] - - -# Author Checklist (Fill this out) - -- [ ] I've read the [contribution guidelines](../blob/HEAD/documentation/Contributing.md) and my PR follows them -- [ ] I own the code I'm submitting or have code owner's permission to submit it -- [ ] I [have validated](../blob/HEAD/documentation/Contributing.md#validating-manifest) the manifest file(s) with `python3 tools/bundle.py --nolint applications/CATEGORY/APPID/manifest.yml bundle.zip` - - -# Reviewer Checklist (Don't fill this out) - -- [ ] Bundle is valid -- [ ] There are no obvious issues with the source code -- [ ] I've ran this application and verified its functionality diff --git a/.github/WIDGET_TEMPLATE.md b/.github/WIDGET_TEMPLATE.md deleted file mode 100644 index 4105d4e38..000000000 --- a/.github/WIDGET_TEMPLATE.md +++ /dev/null @@ -1 +0,0 @@ -## Status diff --git a/.github/actions/bundle/action.yml b/.github/actions/bundle/action.yml deleted file mode 100644 index 91f6de9af..000000000 --- a/.github/actions/bundle/action.yml +++ /dev/null @@ -1,106 +0,0 @@ -name: "Gather Flipper Application Bundle" -author: "hedger" -description: "Github Action that bundles your FZ app" -inputs: - path: - description: "Path to bundle YML manifest" - required: true - skip-lint: - description: "Skip lint checks" - required: false - default: "false" - skip-build: - description: "Skip build step" - required: false - default: "false" - skip-source-code: - description: "Skip source code" - required: false - default: "false" - sdk-channel: - description: "SDK channel" - required: false - default: "release" - json-manifest: - description: "Output bundle info as JSON to file name" - required: false - default: "" - build-artifacts-zip: - description: "Build artifacts zip" - required: false - default: "" - -outputs: - bundle-path: - description: "Path to bundle zip" - value: ${{ steps.bundle.outputs.bundle-path }} - artifacts-path: - description: "Path to build artifacts zip" - value: ${{ steps.bundle-args.outputs.artifacts-path }} -runs: - using: "composite" - steps: - - name: Set paths - shell: bash - run: > - echo "::add-matcher::${{ github.workspace }}/.github/problem-matcher.json" ; - if [ -z ${{ inputs.path }} ]; then - echo "YML_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV ; - else - echo "YML_PATH=$GITHUB_WORKSPACE/${{ inputs.path }}" >> $GITHUB_ENV ; - fi ; - mkdir -p ${{ runner.temp }} ; - echo "BUNDLE_PATH=${{ runner.temp }}/bundle.zip" >> $GITHUB_ENV ; - echo "ARTIFACT_PATH=${{ runner.temp }}/artifacts.zip" >> $GITHUB_ENV ; - echo "CATALOG_ROOT_PATH=`realpath ${{ github.action_path }}/../../../`" >> $GITHUB_ENV ; - - - name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: '3.11' - cache: 'pip' - - - name: Setup Python requirements - shell: bash - run: > - python3 -m pip install -r ${{ env.CATALOG_ROOT_PATH }}/tools/requirements.txt - - - name: Setup ufbt - uses: flipperdevices/flipperzero-ufbt-action@v0.1 - id: setup-ufbt - with: - task: setup - skip-setup: true - sdk-channel: ${{ inputs.sdk-channel }} - - - name: Setup build env - id: bundle-args - shell: bash - run: > - BUNDLE_FLAGS="" ; - if [ ${{ inputs.skip-lint }} != 'false' ]; then - BUNDLE_FLAGS="--nolint" ; - fi ; - if [ ${{ inputs.skip-build }} != 'false' ]; then - BUNDLE_FLAGS="$BUNDLE_FLAGS --nobuild" ; - fi ; - if [ ${{ inputs.skip-source-code }} != 'false' ]; then - BUNDLE_FLAGS="$BUNDLE_FLAGS --nosourcecode" ; - fi ; - if [ ${{ inputs.json-manifest }} != '' ]; then - BUNDLE_FLAGS="$BUNDLE_FLAGS --json-manifest ${{ inputs.json-manifest }}" ; - fi ; - if [ ${{ inputs.build-artifacts-zip }} != '' ]; then - BUNDLE_FLAGS="$BUNDLE_FLAGS --artifacts ${{ env.ARTIFACT_PATH }}" ; - echo "artifacts-path=${{ env.ARTIFACT_PATH }}" >> $GITHUB_OUTPUT ; - fi ; - echo "args=$BUNDLE_FLAGS" >> $GITHUB_OUTPUT ; - - - name: Build bundle - id: bundle - shell: bash - run: > - python3 ${{ env.CATALOG_ROOT_PATH }}/tools/bundle.py \ - ${{ steps.bundle-args.outputs.args }} \ - ${{ env.YML_PATH }} ${{ env.BUNDLE_PATH }} ; - echo "bundle-path=${{ env.BUNDLE_PATH }}" >> $GITHUB_OUTPUT ; diff --git a/.github/problem-matcher.json b/.github/problem-matcher.json deleted file mode 100644 index 5275d95a3..000000000 --- a/.github/problem-matcher.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "problemMatcher": [ - { - "owner": "catalog-bundler-w", - "severity": "warning", - "pattern": [ - { - "regexp": "^\\d+:\\d+:\\d+\\.\\d+ \\[W\\] (.*)$", - "message": 1 - } - ] - }, - { - "owner": "catalog-bundler-e", - "severity": "error", - "pattern": [ - { - "regexp": "^\\d+:\\d+:\\d+\\.\\d+ \\[E\\] (.*)$", - "message": 1 - } - ] - } - - ] -} \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 99f9f70cb..000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: Build -run-name: Build ${{ inputs.application_name }} ${{ inputs.application_version }} for ${{ inputs.target }}@${{ inputs.branch }} - -on: - workflow_dispatch: - inputs: - application_name: - description: "Application name" - required: false - default: Unknown - application_version: - description: "Application version" - required: false - default: Unknown - bundle_url: - description: "Application bundle URL" - required: true - upload_url: - description: "Build results submit URL" - required: true - branch: - description: "SDK branch to use" - required: true - target: - description: "SDK hardware target to use" - required: true - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup environment - id: env-setup - run: | - ARCHIVARIUS_URL=$( < .github/.ARCHIVARIUS_URL ) ; - echo "ARCHIVARIUS_URL=${ARCHIVARIUS_URL}" >> $GITHUB_ENV ; - echo "::add-matcher::${{ github.workspace }}/.github/problem-matcher.json" ; - - - name: Install ufbt - uses: flipperdevices/flipperzero-ufbt-action@v0.1 - id: ufbt - with: - task: setup - sdk-branch: ${{ inputs.branch }} - sdk-hw-target: ${{ inputs.target }} - - - name: Setup Python requirements - working-directory: ./tools - shell: bash - run: > - python3 -m pip install -r requirements.txt - - - name: Build source code and report results - shell: bash - run: > - python3 ${{ github.workspace }}/tools/build.py \ - --api $( < .github/.ARCHIVARIUS_URL ) \ - --bundle-path ${{ inputs.bundle_url }} \ - --upload-path ${{ inputs.upload_url }} \ - --token ${{ secrets.FAST_AUTH_TOKEN }} \ - --gh-run-id ${{ github.run_id }} \ - --gh-summary $GITHUB_STEP_SUMMARY ; diff --git a/.github/workflows/bundle.yml b/.github/workflows/bundle.yml deleted file mode 100644 index 3661d2526..000000000 --- a/.github/workflows/bundle.yml +++ /dev/null @@ -1,268 +0,0 @@ -name: Process manifests - -on: - push: - branches: - - main - pull_request: - -jobs: - process-manifests: - name: Get changes - runs-on: ubuntu-latest - outputs: - changed-manifests: ${{ steps.set-json-output.outputs.all-changed-files }} - deleted-manifests: ${{ steps.set-json-output.outputs.deleted-files }} - checks-only: ${{ steps.set-json-output.outputs.checks-only }} - - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 2 - - - name: Get updated manifests - id: changed-files - uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c - with: - files: | - applications/**/manifest.yml - files_ignore: | - .github - example - - - name: JSONify changes - id: set-json-output - run: | - if [ "${{ github.event_name }}" != "push" ] ; then - echo checks-only=true >> $GITHUB_OUTPUT ; - fi ; - echo all-changed-files=$(echo "${{ steps.changed-files.outputs.all_changed_files }}" | jq -R -c 'split(" ")' ) >> $GITHUB_OUTPUT ; - echo deleted-files=$(echo "${{ steps.changed-files.outputs.deleted_files }}" | jq -R -c 'split(" ")' ) >> $GITHUB_OUTPUT ; - - - name: Generate diff comment data - id: diff-comment - if: github.event_name == 'pull_request' && steps.changed-files.outputs.all_changed_files != '' - run: | - echo "### Application updates" >> diff.md ; - for manifest in ${{ steps.changed-files.outputs.all_changed_files }} ; do - SHA_DIFF=$( git diff --unified=0 ${{ github.event.pull_request.base.sha }} ${{ github.sha }} -- $manifest | grep "commit_sha: " ) ; - OLD_SHA_VALUE=$( echo "$SHA_DIFF" | grep -E '^\-' | sed "s/.*: //" | xargs ) ; - NEW_SHA_VALUE=$( echo "$SHA_DIFF" | grep -E '^\+' | sed "s/.*: //" | xargs ) ; - REPO_URL=$( grep " origin: " $manifest | sed "s/.*origin: \(.*\)/\1/" | sed "s/\(.*\).git$/\1/" ) ; - APP_ID=$(basename $( dirname $manifest ) ) ; - if [ "z$OLD_SHA_VALUE" == "z" ] ; then - echo "New app \`$APP_ID\`: [repo]($REPO_URL/tree/$NEW_SHA_VALUE)" >> diff.md ; - else - echo "Updated app \`$APP_ID\`: [changes]($REPO_URL/compare/$OLD_SHA_VALUE...$NEW_SHA_VALUE)" >> diff.md ; - fi ; - done ; - echo 'repo-diff-md-file=diff.md' >> $GITHUB_OUTPUT ; - echo 'repo-diff<> $GITHUB_OUTPUT ; - cat diff.md >> $GITHUB_OUTPUT ; - echo 'REPO-DIFF-DATA-EOF' >> $GITHUB_OUTPUT ; - - - name: Output diff to job status - if: steps.diff-comment.outputs.repo-diff != '' - run: | - cat "${{ steps.diff-comment.outputs.repo-diff-md-file }}" >> $GITHUB_STEP_SUMMARY ; - - - name: Find diff comment - uses: peter-evans/find-comment@v3 - id: find-comment - if: steps.diff-comment.outputs.repo-diff != '' && !github.event.pull_request.head.repo.fork - with: - issue-number: ${{ github.event.pull_request.number }} - comment-author: 'github-actions[bot]' - body-includes: '### Application updates' - - - name: Create or update diff comment - if: steps.diff-comment.outputs.repo-diff != '' && !github.event.pull_request.head.repo.fork - uses: peter-evans/create-or-update-comment@v4 - with: - issue-number: ${{ github.event.pull_request.number }} - comment-id: ${{ steps.find-comment.outputs.comment-id }} - body: ${{ steps.diff-comment.outputs.repo-diff }} - edit-mode: replace - - - build-package: - name: Build package - needs: process-manifests - if: needs.process-manifests.outputs.changed-manifests != '[]' - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - manifest: ${{ fromJson(needs.process-manifests.outputs.changed-manifests) }} - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Set up source code flag - id: source-code - run: | - ARCHIVARIUS_URL=$( < .github/.ARCHIVARIUS_URL ) ; - echo "ARCHIVARIUS_URL=${ARCHIVARIUS_URL}" >> $GITHUB_ENV ; - if [ "z{{ vars.CATALOG_STAGING }}" != "z" ] ; then - echo "BUNDLE_ALLOW_VERSION_MISMATCH=1" >> $GITHUB_ENV ; - fi ; - - - name: Bundle application - id: app-bundle - continue-on-error: true - uses: ./.github/actions/bundle - with: - path: ${{ matrix.manifest }} - skip-source-code: ${{ needs.process-manifests.outputs.checks-only }} - json-manifest: bundle.json - build-artifacts-zip: true - # Uncomment to submit bundles with broken code - # skip-build: true - skip-lint: true - - - name: Retry build with RC SDK - id: app-bundle-rc - if: steps.app-bundle.outcome == 'failure' - uses: ./.github/actions/bundle - with: - path: ${{ matrix.manifest }} - skip-source-code: ${{ needs.process-manifests.outputs.checks-only }} - sdk-channel: rc - json-manifest: bundle.json - build-artifacts-zip: true - # Uncomment to submit bundles with broken code - # skip-build: true - skip-lint: true - - - name: Get succesful build output - id: get-bundle-path - if: (steps.app-bundle.outputs.bundle-path != '' || steps.app-bundle-rc.outputs.bundle-path != '') - run: | - if [ -f "${{ steps.app-bundle.outputs.bundle-path }}" ] ; then - echo "path=${{ steps.app-bundle.outputs.bundle-path }}" >> $GITHUB_OUTPUT ; - echo "artifacts-path=${{ steps.app-bundle.outputs.artifacts-path }}" >> $GITHUB_OUTPUT ; - elif [ -f $GITHUB_OUTPUT ] ; then - echo "path=${{ steps.app-bundle-rc.outputs.bundle-path }}" >> $GITHUB_OUTPUT ; - echo "artifacts-path=${{ steps.app-bundle-rc.outputs.artifacts-path }}" >> $GITHUB_OUTPUT ; - else - echo Failed to build application bundle! ; - exit 1 ; - fi - APPID=$( jq -r '.id' bundle.json ) ; - APPVERSION=$( jq -r '.version' bundle.json ) ; - echo "app-id=$APPID" >> $GITHUB_OUTPUT ; - echo "app-version=$APPVERSION" >> $GITHUB_OUTPUT ; - - - name: Submit application bundle - id: bundle-submit - if: needs.process-manifests.outputs.checks-only != 'true' - run: | - curl --fail-with-body \ - -H "Authorization: Bearer ${{ secrets.FAST_AUTH_TOKEN }}" \ - -F "bundle=@${{ steps.get-bundle-path.outputs.path }}" \ - ${{ env.ARCHIVARIUS_URL }}/api/v0/application/version/bundle - - - name: Check if version exists - if: needs.process-manifests.outputs.checks-only == 'true' && steps.app-bundle.outputs.bundle-path != '' - run: | - VER_HTTP_CODE=$( curl -sw '%{http_code}' -o /dev/null \ - "${{ env.ARCHIVARIUS_URL }}/api/v0/application/${{ steps.get-bundle-path.outputs.app-id }}/versions?version=${{ steps.get-bundle-path.outputs.app-version }}" ) ; - if [ "$VER_HTTP_CODE" != "404" ] ; then - echo "Version ${{ steps.get-bundle-path.outputs.app-version }} for ${{ steps.get-bundle-path.outputs.app-id }} already exists (or server failed, code ${VER_HTTP_CODE})!" ; - exit 1 ; - fi - - - name: Create bundle artifact - if: needs.process-manifests.outputs.checks-only == 'true' && steps.get-bundle-path.outputs.path != '' - uses: actions/upload-artifact@v4 - with: - name: "${{ steps.get-bundle-path.outputs.app-id }}-${{ steps.get-bundle-path.outputs.app-version }}-bundle" - path: ${{ steps.get-bundle-path.outputs.path }} - - - name: Create build artifacts artifact - if: needs.process-manifests.outputs.checks-only == 'true' && steps.get-bundle-path.outputs.artifacts-path != '' - uses: actions/upload-artifact@v4 - with: - name: "${{ steps.get-bundle-path.outputs.app-id }}-${{ steps.get-bundle-path.outputs.app-version }}-build-artifacts" - path: ${{ steps.get-bundle-path.outputs.artifacts-path }} - - - delete-app: - name: Delete app - needs: process-manifests - if: needs.process-manifests.outputs.deleted-manifests != '[]' - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - manifest: ${{ fromJson(needs.process-manifests.outputs.deleted-manifests) }} - - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Set up source code flag - id: source-code - run: | - ARCHIVARIUS_URL=$( < .github/.ARCHIVARIUS_URL ) ; - echo "ARCHIVARIUS_URL=${ARCHIVARIUS_URL}" >> $GITHUB_ENV ; - if [ "z{{ vars.CATALOG_STAGING }}" != "z" ] ; then - echo "BUNDLE_ALLOW_VERSION_MISMATCH=1" >> $GITHUB_ENV ; - fi - - - name: Extract app id from path - id: get-app-id - run: | - echo "app-id=$( basename $( dirname ${{ matrix.manifest }} ) )" >> $GITHUB_OUTPUT ; - - - name: Check if app exists on backend - id: check-app-exists - run: | - curl --fail-with-body \ - ${{ env.ARCHIVARIUS_URL }}/api/v0/application/${{ steps.get-app-id.outputs.app-id }} - - - name: Delete app from backend - id: delete-manifest - if: steps.check-app-exists.outputs.exitcode == 0 && needs.process-manifests.outputs.checks-only != 'true' - run: | - curl --fail-with-body -X DELETE \ - -H "Authorization: Bearer ${{ secrets.FAST_AUTH_TOKEN }}" \ - ${{ env.ARCHIVARIUS_URL }}/api/v0/application/${{ steps.get-app-id.outputs.app-id }} - - - self-test: - name: Run self-test - needs: process-manifests - if: needs.process-manifests.outputs.deleted-manifests == '[]' && needs.process-manifests.outputs.changed-manifests == '[]' - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Run self-test - id: self-test - uses: ./.github/actions/bundle - with: - path: example/manifest.yml - - - name: Create bundle artifact - uses: actions/upload-artifact@v4 - with: - name: "test-bundle" - path: ${{ steps.self-test.outputs.bundle-path }} - - - report-status: - name: Report status - needs: [ self-test, build-package, delete-app ] - if: always() && !contains(needs.*.result, 'failure') - runs-on: ubuntu-latest - steps: - - run: echo "All good ✨" ; diff --git a/.github/workflows/widget.yml b/.github/workflows/widget.yml deleted file mode 100644 index 42878e974..000000000 --- a/.github/workflows/widget.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Widget -run-name: Create widgets for ${{ inputs.application-id }} - -on: - workflow_dispatch: - inputs: - application-id: - description: "Application id" - required: true - application-category: - description: "Application category" - required: true - -jobs: - build_statuses: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setting envs - run: | - ARCHIVARIUS_URL=$(< .github/.ARCHIVARIUS_URL) ; - echo "ARCHIVARIUS_URL=${ARCHIVARIUS_URL}" >> $GITHUB_ENV ; - - - name: "Check README existence" - id: check_files - uses: andstor/file-existence-action@v3 - with: - files: 'applications/${{ inputs.application-category }}/${{ inputs.application-id }}/README.md' - - - name: Generate README widget file - if: steps.check_files.outputs.files_exists == 'false' - id: bundle - shell: bash - run: > - python3 ./tools/widget.py \ - "${{ inputs.application-id }}" "${{ inputs.application-category }}" ; - - - name: Commit README widget file - if: steps.check_files.outputs.files_exists == 'false' - uses: EndBug/add-and-commit@v9 - with: - pull: '--rebase --autostash' - add: 'applications/${{ inputs.application-category }}/${{ inputs.application-id }}/README.md' - author_name: Git Action diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 6f097a96c..000000000 --- a/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/venv -.idea -__pycache__ -.DS_Store -*.zip -/test.bat diff --git a/ReadMe.md b/ReadMe.md deleted file mode 100644 index 934527c7d..000000000 --- a/ReadMe.md +++ /dev/null @@ -1,25 +0,0 @@ -# Flipper Apps Catalog -This is a public repository for community developed apps for Flipper Zero. - -This repository hosts app manifests that contain app metadata and build information. This repository doesn't host app source code. - -## How to install an app -Apps from this repository are automatically built and archived to Flipper Application Mirror. Use Flipper companion apps to search and install apps from this repository: - - iOS: [download from App Store](https://apps.apple.com/app/flipper-mobile-app/id1534655259) - - Android: [download from Google Play](https://play.google.com/store/apps/details?id=com.flipperdevices.app) - - Web: [Flipper Lab](https://lab.flipper.net/apps) _(chromium-based browser required)_ - -## How to contribute an app - -Read [Contribution Guide](documentation/Contributing.md) to learn how to add and update your app to the Apps Catalog. - -## How to report an issue -If you have found a bug in an app or want to suggest an improvement, please contact the app's developer using the contact information provided in the app manifest, or by opening an issue in the app's source code repository. - -If you want to report abuse or violation of your rights, please open an issue in this repo with details. - -## Repository structure - -- `applications` - Apps Catalog manifests -- `documentation` - Apps Catalog documentation, including notes on the build process and architecture -- `tools` - CI/CD tools for workflow automation: verifying app manifest and its code, creating app code bundles diff --git a/applications/Bluetooth/.gitkeep b/applications/Bluetooth/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/Bluetooth/anki_remote/manifest.yml b/applications/Bluetooth/anki_remote/manifest.yml deleted file mode 100644 index ff22ad06b..000000000 --- a/applications/Bluetooth/anki_remote/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Blue5GD/Anki-Remote - commit_sha: 0c74d5fbd824204fb0266aa030e683a452b32ee6 -description: "@README.md" -changelog: "@./docs/CHANGELOG.md" -screenshots: - - "screenshots/ss0.png" - - "screenshots/ss1.png" - - "screenshots/ss2.png" - - "screenshots/ss3.png" - - "screenshots/ss4.png" diff --git a/applications/Bluetooth/bt_trigger/README.md b/applications/Bluetooth/bt_trigger/README.md deleted file mode 100644 index 66395f310..000000000 --- a/applications/Bluetooth/bt_trigger/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![bt_trigger](https://catalog.flipperzero.one/application/bt_trigger/widget)](https://catalog.flipperzero.one/application/bt_trigger/page) \ No newline at end of file diff --git a/applications/Bluetooth/bt_trigger/manifest.yml b/applications/Bluetooth/bt_trigger/manifest.yml deleted file mode 100644 index dd5e05675..000000000 --- a/applications/Bluetooth/bt_trigger/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/bluetooth-trigger -description: "@README-catalog.md" -changelog: "v1.0 - Initial release, v1.1 - Description update, v1.2 - Various important fixes, v1.3 - Fixes for latest API, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@Nem0oo" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Bluetooth/bthome/README.md b/applications/Bluetooth/bthome/README.md deleted file mode 100644 index ffa09f567..000000000 --- a/applications/Bluetooth/bthome/README.md +++ /dev/null @@ -1,5 +0,0 @@ -[![bthome](https://catalog.flipperzero.one/application/bthome/widget)](https://catalog.flipperzero.one/application/bthome/page) - -This application turns the Flipper Zero into a [BTHome](https://bthome.io) beacon, and can be used to integrate the Flipper with home automation systems that support BTHome, such as Home Assistant. - -See the [app's README](https://github.com/ghedo/flipper-playground/tree/master/bthome#readme) for more information. diff --git a/applications/Bluetooth/bthome/manifest.yml b/applications/Bluetooth/bthome/manifest.yml deleted file mode 100644 index b70c054c8..000000000 --- a/applications/Bluetooth/bthome/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/ghedo/flipper-playground - commit_sha: 1c415ac282e3fbd2c19c1b6e2aa0dd7f574e8a0d - subdir: bthome -description: | - This application turns the Flipper Zero into a [BTHome](https://bthome.io) beacon, and can be used to integrate the Flipper with home automation systems that support BTHome, such as Home Assistant. - - See the [app's README](https://github.com/ghedo/flipper-playground/tree/master/bthome#readme) for more information. -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/bthome_app.png diff --git a/applications/Bluetooth/findmy/README.md b/applications/Bluetooth/findmy/README.md deleted file mode 100644 index 575de4658..000000000 --- a/applications/Bluetooth/findmy/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![findmy](https://catalog.flipperzero.one/application/findmy/widget)](https://catalog.flipperzero.one/application/findmy/page) \ No newline at end of file diff --git a/applications/Bluetooth/findmy/manifest.yml b/applications/Bluetooth/findmy/manifest.yml deleted file mode 100644 index 31e684584..000000000 --- a/applications/Bluetooth/findmy/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/MatthewKuKanich/FindMyFlipper.git - commit_sha: 8bb3c3ee71cb2cb82a9625bb2cfd36701004e803 - subdir: FindMyFlipper -description: "FindMyFlipper, use your FlipperZero as an Airtag! Track on Apple, Samsung, and Tile find networks. Instructions are on the GitHub page: https://github.com/MatthewKuKanich/FindMyFlipper" -changelog: "v3.0 - MAC Toggle on Menu Screen, bug fixes" -author: "@MatthewKuKanich" -screenshots: - - './screenshots/1.png' - - './screenshots/2.png' - - './screenshots/3.png' diff --git a/applications/Bluetooth/hid_ble/README.md b/applications/Bluetooth/hid_ble/README.md deleted file mode 100644 index 7ef3dc243..000000000 --- a/applications/Bluetooth/hid_ble/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# HID App - -This is a standalone version of the HID app Momentum. Thankfully, that project is GPL, so this one is as well. - -## Functionality - -* Keynote - Remote for presentations -* Keynote Vertical - Alternate remote for presentations -* Keyboard - A functional keyboard, including modifier keys -* Numpad - Number pad -* Media - Media controls -* Apple Music macOS - Alternate music controls -* Movie - Media controls for watching a movie -* Mouse - Move the cursor and send clicks -* TikTok / YT Shorts - Specialized controls for short-form videos -* Mouse Clicker - Repeatedly click the mouse after a delay -* Mouse Jiggler - Moves the mouse every few seconds -* Mouse Jiggler Stealth - Moves the mouse a random direction and distance after a random time period -* PushToTalk - Controls to unmute your microphone with various services diff --git a/applications/Bluetooth/hid_ble/manifest.yml b/applications/Bluetooth/hid_ble/manifest.yml deleted file mode 100644 index f22dfd877..000000000 --- a/applications/Bluetooth/hid_ble/manifest.yml +++ /dev/null @@ -1,24 +0,0 @@ -id: hid_ble -author: Momentum Team -sourcecode: - type: git - location: - origin: https://github.com/fidian/flipper-hid-app.git - ## Put the full commit SHA of the commit with the app's code you want to submit - commit_sha: f4a4c3e663838a2f1363f638b3366d4e03b78d79 -description: "@README.md" -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/main-menu.png - - screenshots/keynote.png - - screenshots/keyboard.png - - screenshots/media.png - - screenshots/apple-music-macos.png - - screenshots/movie.png - - screenshots/mouse.png - - screenshots/tiktoc-yt-shorts.png - - screenshots/mouse-clicker.png - - screenshots/mouse-jiggler.png - - screenshots/mouse-jiggler-stealth.png - - screenshots/push-to-talk-1.png - - screenshots/push-to-talk-2.png diff --git a/applications/Bluetooth/magicband_plus_lights/manifest.yml b/applications/Bluetooth/magicband_plus_lights/manifest.yml deleted file mode 100644 index a6d0085b8..000000000 --- a/applications/Bluetooth/magicband_plus_lights/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Haw8411/magic-band-plus-lights - commit_sha: 7ed44e43bf316bf37c10aaf8806359161ca83c98 -description: "@README.md" -changelog: "@changelog.md" -screenshots: - - Green.png - - TasteRainbow.png diff --git a/applications/Bluetooth/pc_monitor/README.md b/applications/Bluetooth/pc_monitor/README.md deleted file mode 100644 index 53b0408a6..000000000 --- a/applications/Bluetooth/pc_monitor/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![pc_monitor](https://catalog.flipperzero.one/application/pc_monitor/widget)](https://catalog.flipperzero.one/application/pc_monitor/page) \ No newline at end of file diff --git a/applications/Bluetooth/pc_monitor/manifest.yml b/applications/Bluetooth/pc_monitor/manifest.yml deleted file mode 100644 index 327e81b23..000000000 --- a/applications/Bluetooth/pc_monitor/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/TheSainEyereg/flipper-pc-monitor.git - commit_sha: ff4cf57e627f7924b8ad5da6cef6e681f2ea7669 -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "Olejka" -screenshots: - - "screenshots/0.png" - - "screenshots/1.png" - - "screenshots/2.png" diff --git a/applications/GPIO/.gitkeep b/applications/GPIO/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/GPIO/24cxxprog/manifest.yml b/applications/GPIO/24cxxprog/manifest.yml deleted file mode 100644 index f91a7b17a..000000000 --- a/applications/GPIO/24cxxprog/manifest.yml +++ /dev/null @@ -1,23 +0,0 @@ -id: "24cxxprog" -name: "24cxxprog" -author: "@Dr.Mosfet" -category: "GPIO" -version: "2.0" -targets: - - "all" -sourcecode: - type: git - location: - origin: "https://github.com/kamylwnb/24cxxprog" - commit_sha: "a06410404a66cb99b4839abfc9b9f31246e3f98d" -short_description: "EEPROM 24Cxx programmer via I2C" -description: | - A comprehensive EEPROM programmer application for the Flipper Zero - that interfaces with 24Cxx series I2C memory chips. Supports read, - write, erase and dump/restore operations with a user-friendly - menu interface for all 24C series memory sizes. -changelog: "CHANGELOG.md" -screenshots: - - screenshots/1.png - - screenshots/2.png - - screenshots/3.png diff --git a/applications/GPIO/401_digilab/manifest.yml b/applications/GPIO/401_digilab/manifest.yml deleted file mode 100644 index b0cab29d3..000000000 --- a/applications/GPIO/401_digilab/manifest.yml +++ /dev/null @@ -1,28 +0,0 @@ -## DigiLab - by Tixlegeek, brought to you by LAB401 - -sourcecode: - type: git - location: - ## Specify the git URL of your repository - origin: https://github.com/lab-401/fzDigiLab - ## Put the full commit SHA of the commit with the app's code you want to submit - commit_sha: 0b48d832849d74b4e75cfcfca0ddf13a877b5b95 - ## (Optional) If your app is located in a subdirectory of the repository, specify it here - subdir: ./401DigiLabApp -## If application.fam contains 'fap_description', it will be used as a short description -short_description: Companion app for the Lab401 DigiLab -## For 'description' and 'changelog', you can use limited markdown syntax -## You can also specify a file from your app's repository as a source with @ -description: | - Companion app for Lab401's Digilab accessory. The Digilab is hardware module that allows you to explore electronic circuits with a strong emphasis on sensory feedback. It allows you to quickly probe and understand signals, and get a feel about what it looks like. - Requires a hardware component, which can be purchased at Lab401.com - Built with <3 by Lab401 and tixlegeek. -changelog: "@CHANGELOG.md" -## Unmodified screenshots from qFlipper -screenshots: - - screenshots/sc01.png - - screenshots/sc02.png - - screenshots/sc03.png - - screenshots/sc04.png - - screenshots/sc05.png - - screenshots/sc06.png diff --git a/applications/GPIO/401_light_msg/README.md b/applications/GPIO/401_light_msg/README.md deleted file mode 100644 index 77ada0b45..000000000 --- a/applications/GPIO/401_light_msg/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![401_light_msg](https://catalog.flipperzero.one/application/401_light_msg/widget)](https://catalog.flipperzero.one/application/401_light_msg/page) \ No newline at end of file diff --git a/applications/GPIO/401_light_msg/manifest.yml b/applications/GPIO/401_light_msg/manifest.yml deleted file mode 100644 index 444ecaec5..000000000 --- a/applications/GPIO/401_light_msg/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/lab-401/fzLightMessenger.git - commit_sha: 469117c22037c15c57234ed771760edd2ae1b96b - subdir: ./401lightMessengerApp -short_description: Companion app for the Lab401 Light Messenger -description: "@DESCRIPTION.md" -changelog: "@CHANGELOG.md" -## Unmodified screenshots from qFlipper -screenshots: - - screenshots/sc01.png - - screenshots/sc02.png - - screenshots/sc03.png - - screenshots/sc04.png - - screenshots/sc05.png diff --git a/applications/GPIO/air_mouse/README.md b/applications/GPIO/air_mouse/README.md deleted file mode 100644 index 21b662914..000000000 --- a/applications/GPIO/air_mouse/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![air_mouse](https://catalog.flipperzero.one/application/air_mouse/widget)](https://catalog.flipperzero.one/application/air_mouse/page) \ No newline at end of file diff --git a/applications/GPIO/air_mouse/manifest.yml b/applications/GPIO/air_mouse/manifest.yml deleted file mode 100644 index 7ff9058c1..000000000 --- a/applications/GPIO/air_mouse/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/ginkage/FlippAirMouse.git - commit_sha: 49269430dfad1743e6965409f3b360852c16ccaf -short_description: Flipper Air Mouse using BMI160 module -description: "@DESCRIPTION.md" -changelog: "@CHANGELOG.md" -author: "@ginkage" -screenshots: - - screenshot1.png - - screenshot2.png - - screenshot3.png diff --git a/applications/GPIO/airmon/README.md b/applications/GPIO/airmon/README.md deleted file mode 100644 index d476b8260..000000000 --- a/applications/GPIO/airmon/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![airmon](https://catalog.flipperzero.one/application/airmon/widget)](https://catalog.flipperzero.one/application/airmon/page) \ No newline at end of file diff --git a/applications/GPIO/airmon/manifest.yml b/applications/GPIO/airmon/manifest.yml deleted file mode 100644 index 350353b64..000000000 --- a/applications/GPIO/airmon/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/airmon -description: "Plantower PMSx003 sensor reader" -changelog: "v1.0 - Initial release, v1.1 - Various fixes, v1.2 - Fixes for latest API, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "3cky" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/GPIO/avr_isp/README.md b/applications/GPIO/avr_isp/README.md deleted file mode 100644 index 1198e3091..000000000 --- a/applications/GPIO/avr_isp/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![avr_isp](https://catalog.flipperzero.one/application/avr_isp/widget)](https://catalog.flipperzero.one/application/avr_isp/page) \ No newline at end of file diff --git a/applications/GPIO/avr_isp/manifest.yml b/applications/GPIO/avr_isp/manifest.yml deleted file mode 100644 index 490c98634..000000000 --- a/applications/GPIO/avr_isp/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: a9c6700663c0eb8b9bed884eff5545c4ab818358 - subdir: avr_isp_programmer -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@Skorpionm" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" - - ".catalog/screenshots/4.png" - - ".catalog/screenshots/5.png" - diff --git a/applications/GPIO/bme680_flipper_zero/manifest.yml b/applications/GPIO/bme680_flipper_zero/manifest.yml deleted file mode 100644 index cb8e8e963..000000000 --- a/applications/GPIO/bme680_flipper_zero/manifest.yml +++ /dev/null @@ -1,25 +0,0 @@ -id: "bme680_flipper_zero" -name: "BME680" -author: "@Dr.Mosfet" -category: "GPIO" -version: "1.2" -targets: - - "all" -sourcecode: - type: git - location: - origin: https://github.com/kamylwnb/bme680_flipper_zero - commit_sha: 0c62a0cf7d6f5f0649f02f63f6618dfd8cbf8565 -short_description: "BME680 sensor via I2C" -description: | - This is a comprehensive environmental monitoring application - designed for the Flipper Zero that interfaces with the - high-precision BME680 sensor via I2C. The BME680 is a - sophisticated environmental sensor capable of measuring - temperature, humidity, barometric pressure, and air quality (gas resistance). -changelog: "docs/CHANGELOG.md" -screenshots: - - screenshots/1.png - - screenshots/2.png - - screenshots/3.png - diff --git a/applications/GPIO/camera_suite/README.md b/applications/GPIO/camera_suite/README.md deleted file mode 100644 index e7565c92d..000000000 --- a/applications/GPIO/camera_suite/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![camera_suite](https://catalog.flipperzero.one/application/camera_suite/widget)](https://catalog.flipperzero.one/application/camera_suite/page) diff --git a/applications/GPIO/camera_suite/manifest.yml b/applications/GPIO/camera_suite/manifest.yml deleted file mode 100644 index bfdc4599c..000000000 --- a/applications/GPIO/camera_suite/manifest.yml +++ /dev/null @@ -1,22 +0,0 @@ -author: "@CodyTolene @Z4urce @leedave @rnadyrshin" -category: "GPIO" -changelog: "@./docs/CHANGELOG.md" -description: "@./docs/README.md" -icon: "icons/camera_suite.png" -id: "camera_suite" -name: "[ESP32] Camera Suite" -screenshots: - - "screenshots/camera.png" - - "screenshots/camera_preview.png" - - "screenshots/guide.png" - - "screenshots/guide_connect.png" - - "screenshots/main_menu.png" - - "screenshots/settings_app.png" - - "screenshots/settings_camera.png" -short_description: "A camera suite application for the Flipper Zero ESP32-CAM module." -sourcecode: - location: - commit_sha: c17777396da92cad1e0ece372b6c3934e2937e91 - origin: https://github.com/CodyTolene/Flipper-Zero-Camera-Suite.git - subdir: fap - type: git diff --git a/applications/GPIO/canfdhs/README.md b/applications/GPIO/canfdhs/README.md deleted file mode 100644 index 968ef6ac1..000000000 --- a/applications/GPIO/canfdhs/README.md +++ /dev/null @@ -1,97 +0,0 @@ -# Flipper Zero CAN FD HS SW - - -This software implements an USB to CAN bridge compatible with **Linux [can-utils](https://github.com/linux-can/can-utils) and slcan driver.**
-This software application is designed to run on flipper zero device and needs SERMA CAN FD board to be plugged in GPIOs ports available [here](https://github.com/serma-safety-security/flipper-zero-can-fd-hs-module).
-![Flipper zero CAN FD](./Documentation/images/main_logo.png "Flipper zero CAN FD") - -## Usage - -When entering the application (by selecting can-fd-hs) from main menu or by selecting Apps/USB-CAN, a list appears with 3 choices which represent the 3 modes of the application detailled in next sections : -- **USB-CAN Bridge :** This is the **main mode** which is used as a bridge between can-utils and a CAN device under test. -- TEST USB LOOPBACK : This mode is used to test connectivity between host computer and flipper zero. -- CAN TEST : This mode is used to test CAN connectivity. This send "CANALIVE" through CAN. - -### USB-CAN Bridge - -This mode have to be entered before issuing any configuration command. -Then you can : -1. Create a CAN network interface through USB Virtual com port (VCP) :`sudo slcand -s ttyACM can`. -2. enable your created network interface `sudo ifconfig can up`. -3. operate normally your can interface by using `cansend can #` and `candump can` commands. - -Please refer to [can-utils](https://github.com/linux-can/can-utils) for more details.
-If issues are encountered, you can get more informations by connecting directly to vcp with tool like putty : -- serial mode -- 8 data bits -- no parity -- no hardware control flow - -You can see the following screenshot for more informations: - -![debug mode](./Documentation/images/debug.png "debug mode") - -**This mode can also be used to configure connection in flexible datarate ("S9" command).**
- -> **NB1 : beware of command line termination. It must be a carriage return '\r'. For more convenience newline '\n' characters located after carriage returns are ignored.**
-> **NB2 : for compatibility reason (with can-utils) newline character is not appended after CAN RX frames.As a consequence display of these frames is impacted. To avoid this send "d" on VCP to enter in debug mode.**
-> **NB3 : beware of usb cdc buffer length. Max size is 64. So command number that can be sent in one frame is limited.**
- -### TEST USB LOOPBACK - -This mode is used to test VCP (USB cdc) connectivity. To use this mode, you have to : -1. connect to the VCP with any VCP tool like putty : - - serial mode - - 8 data bits - - no parity - - no hardware control flow -2. Once the connection is established message USB loopback is displayed, the user can test connection by sending characters on serial line and checking the content sent is sent back on serial line by the flipper device. - -![USB loopback](./Documentation/images/usb_loopback.png "USB loopback") - -### TEST CAN - -This mode is used to test CAN connection (to verify wiring between CAN device under test and flipper zero board). -No user action is required before using this mode (except the obvious wiring step).
-The frame sent every 200 ms shall by the device shall be the following : -- **007E5TCA:43414E4C49564500** : IIIIIIII:DDDDDDDDDDDDDDDD with - - **\** the extended identifier (007E57CA = "TESTCA" in hexspeak) - - **\** the data (43414E4C49564500 = "CANLIVE" in ascii). - -![test can](./Documentation/images/testcan.JPG "test can") - -> note : You can first check Tx LED blinks and transmitted byte counter (on flipper screen) increment by 8 every 200ms to diagnose problems. - -## Development - -### documentation - -Documentation can be found [here](./Documentation/html/index.html).\ -To re-generate documentation you have to install `doxygen` before running `Documentation/generate_doc.sh [--open]` (--open is used to open documentation after the generation). - - -### architecture overview - -This application is based on: -- XTREME firmware USB-UART bridge application : It has been modified to send data on CAN (via SPI) and not on UART. -- Longan Labs [Longan_CANFD](https://github.com/Longan-Labs/Longan_CANFD) library : this is the driver for the MCP 2518 CAN transceiver. - -**More information on architecture is given in [docs](./Documentation/html/index.html) (cf. previous section).** - -Application is built as an external app using standard fbt commands. Please refer to flipper documentation for more information. - -### Test status -Applications has been tested with a MCP2515 evaluation board. As a consequence, only the following datarates are tested : -- 125 Kbaud -- 250 Kbaud -- 500 Kbaud -- 1 MBaud - -![Flipper zero CAN FD test setup](./Documentation/images/CAN_test.png "Flipper zero CAN FD test setup") - -> **Note: the flexible datarate is not tested yet.** - -### Known bugs - -Multiple exit and enters in application and its submode produce instable behaviour. - diff --git a/applications/GPIO/canfdhs/manifest.yml b/applications/GPIO/canfdhs/manifest.yml deleted file mode 100644 index c6a700bbd..000000000 --- a/applications/GPIO/canfdhs/manifest.yml +++ /dev/null @@ -1,21 +0,0 @@ -## This is a sample manifest file for the Flipper Apps Catalog. -## Create one for your app in a corresponding directory in the 'applications' folder. - -sourcecode: - type: git - location: - ## Specify the git URL of your repository - origin: https://github.com/serma-safety-security/Flipper-Zero-CAN-FD-HS-SW.git - ## Put the full commit SHA of the commit with the app's code you want to submit - commit_sha: 5c050f4f825957c44e3cd54bd784b8dfec9cdcdf - ## (Optional) If your app is located in a subdirectory of the repository, specify it here - # subdir: . -## If application.fam contains 'fap_description', it will be used as a short description -short_description: This software implements an USB to CAN bridge compatible with Linux can-utils and slcan driver. -## For 'description' and 'changelog', you can use limited markdown syntax -## You can also specify a file from your app's repository as a source with @ -description: "@Documentation/README_lite.md" -changelog: "@changelog.md" -## Unmodified screenshots from qFlipper -screenshots: - - Documentation/qflipper_screenshots/Screenshot-1.png \ No newline at end of file diff --git a/applications/GPIO/co2_logger/manifest.yml b/applications/GPIO/co2_logger/manifest.yml deleted file mode 100644 index ae54652c3..000000000 --- a/applications/GPIO/co2_logger/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/harryob2/co2_logger.git - commit_sha: 435c27ac592f96d12283328cb549fbe3670571aa -description: "@README.md" -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/0.png - - screenshots/1.png diff --git a/applications/GPIO/dap_link/README.md b/applications/GPIO/dap_link/README.md deleted file mode 100644 index 3ec4c0284..000000000 --- a/applications/GPIO/dap_link/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![dap_link](https://catalog.flipperzero.one/application/dap_link/widget)](https://catalog.flipperzero.one/application/dap_link/page) \ No newline at end of file diff --git a/applications/GPIO/dap_link/manifest.yml b/applications/GPIO/dap_link/manifest.yml deleted file mode 100644 index b7ede61cc..000000000 --- a/applications/GPIO/dap_link/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: b791dea234f855155027bb46215dc60f3ddeb243 - subdir: dap_link -description: "@.catalog/README.md" -changelog: "v1.0 - Initial release, v1.1 - Various updates and fixes, v1.2 - Fixes for latest UART API, v1.3 - Removed call to deprecated SDK API" -author: "@DrZlo13" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" diff --git a/applications/GPIO/esp32_wifi_marauder/README.md b/applications/GPIO/esp32_wifi_marauder/README.md deleted file mode 100644 index c676b6d44..000000000 --- a/applications/GPIO/esp32_wifi_marauder/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![esp32_wifi_marauder](https://catalog.flipperzero.one/application/esp32_wifi_marauder/widget)](https://catalog.flipperzero.one/application/esp32_wifi_marauder/page) \ No newline at end of file diff --git a/applications/GPIO/esp32_wifi_marauder/manifest.yml b/applications/GPIO/esp32_wifi_marauder/manifest.yml deleted file mode 100644 index 4c48cc305..000000000 --- a/applications/GPIO/esp32_wifi_marauder/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/0xchocolate/flipperzero-wifi-marauder.git - commit_sha: 5dc2fd6828a0ceede3145ca434e1d6c36747a723 -id: "esp32_wifi_marauder" -category: "GPIO" -short_description: "Companion app for interfacing with ESP32 WiFi Marauder" -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -screenshots: - - "./screenshots/marauder-topmenu.png" - - "./screenshots/marauder-save-pcaps.png" - - "./screenshots/marauder-script-demo.png" diff --git a/applications/GPIO/esp_flasher/README.md b/applications/GPIO/esp_flasher/README.md deleted file mode 100644 index d1daf01c9..000000000 --- a/applications/GPIO/esp_flasher/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![esp_flasher](https://catalog.flipperzero.one/application/esp_flasher/widget)](https://catalog.flipperzero.one/application/esp_flasher/page) \ No newline at end of file diff --git a/applications/GPIO/esp_flasher/manifest.yml b/applications/GPIO/esp_flasher/manifest.yml deleted file mode 100644 index 09d1a3fcf..000000000 --- a/applications/GPIO/esp_flasher/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/0xchocolate/flipperzero-esp-flasher.git - commit_sha: 91bfde3f0c42f4330728fe1308a69a420d4380c1 -short_description: "Flipper Zero app to flash ESP chips from the device (no computer connection needed!)" -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -screenshots: - - "./screenshots/esp-flasher-browse.png" - - "./screenshots/esp-flasher-flashing.png" diff --git a/applications/GPIO/eth_troubleshooter/README.md b/applications/GPIO/eth_troubleshooter/README.md deleted file mode 100644 index 936506f6c..000000000 --- a/applications/GPIO/eth_troubleshooter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![eth_troubleshooter](https://catalog.flipperzero.one/application/eth_troubleshooter/widget)](https://catalog.flipperzero.one/application/eth_troubleshooter/page) \ No newline at end of file diff --git a/applications/GPIO/eth_troubleshooter/manifest.yml b/applications/GPIO/eth_troubleshooter/manifest.yml deleted file mode 100644 index bbe0d41f7..000000000 --- a/applications/GPIO/eth_troubleshooter/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/eth_troubleshooter -description: "@README.md" -changelog: "v1.1 - Release, v1.2 - Sync with latest version" -author: "@karasevia & @arag0re & @xMasterX" -screenshots: - - "./docs/1.png" - - "./docs/2.png" - - "./docs/3.png" - - "./docs/4.png" diff --git a/applications/GPIO/fcom/README.md b/applications/GPIO/fcom/README.md deleted file mode 100644 index 294418c8b..000000000 --- a/applications/GPIO/fcom/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fcom](https://catalog.flipperzero.one/application/fcom/widget)](https://catalog.flipperzero.one/application/fcom/page) \ No newline at end of file diff --git a/applications/GPIO/fcom/manifest.yml b/applications/GPIO/fcom/manifest.yml deleted file mode 100644 index 7200fc53b..000000000 --- a/applications/GPIO/fcom/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/TylerWilley/flipper-f-com - commit_sha: 36fd7080ba98871b50ae6925feb50826dd8d3c7f -id: "fcom" -category: "GPIO" -short_description: "App for interacting with digimon virtual pets" -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -screenshots: - - ".catalog/screenshots/fcom-topmenu.png" - - ".catalog/screenshots/fcom-digiroms.png" - - ".catalog/screenshots/fcom-sendcode.png" diff --git a/applications/GPIO/fencing_testbox/README.md b/applications/GPIO/fencing_testbox/README.md deleted file mode 100644 index 963033087..000000000 --- a/applications/GPIO/fencing_testbox/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fencing_testbox](https://catalog.flipperzero.one/application/fencing_testbox/widget)](https://catalog.flipperzero.one/application/fencing_testbox/page) diff --git a/applications/GPIO/fencing_testbox/manifest.yml b/applications/GPIO/fencing_testbox/manifest.yml deleted file mode 100644 index cb29fc831..000000000 --- a/applications/GPIO/fencing_testbox/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -id: "fencing_testbox" -name: "Fencing Test Box" -category: "GPIO" -author: "@aarjaneiro" -version: "0.1" -icon: "assets/fencing_testbox_10px.png" -description: "A simple emulator of a fencing testbox for the Flipper Zero." -changelog: "@CHANGELOG.md" -screenshots: - - "screenshots/main_page.png" - - "screenshots/testbox.png" - - "screenshots/wiring.png" - -sourcecode: - type: git - location: - origin: https://github.com/aarjaneiro/fencing_testbox/ - commit_sha: 58e4fad8796fc295ea9e7a8da72fa62db1d6b8fe \ No newline at end of file diff --git a/applications/GPIO/flashlight/README.md b/applications/GPIO/flashlight/README.md deleted file mode 100644 index a1b89fa7e..000000000 --- a/applications/GPIO/flashlight/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flashlight](https://catalog.flipperzero.one/application/flashlight/widget)](https://catalog.flipperzero.one/application/flashlight/page) \ No newline at end of file diff --git a/applications/GPIO/flashlight/manifest.yml b/applications/GPIO/flashlight/manifest.yml deleted file mode 100644 index a037faa8c..000000000 --- a/applications/GPIO/flashlight/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipper-flashlight -description: "Enables 3.3v on pin 7/C3 when you press Ok and leaves it on when you exit app" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@xMasterX" -screenshots: - - "./img/1.png" diff --git a/applications/GPIO/flip_downloader/README.md b/applications/GPIO/flip_downloader/README.md deleted file mode 100644 index 497b9427a..000000000 --- a/applications/GPIO/flip_downloader/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flip_downloader](https://catalog.flipperzero.one/application/flip_downloader/widget)](https://catalog.flipperzero.one/application/flip_downloader/page) \ No newline at end of file diff --git a/applications/GPIO/flip_downloader/manifest.yml b/applications/GPIO/flip_downloader/manifest.yml deleted file mode 100644 index c72d17a11..000000000 --- a/applications/GPIO/flip_downloader/manifest.yml +++ /dev/null @@ -1,21 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipDownloader.git - commit_sha: c10a100400d014ac70a9d228ae395fcab2ee3635 -short_description: "Download apps and assets directly to your Flipper Zero using WiFi." -description: "@./assets/README.md" -changelog: "@./assets/CHANGELOG.md" -author: "JBlanked" -name: "FlipDownloader" -version: "1.3.5" -id: "flip_downloader" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/01-main-menu.png" - - "assets/05-browse.png" - - "assets/02-catalog.png" - - "assets/03-list.png" - - "assets/04-success.png" \ No newline at end of file diff --git a/applications/GPIO/flip_gemini/manifest.yml b/applications/GPIO/flip_gemini/manifest.yml deleted file mode 100644 index e17aa1244..000000000 --- a/applications/GPIO/flip_gemini/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipGemini.git - commit_sha: 64ea22ca7321e1b895a7868f63ab6cf9491e76db -short_description: "Chat with Google's Gemini AI on your Flipper Zero" -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "FlipGemini" -version: "1.0" -id: "flip_gemini" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/chat.png" - - "assets/prompt.png" diff --git a/applications/GPIO/flip_library/README.md b/applications/GPIO/flip_library/README.md deleted file mode 100644 index f54800078..000000000 --- a/applications/GPIO/flip_library/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flip_library](https://catalog.flipperzero.one/application/flip_library/widget)](https://catalog.flipperzero.one/application/flip_library/page) \ No newline at end of file diff --git a/applications/GPIO/flip_library/manifest.yml b/applications/GPIO/flip_library/manifest.yml deleted file mode 100644 index 8c844392a..000000000 --- a/applications/GPIO/flip_library/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipLibrary.git - commit_sha: f2643329da52b4448ff6b05181d9f9350bb06a02 -short_description: "Utilize WiFi to retrieve data from 20 different APIs." -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "FlipLibrary" -version: "1.5" -id: "flip_library" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/01-main.png" - - "assets/02-random-facts.png" - - "assets/03-definition.png" \ No newline at end of file diff --git a/applications/GPIO/flip_map/manifest.yml b/applications/GPIO/flip_map/manifest.yml deleted file mode 100644 index 01e0476bd..000000000 --- a/applications/GPIO/flip_map/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipMap.git - commit_sha: a931e36bdfff56ea8b2c908e116036ec288f9b4a -short_description: "Find Flipper Zero Users." -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "FlipMap" -version: "0.2.2" -id: "flip_map" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/home.png" - - "assets/settings.png" - - "assets/warning.png" \ No newline at end of file diff --git a/applications/GPIO/flip_rpi/README.md b/applications/GPIO/flip_rpi/README.md deleted file mode 100644 index 2d19cca12..000000000 --- a/applications/GPIO/flip_rpi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flip_rpi](https://catalog.flipperzero.one/application/flip_rpi/widget)](https://catalog.flipperzero.one/application/flip_rpi/page) \ No newline at end of file diff --git a/applications/GPIO/flip_rpi/manifest.yml b/applications/GPIO/flip_rpi/manifest.yml deleted file mode 100644 index bb20af0c6..000000000 --- a/applications/GPIO/flip_rpi/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipRPI.git - commit_sha: 7626374166230db1034f9a00f01c1c53639dd781 -short_description: "Use your Flipper Zero to control your Raspberry Pi." -description: "@README.md" -changelog: "@./assets/CHANGELOG.md" -author: "JBlanked" -name: "FlipRPI" -version: "1.0" -id: "flip_rpi" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/01-home.png" - - "assets/02-saved.png" \ No newline at end of file diff --git a/applications/GPIO/flip_social/README.md b/applications/GPIO/flip_social/README.md deleted file mode 100644 index 95c7047c1..000000000 --- a/applications/GPIO/flip_social/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flip_social](https://catalog.flipperzero.one/application/flip_social/widget)](https://catalog.flipperzero.one/application/flip_social/page) \ No newline at end of file diff --git a/applications/GPIO/flip_social/manifest.yml b/applications/GPIO/flip_social/manifest.yml deleted file mode 100644 index 7126410b6..000000000 --- a/applications/GPIO/flip_social/manifest.yml +++ /dev/null @@ -1,21 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipSocial.git - commit_sha: 195976895a37dcd076c1a69c914de51fdac836eb -short_description: "Social media platform for the Flipper Zero." -description: "@./assets/README.md" -changelog: "@./assets/CHANGELOG.md" -author: "JBlanked" -name: "FlipSocial" -version: "2.0.9" -id: "flip_social" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/flip-social-post-2.png" - - "assets/flip-social-main-menu.png" - - "assets/flip-social-enter-message.png" - - "assets/flip-social-post-1.png" - - "assets/flip-social-logged-out-menu.png" \ No newline at end of file diff --git a/applications/GPIO/flip_telegram/manifest.yml b/applications/GPIO/flip_telegram/manifest.yml deleted file mode 100644 index b531b72e8..000000000 --- a/applications/GPIO/flip_telegram/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipTelegram.git - commit_sha: 8a0a8a5672c33bd6cdf264b11da749696e35e342 -short_description: "Flipper Zero Telegram Client" -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "FlipTelegram" -version: "1.0.1" -id: "flip_telegram" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/home.png" - - "assets/messages.png" - - "assets/settings.png" - - "assets/send.png" \ No newline at end of file diff --git a/applications/GPIO/flip_trader/README.md b/applications/GPIO/flip_trader/README.md deleted file mode 100644 index eb6ca727c..000000000 --- a/applications/GPIO/flip_trader/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flip_trader](https://catalog.flipperzero.one/application/flip_trader/widget)](https://catalog.flipperzero.one/application/flip_trader/page) \ No newline at end of file diff --git a/applications/GPIO/flip_trader/manifest.yml b/applications/GPIO/flip_trader/manifest.yml deleted file mode 100644 index ff99703ca..000000000 --- a/applications/GPIO/flip_trader/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipTrader.git - commit_sha: 1717a8ac7e916bd7a246b79971a5d602e018faf6 -short_description: "Use WiFi to get the price of stocks and currency pairs on your Flipper Zero." -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "FlipTrader" -version: "1.2" -id: "flip_trader" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/01-main.png" - - "assets/02-assets.png" - - "assets/03-xauusd.png" - - "assets/04-btcusd.png" \ No newline at end of file diff --git a/applications/GPIO/flip_weather/README.md b/applications/GPIO/flip_weather/README.md deleted file mode 100644 index 5a01130a4..000000000 --- a/applications/GPIO/flip_weather/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flip_weather](https://catalog.flipperzero.one/application/flip_weather/widget)](https://catalog.flipperzero.one/application/flip_weather/page) \ No newline at end of file diff --git a/applications/GPIO/flip_weather/manifest.yml b/applications/GPIO/flip_weather/manifest.yml deleted file mode 100644 index a44687f8a..000000000 --- a/applications/GPIO/flip_weather/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipWeather.git - commit_sha: 8faacc6ab74fa6726f45183cafa330f71a9aa9b7 -short_description: "Use WiFi to get GPS and Weather information on your Flipper Zero." -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "FlipWeather" -version: "1.4" -id: "flip_weather" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/01-home.png" - - "assets/02-weather.png" \ No newline at end of file diff --git a/applications/GPIO/flip_wifi/README.md b/applications/GPIO/flip_wifi/README.md deleted file mode 100644 index 83538f4a4..000000000 --- a/applications/GPIO/flip_wifi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flip_wifi](https://catalog.flipperzero.one/application/flip_wifi/widget)](https://catalog.flipperzero.one/application/flip_wifi/page) \ No newline at end of file diff --git a/applications/GPIO/flip_wifi/manifest.yml b/applications/GPIO/flip_wifi/manifest.yml deleted file mode 100644 index 0e54f3203..000000000 --- a/applications/GPIO/flip_wifi/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipWiFi.git - commit_sha: 411c391118bdcd9759302f2a662cfae07df58d61 -short_description: "FlipperHTTP companion app. Scan, deauth, and save WiFi networks on your Flipper Zero." -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "FlipWiFi" -version: "1.6.3" -id: "flip_wifi" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/01-home.png" - - "assets/02-saved.png" \ No newline at end of file diff --git a/applications/GPIO/flip_world/README.md b/applications/GPIO/flip_world/README.md deleted file mode 100644 index 4e67c1d5d..000000000 --- a/applications/GPIO/flip_world/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flip_world](https://catalog.flipperzero.one/application/flip_world/widget)](https://catalog.flipperzero.one/application/flip_world/page) \ No newline at end of file diff --git a/applications/GPIO/flip_world/manifest.yml b/applications/GPIO/flip_world/manifest.yml deleted file mode 100644 index c6115350a..000000000 --- a/applications/GPIO/flip_world/manifest.yml +++ /dev/null @@ -1,23 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipWorld.git - commit_sha: 24bf2a267d2215c6e420e40bd01d19bd19a56397 - subdir: FlipperZero/src -short_description: "The first open-world multiplayer game for the Flipper Zero" -description: "@./assets/README.md" -changelog: "@./assets/CHANGELOG.md" -author: "JBlanked" -name: "FlipWorld" -version: "1.0.3" -id: "flip_world" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/01-home.png" - - "assets/02-town.png" - - "assets/03-town.png" - - "assets/04-town.png" - - "assets/05-tree.png" - - "assets/06-tree.png" \ No newline at end of file diff --git a/applications/GPIO/flipagotchi/README.md b/applications/GPIO/flipagotchi/README.md deleted file mode 100644 index e625cd6c6..000000000 --- a/applications/GPIO/flipagotchi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipagotchi](https://catalog.flipperzero.one/application/flipagotchi/widget)](https://catalog.flipperzero.one/application/flipagotchi/page) \ No newline at end of file diff --git a/applications/GPIO/flipagotchi/manifest.yml b/applications/GPIO/flipagotchi/manifest.yml deleted file mode 100644 index a566b947d..000000000 --- a/applications/GPIO/flipagotchi/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Matt-London/pwnagotchi-flipper.git - commit_sha: 231029e185e15bd418feae77f9ab218531582e8c - subdir: flipagotchi -short_description: Flipagotchi -author: "Matt-London" -description: "@./README.md" -changelog: "All changes tracked on GitHub repository" -screenshots: - - "screenshots/PwnZeroBaseWFace.png" diff --git a/applications/GPIO/flipboard_blinky/README.md b/applications/GPIO/flipboard_blinky/README.md deleted file mode 100644 index 1179d9a42..000000000 --- a/applications/GPIO/flipboard_blinky/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipboard_blinky](https://catalog.flipperzero.one/application/flipboard_blinky/widget)](https://catalog.flipperzero.one/application/flipboard_blinky/page) \ No newline at end of file diff --git a/applications/GPIO/flipboard_blinky/manifest.yml b/applications/GPIO/flipboard_blinky/manifest.yml deleted file mode 100644 index 5186ad324..000000000 --- a/applications/GPIO/flipboard_blinky/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jamisonderek/flipboard.git - commit_sha: b2e0374a4c2b4451d9d39a5fbc4eb08bb0280b98 - subdir: flipblinky -description: "@./gallery/README.md" -changelog: "@./gallery/CHANGELOG.md" -author: "CodeAllNight (MrDerekJamison)" -screenshots: - - "gallery/00-blinky-splash.png" - - "gallery/02-blinky-config-text.png" - - "gallery/07-blinky-nametag.png" - - "gallery/06-blinky-qrcode.png" - - "gallery/01-blinky-main-menu.png" - - "gallery/03-blinky-config-text-line.png" - diff --git a/applications/GPIO/flipboard_keyboard/README.md b/applications/GPIO/flipboard_keyboard/README.md deleted file mode 100644 index 2fc9e7622..000000000 --- a/applications/GPIO/flipboard_keyboard/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipboard_keyboard](https://catalog.flipperzero.one/application/flipboard_keyboard/widget)](https://catalog.flipperzero.one/application/flipboard_keyboard/page) \ No newline at end of file diff --git a/applications/GPIO/flipboard_keyboard/manifest.yml b/applications/GPIO/flipboard_keyboard/manifest.yml deleted file mode 100644 index 8af9ce044..000000000 --- a/applications/GPIO/flipboard_keyboard/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jamisonderek/flipboard.git - commit_sha: b2e0374a4c2b4451d9d39a5fbc4eb08bb0280b98 - subdir: flipkeyboard -description: "@./gallery/README.md" -changelog: "@./gallery/CHANGELOG.md" -author: "CodeAllNight (MrDerekJamison)" -screenshots: - - "gallery/07-key-splash.png" - - "gallery/04-key-config-3.png" - - "gallery/06-key-keyboard.png" - - "gallery/03-key-config-1.png" - - "gallery/04-key-config-2.png" - - "gallery/08-key-qrcode.png" diff --git a/applications/GPIO/flipboard_signal/README.md b/applications/GPIO/flipboard_signal/README.md deleted file mode 100644 index 472d501d1..000000000 --- a/applications/GPIO/flipboard_signal/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipboard_signal](https://catalog.flipperzero.one/application/flipboard_signal/widget)](https://catalog.flipperzero.one/application/flipboard_signal/page) \ No newline at end of file diff --git a/applications/GPIO/flipboard_signal/manifest.yml b/applications/GPIO/flipboard_signal/manifest.yml deleted file mode 100644 index c8765496b..000000000 --- a/applications/GPIO/flipboard_signal/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jamisonderek/flipboard.git - commit_sha: a2b670ea3b6387f6aab1f33b5b9b57f92e1f13e8 - subdir: flipsignal -description: "@./gallery/README.md" -changelog: "@./gallery/CHANGELOG.md" -author: "CodeAllNight (MrDerekJamison)" -screenshots: - - "gallery/05-signal-splash.png" - - "gallery/03-signal-config-1.png" - - "gallery/04-signal-sending.png" - - "gallery/01-signal-main-menu.png" - - "gallery/06-signal-qrcode.png" diff --git a/applications/GPIO/flipboard_simon/README.md b/applications/GPIO/flipboard_simon/README.md deleted file mode 100644 index 67004874a..000000000 --- a/applications/GPIO/flipboard_simon/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipboard_simon](https://catalog.flipperzero.one/application/flipboard_simon/widget)](https://catalog.flipperzero.one/application/flipboard_simon/page) \ No newline at end of file diff --git a/applications/GPIO/flipboard_simon/manifest.yml b/applications/GPIO/flipboard_simon/manifest.yml deleted file mode 100644 index cf24d2ab3..000000000 --- a/applications/GPIO/flipboard_simon/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jamisonderek/flipboard.git - commit_sha: b2e0374a4c2b4451d9d39a5fbc4eb08bb0280b98 - subdir: simon-tutorial/completed/step-16/flipsimon -description: "@./gallery/README.md" -changelog: "@./gallery/CHANGELOG.md" -author: "CodeAllNight (MrDerekJamison)" -screenshots: - - "gallery/01-simon-splash.png" - - "gallery/07-simon-ok-play.png" - - "gallery/07-simon-teaching.png" - - "gallery/06-simon-win.png" - - "gallery/04-simon-config-1.png" - - "gallery/08-simon-qrcode.png" diff --git a/applications/GPIO/flipper_gb_printer/README.md b/applications/GPIO/flipper_gb_printer/README.md deleted file mode 100644 index 3897e4384..000000000 --- a/applications/GPIO/flipper_gb_printer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![pokemon](https://catalog.flipperzero.one/application/flipper_gb_printer/widget)](https://catalog.flipperzero.one/application/flipper_gb_printer/page) diff --git a/applications/GPIO/flipper_gb_printer/manifest.yml b/applications/GPIO/flipper_gb_printer/manifest.yml deleted file mode 100644 index a68dd619a..000000000 --- a/applications/GPIO/flipper_gb_printer/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/kbembedded/flipper-gb-printer/ - commit_sha: 26820ad58096ef916717a46f7206592ed058823d -description: "@.assets/README_catalog.md" -changelog: "@changelog.md" -screenshots: - - ".assets/fgp-recv.png" - - ".assets/fgp-mainmenu.png" - - ".assets/fgp-recvconfig.png" - - ".assets/fgp-pinconf.png" diff --git a/applications/GPIO/flipper_geiger/README.md b/applications/GPIO/flipper_geiger/README.md deleted file mode 100644 index b6429514e..000000000 --- a/applications/GPIO/flipper_geiger/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipper_geiger](https://catalog.flipperzero.one/application/flipper_geiger/widget)](https://catalog.flipperzero.one/application/flipper_geiger/page) \ No newline at end of file diff --git a/applications/GPIO/flipper_geiger/manifest.yml b/applications/GPIO/flipper_geiger/manifest.yml deleted file mode 100644 index 727bae7c2..000000000 --- a/applications/GPIO/flipper_geiger/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipper_geiger -description: "Works with J305 Geiger tube on external board" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Fixes for latest API, v1.3 - Fix icon, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@nmrr" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/GPIO/flipper_http/manifest.yml b/applications/GPIO/flipper_http/manifest.yml deleted file mode 100644 index 52162f441..000000000 --- a/applications/GPIO/flipper_http/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FlipperHTTP-App.git - commit_sha: 345b21efbad779b3c86de890ecc64f52ee8aeb5c -short_description: "FlipperHTTP Companion App" -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "FlipperHTTP" -version: "1.1" -id: "flipper_http" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/home.png" - - "assets/status.png" \ No newline at end of file diff --git a/applications/GPIO/flipper_spi_terminal/README.md b/applications/GPIO/flipper_spi_terminal/README.md deleted file mode 100644 index b776376af..000000000 --- a/applications/GPIO/flipper_spi_terminal/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipper_spi_terminal](https://catalog.flipperzero.one/application/flipper_spi_terminal/widget)](https://catalog.flipperzero.one/application/flipper_spi_terminal/page) \ No newline at end of file diff --git a/applications/GPIO/flipper_spi_terminal/manifest.yml b/applications/GPIO/flipper_spi_terminal/manifest.yml deleted file mode 100644 index 06d67e159..000000000 --- a/applications/GPIO/flipper_spi_terminal/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/janwiesemann/flipper-spi-terminal.git - commit_sha: 72c4e8de18dd49d6e32e7f016c983eafc4e245dd -description: "@./app_catalog/README.MD" -changelog: "@./app_catalog/CHANGELOG.MD" -screenshots: - - screenshots/screen_main.png - - screenshots/screen_terminal_hex.png - - screenshots/screen_terminal_text.png - - screenshots/screen_terminal_auto.png - - screenshots/screen_terminal_binary.png - - screenshots/screen_config.png - - screenshots/screen_config_help.png diff --git a/applications/GPIO/flipperscope/README.md b/applications/GPIO/flipperscope/README.md deleted file mode 100644 index c213ed1ee..000000000 --- a/applications/GPIO/flipperscope/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipperscope](https://catalog.flipperzero.one/application/flipperscope/widget)](https://catalog.flipperzero.one/application/flipperscope/page) \ No newline at end of file diff --git a/applications/GPIO/flipperscope/manifest.yml b/applications/GPIO/flipperscope/manifest.yml deleted file mode 100644 index 98e13c3d5..000000000 --- a/applications/GPIO/flipperscope/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/anfractuosity/flipperscope.git - commit_sha: 48ec8e2ecc6d88cdcad21a742676994ec1a04da4 -description: "@./docs/README.md" -changelog: "@./docs/CHANGELOG.md" -screenshots: - - "./screenshots/freq.png" - - "./screenshots/volt.png" - - "./screenshots/fft.png" - - "./screenshots/capture.png" - - "./screenshots/setup.png" diff --git a/applications/GPIO/fn_test/README.md b/applications/GPIO/fn_test/README.md deleted file mode 100644 index 436802146..000000000 --- a/applications/GPIO/fn_test/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fn_test](https://catalog.flipperzero.one/application/fn_test/widget)](https://catalog.flipperzero.one/application/fn_test/page) \ No newline at end of file diff --git a/applications/GPIO/fn_test/manifest.yml b/applications/GPIO/fn_test/manifest.yml deleted file mode 100644 index 29f6a72b8..000000000 --- a/applications/GPIO/fn_test/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/polarikus/flipper-zero_fn_tester - commit_sha: 9162403087a96d1df1afa1e89ed80d656a0c2dc4 -short_description: "Application for testing the fiscal drive (Only for the Russian market)" -description: "@./.catalog/README.md" -changelog: "@./.catalog/CHANGELOG.md" -screenshots: - - "./.catalog/screenshots/Menue.png" - - "./.catalog/screenshots/Detecting.png" - - "./.catalog/screenshots/FNInfo.png" - - "./.catalog/screenshots/LifeInfo.png" - - "./.catalog/screenshots/Wirning.png" diff --git a/applications/GPIO/free_roam/manifest.yml b/applications/GPIO/free_roam/manifest.yml deleted file mode 100644 index f792f17db..000000000 --- a/applications/GPIO/free_roam/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/Free-Roam.git - commit_sha: df5a5c6c1f7181aac7fe03af722165f37f3ca385 - subdir: FlipperZero -short_description: "3D Open World Multiplayer Game" -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "Free Roam" -version: "0.5" -id: "free_roam" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/game.png" - - "assets/menu.png" - - "assets/main.png" \ No newline at end of file diff --git a/applications/GPIO/gemini_ia/README.md b/applications/GPIO/gemini_ia/README.md deleted file mode 100644 index 9273dd1e8..000000000 --- a/applications/GPIO/gemini_ia/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![gemini_ia](https://catalog.flipperzero.one/application/gemini_ia/widget)](https://catalog.flipperzero.one/application/gemini_ia/page) \ No newline at end of file diff --git a/applications/GPIO/gemini_ia/manifest.yml b/applications/GPIO/gemini_ia/manifest.yml deleted file mode 100644 index 386605516..000000000 --- a/applications/GPIO/gemini_ia/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/d4rks1d33/Gemini-Flipper.git - commit_sha: 6776f9ae40dc5e1954d29ac517460c6bb33b2571 -id: "gemini_ia" -category: "GPIO" -short_description: "Companion app for interfacing with Gemini IA using the Flipper Zero" -description: "@./README.md" -changelog: "@./changelog.md" -screenshots: - - "./screenshots/menu.png" - - "./screenshots/menu2.png" - - "./screenshots/chat.png" diff --git a/applications/GPIO/ghost_esp/manifest.yml b/applications/GPIO/ghost_esp/manifest.yml deleted file mode 100644 index b1d0ef457..000000000 --- a/applications/GPIO/ghost_esp/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jaylikesbunda/ghost_esp_app.git - commit_sha: 3ed4e69f173ce92ac407bb6038cbd2f35b4d0186 -name: "[ESP32] Ghost ESP" -id: "ghost_esp" -version: "1.6.3" -author: "@Spooks4567, @jaylikesbunda and @tototo31" -short_description: "Companion app for Ghost ESP Firmware." -description: "WiFi: Scan networks, beacon spam, deauth attacks, packet capture, evil portal, network connection, and printer control. Bluetooth: Flipper discovery, Pineapple Detection, AirTag scanning, and packet capture. GPS: Wardriving capabilities." -changelog: "v1.6.x - Fixes, new commands, IR menu and more!" -category: "GPIO" -screenshots: - - "./screenshots/mainmenu.png" - - "./screenshots/wifi.png" - - "./screenshots/connect.png" - - "./screenshots/scan.png" -icon: "ghost_esp.png" diff --git a/applications/GPIO/gpio_7segment_output/README.md b/applications/GPIO/gpio_7segment_output/README.md deleted file mode 100644 index 1fc62f580..000000000 --- a/applications/GPIO/gpio_7segment_output/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![gpio_7segment_output](https://catalog.flipperzero.one/application/gpio_7segment_output/widget)](https://catalog.flipperzero.one/application/gpio_7segment_output/page) \ No newline at end of file diff --git a/applications/GPIO/gpio_7segment_output/manifest.yml b/applications/GPIO/gpio_7segment_output/manifest.yml deleted file mode 100644 index 5c07d6a08..000000000 --- a/applications/GPIO/gpio_7segment_output/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/gpio_7segment -description: "Control a 7-segment display with GPIO pins" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@jamisonderek" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/GPIO/gpio_controller/README.md b/applications/GPIO/gpio_controller/README.md deleted file mode 100644 index fc1b900ee..000000000 --- a/applications/GPIO/gpio_controller/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![gpio_controller](https://catalog.flipperzero.one/application/gpio_controller/widget)](https://catalog.flipperzero.one/application/gpio_controller/page) \ No newline at end of file diff --git a/applications/GPIO/gpio_controller/manifest.yml b/applications/GPIO/gpio_controller/manifest.yml deleted file mode 100644 index 3ff0b73aa..000000000 --- a/applications/GPIO/gpio_controller/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/gpio_controller -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" diff --git a/applications/GPIO/gpio_explorer_app/README.md b/applications/GPIO/gpio_explorer_app/README.md deleted file mode 100644 index 5759d956e..000000000 --- a/applications/GPIO/gpio_explorer_app/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![gpio_explorer_app](https://catalog.flipperzero.one/application/gpio_explorer_app/widget)](https://catalog.flipperzero.one/application/gpio_explorer_app/page) \ No newline at end of file diff --git a/applications/GPIO/gpio_explorer_app/manifest.yml b/applications/GPIO/gpio_explorer_app/manifest.yml deleted file mode 100644 index 7e31e0f6c..000000000 --- a/applications/GPIO/gpio_explorer_app/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - - origin: https://github.com/EvgeniGenchev07/gpio_explorer.git - commit_sha: a1e00e3f97e5f3981e86f3e5701164eb4c78fd5c - -description: "@README.md" -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/main.png - - screenshots/gpio_reader.png - - screenshots/rgb.png - - screenshots/led.png diff --git a/applications/GPIO/gpio_reader/README.md b/applications/GPIO/gpio_reader/README.md deleted file mode 100644 index 0ff6f85cb..000000000 --- a/applications/GPIO/gpio_reader/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![gpio_reader](https://catalog.flipperzero.one/application/gpio_reader/widget)](https://catalog.flipperzero.one/application/gpio_reader/page) \ No newline at end of file diff --git a/applications/GPIO/gpio_reader/manifest.yml b/applications/GPIO/gpio_reader/manifest.yml deleted file mode 100644 index 065ac45b6..000000000 --- a/applications/GPIO/gpio_reader/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/gpio_pins_reader -description: "Read GPIO pins states, and display them on the screen" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@aureli1c" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/GPIO/gpio_sentry_safe/README.md b/applications/GPIO/gpio_sentry_safe/README.md deleted file mode 100644 index fb0851b0b..000000000 --- a/applications/GPIO/gpio_sentry_safe/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![gpio_sentry_safe](https://catalog.flipperzero.one/application/gpio_sentry_safe/widget)](https://catalog.flipperzero.one/application/gpio_sentry_safe/page) \ No newline at end of file diff --git a/applications/GPIO/gpio_sentry_safe/manifest.yml b/applications/GPIO/gpio_sentry_safe/manifest.yml deleted file mode 100644 index a4e6d0113..000000000 --- a/applications/GPIO/gpio_sentry_safe/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/H4ckd4ddy/flipperzero-sentry-safe-plugin.git - commit_sha: 03bef91f24195fac3f1e6562d46ea4c5321d0c0b -short_description: "App exploiting vulnerability to open any Sentry Safe and Master Lock electronic safes without pin code." -description: "@README_plain.md" -changelog: "@changelog.md" -author: "@H4ckd4ddy" -screenshots: - - "./images/main.png" - - "./images/help.png" - - "./images/link.png" diff --git a/applications/GPIO/gps_nmea/README.md b/applications/GPIO/gps_nmea/README.md deleted file mode 100644 index a18dcd133..000000000 --- a/applications/GPIO/gps_nmea/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![gps_nmea](https://catalog.flipperzero.one/application/gps_nmea/widget)](https://catalog.flipperzero.one/application/gps_nmea/page) \ No newline at end of file diff --git a/applications/GPIO/gps_nmea/manifest.yml b/applications/GPIO/gps_nmea/manifest.yml deleted file mode 100644 index e3898b713..000000000 --- a/applications/GPIO/gps_nmea/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/gps_nmea_uart -description: "@README.md" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Fixes for latest API, v1.3 - Various updates, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@ezod & @xMasterX" -screenshots: - - "./img/1.png" - - "./img/2.png" - - "./img/3.png" diff --git a/applications/GPIO/i2ctools/README.md b/applications/GPIO/i2ctools/README.md deleted file mode 100644 index d562a24ba..000000000 --- a/applications/GPIO/i2ctools/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![i2ctools](https://catalog.flipperzero.one/application/i2ctools/widget)](https://catalog.flipperzero.one/application/i2ctools/page) \ No newline at end of file diff --git a/applications/GPIO/i2ctools/manifest.yml b/applications/GPIO/i2ctools/manifest.yml deleted file mode 100644 index a9f701e22..000000000 --- a/applications/GPIO/i2ctools/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/NaejEL/flipperzero-i2ctools.git - commit_sha: 51e0d451e25fab4b229ff020747c939e8f27d786 -id: "i2ctools" -category: "GPIO" -short_description: "Set of i2c tools" -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -screenshots: - - "./screenshots/main_screen.png" - - "./screenshots/scan_screen.png" - - "./screenshots/sniff_screen.png" - - "./screenshots/send_screen.png" - - "./screenshots/infos_screen.png" - diff --git a/applications/GPIO/ina_meter/README.md b/applications/GPIO/ina_meter/README.md deleted file mode 100644 index 41eb9a887..000000000 --- a/applications/GPIO/ina_meter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![ina_meter](https://catalog.flipperzero.one/application/ina_meter/widget)](https://catalog.flipperzero.one/application/ina_meter/page) \ No newline at end of file diff --git a/applications/GPIO/ina_meter/manifest.yml b/applications/GPIO/ina_meter/manifest.yml deleted file mode 100644 index 990449d57..000000000 --- a/applications/GPIO/ina_meter/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/cepetr/flipper-tina.git - commit_sha: f21f4bd5d7274eafe4e3f22e8d6135db55f1a313 -description: "@README.md" -changelog: "@CHANGELOG.md" -screenshots: - - "./screenshots/screenshot_gauge.png" - - "./screenshots/screenshot_config.png" - - "./screenshots/screenshot_datalog.png" - - "./screenshots/screenshot_wiring.png" diff --git a/applications/GPIO/ld2410_human_detector/README.md b/applications/GPIO/ld2410_human_detector/README.md deleted file mode 100644 index 981544225..000000000 --- a/applications/GPIO/ld2410_human_detector/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![ld2410_human_detector](https://catalog.flipperzero.one/application/ld2410_human_detector/widget)](https://catalog.flipperzero.one/application/ld2410_human_detector/page) \ No newline at end of file diff --git a/applications/GPIO/ld2410_human_detector/manifest.yml b/applications/GPIO/ld2410_human_detector/manifest.yml deleted file mode 100644 index 897606ca7..000000000 --- a/applications/GPIO/ld2410_human_detector/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/sistemasorp/flipper-ld2410_human_detector.git - commit_sha: 57cf20e742712946d73f39014c2619a9be6e76e8 - -id: ld2410_human_detector -name: "LD2410 Human Detector" -category: "GPIO" -author: "Oscar Rodriguez" -description: "@DESCRIPTION.md" -short_description: "Human presence detection using HLK-LD2410 mmWave sensor" -changelog: "@CHANGELOG.md" - -screenshots: - - "screenshots/screenshot1.png" diff --git a/applications/GPIO/lightmeter/README.md b/applications/GPIO/lightmeter/README.md deleted file mode 100644 index 4e9da58a1..000000000 --- a/applications/GPIO/lightmeter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![lightmeter](https://catalog.flipperzero.one/application/lightmeter/widget)](https://catalog.flipperzero.one/application/lightmeter/page) \ No newline at end of file diff --git a/applications/GPIO/lightmeter/manifest.yml b/applications/GPIO/lightmeter/manifest.yml deleted file mode 100644 index 58a5435ab..000000000 --- a/applications/GPIO/lightmeter/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/oleksiikutuzov/flipperzero-lightmeter - commit_sha: 671723ddba0eb8f0089fcd2e9901e0a535bb8724 - subdir: application -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -screenshots: - - "./.flipcorg/gallery/gui_main.png" - - "./.flipcorg/gallery/gui_config.png" - - "./.flipcorg/gallery/gui_config_2.png" - - "./.flipcorg/gallery/gui_lux_meter.png" diff --git a/applications/GPIO/logic_analyzer/README.md b/applications/GPIO/logic_analyzer/README.md deleted file mode 100644 index 46908bd06..000000000 --- a/applications/GPIO/logic_analyzer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![logic_analyzer](https://catalog.flipperzero.one/application/logic_analyzer/widget)](https://catalog.flipperzero.one/application/logic_analyzer/page) \ No newline at end of file diff --git a/applications/GPIO/logic_analyzer/manifest.yml b/applications/GPIO/logic_analyzer/manifest.yml deleted file mode 100644 index b331f9a4d..000000000 --- a/applications/GPIO/logic_analyzer/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/logic_analyzer -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" diff --git a/applications/GPIO/longwave_clock/README.md b/applications/GPIO/longwave_clock/README.md deleted file mode 100644 index fa3399cb1..000000000 --- a/applications/GPIO/longwave_clock/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![longwave_clock](https://catalog.flipperzero.one/application/longwave_clock/widget)](https://catalog.flipperzero.one/application/longwave_clock/page) \ No newline at end of file diff --git a/applications/GPIO/longwave_clock/manifest.yml b/applications/GPIO/longwave_clock/manifest.yml deleted file mode 100644 index 0660eb907..000000000 --- a/applications/GPIO/longwave_clock/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -author: "@m7i-org" -category: "GPIO" -sourcecode: - type: git - location: - origin: https://github.com/m7i-org/flipper_longwave_clock.git - commit_sha: 85317993287ae00334423d88cde220212e791732 -description: | - Receive long wave time signals through inexpensive GPIO modules, or simulate receipt if you don't own any. - Supports DCF77 as well as MSF, with more protocols to be implemented in the future. -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/v0.1/big_dcf77.png - - screenshots/v0.1/big_msf.png - - screenshots/v0.1/big_menu.png diff --git a/applications/GPIO/magspoof/README.md b/applications/GPIO/magspoof/README.md deleted file mode 100644 index e77476f5d..000000000 --- a/applications/GPIO/magspoof/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![magspoof](https://catalog.flipperzero.one/application/magspoof/widget)](https://catalog.flipperzero.one/application/magspoof/page) \ No newline at end of file diff --git a/applications/GPIO/magspoof/manifest.yml b/applications/GPIO/magspoof/manifest.yml deleted file mode 100644 index a662b41d1..000000000 --- a/applications/GPIO/magspoof/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/zacharyweiss/magspoof_flipper.git - commit_sha: be6fdbf8af4a4a6ea08b812732474d6c71d6bbd5 -description: | - Port of Samy Kamkar's MagSpoof project to the Flipper Zero. Emulates magstripe data wirelessly using an external electromagnet. - - Reading & internal TX are works-in-progress; for more information, confer GitHub. -changelog: "All version control & changes annotated on GitHub" -screenshots: - - assets/emulate.png - - assets/settings.png - - assets/emulate_config.png diff --git a/applications/GPIO/malveke_gb_cartridge/README.md b/applications/GPIO/malveke_gb_cartridge/README.md deleted file mode 100644 index c690c519c..000000000 --- a/applications/GPIO/malveke_gb_cartridge/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![malveke_gb_cartridge](https://catalog.flipperzero.one/application/malveke_gb_cartridge/widget)](https://catalog.flipperzero.one/application/malveke_gb_cartridge/page) \ No newline at end of file diff --git a/applications/GPIO/malveke_gb_cartridge/manifest.yml b/applications/GPIO/malveke_gb_cartridge/manifest.yml deleted file mode 100644 index 6f040c69f..000000000 --- a/applications/GPIO/malveke_gb_cartridge/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero.git - commit_sha: 8e3ad6ec8ab59631318ec0cd190943a26eace014 - subdir: flipper_companion_apps/applications/external/malveke_gb_cartridge -category: "GPIO" -short_description: | - MALVEKE app, its Interacts with GAME BOY and GAME BOY Color cartridges. You can Dump & Restore RAM and ROM. -id: "malveke_gb_cartridge" -description: "@README_catalog.md" -changelog: "@docs/changelog.md" -author: "Esteban Fuentealba" -icon: "icons/icon.png" -screenshots: - - ".flipcorg/gallery/1.png" - - ".flipcorg/gallery/2.png" - - ".flipcorg/gallery/3.png" - - ".flipcorg/gallery/4.png" \ No newline at end of file diff --git a/applications/GPIO/malveke_gb_link_camera/README.md b/applications/GPIO/malveke_gb_link_camera/README.md deleted file mode 100644 index 753cff866..000000000 --- a/applications/GPIO/malveke_gb_link_camera/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![malveke_gb_link_camera](https://catalog.flipperzero.one/application/malveke_gb_link_camera/widget)](https://catalog.flipperzero.one/application/malveke_gb_link_camera/page) \ No newline at end of file diff --git a/applications/GPIO/malveke_gb_link_camera/manifest.yml b/applications/GPIO/malveke_gb_link_camera/manifest.yml deleted file mode 100644 index 26578b476..000000000 --- a/applications/GPIO/malveke_gb_link_camera/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero.git - commit_sha: fb7dba8c813a659c81fc37e5e7150c0b939fd4a7 - subdir: flipper_companion_apps/applications/external/malveke_gb_link_camera -category: "GPIO" -short_description: | - extract your GAME BOY Camera picture via WIFI, so they can be easily shared with your phone, tablet or pc. Easy to use, just hook up to your GAME BOY and print as usual, the device will store the images and share them on a web server via WIFI. You will need a printer cable or gameboy Color link cable. -id: "malveke_gb_link_camera" -description: "@README_catalog.md" -changelog: "@docs/changelog.md" -author: "Esteban Fuentealba" -icon: "icons/boilerplate_10px.png" -screenshots: - - ".flipcorg/gallery/1.png" - - ".flipcorg/gallery/2.png" \ No newline at end of file diff --git a/applications/GPIO/malveke_gb_live_camera/README.md b/applications/GPIO/malveke_gb_live_camera/README.md deleted file mode 100644 index b6f7e32e1..000000000 --- a/applications/GPIO/malveke_gb_live_camera/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![malveke_gb_live_camera](https://catalog.flipperzero.one/application/malveke_gb_live_camera/widget)](https://catalog.flipperzero.one/application/malveke_gb_live_camera/page) \ No newline at end of file diff --git a/applications/GPIO/malveke_gb_live_camera/manifest.yml b/applications/GPIO/malveke_gb_live_camera/manifest.yml deleted file mode 100644 index 586286e4b..000000000 --- a/applications/GPIO/malveke_gb_live_camera/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero.git - commit_sha: fb7dba8c813a659c81fc37e5e7150c0b939fd4a7 - subdir: flipper_companion_apps/applications/external/malveke_gb_live_camera -category: "GPIO" -short_description: | - Insert a GAME BOY Camera cartridge, you can use it as a camera and take snapshots from the Flipper Zero. -id: "malveke_gb_live_camera" -description: "@README_catalog.md" -changelog: "@docs/changelog.md" -author: "Esteban Fuentealba" -icon: "icons/icon.png" -screenshots: - - ".flipcorg/gallery/1.png" - - ".flipcorg/gallery/2.png" - - ".flipcorg/gallery/3.png" \ No newline at end of file diff --git a/applications/GPIO/malveke_gb_photo/README.md b/applications/GPIO/malveke_gb_photo/README.md deleted file mode 100644 index c3676fc27..000000000 --- a/applications/GPIO/malveke_gb_photo/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![malveke_gb_photo](https://catalog.flipperzero.one/application/malveke_gb_photo/widget)](https://catalog.flipperzero.one/application/malveke_gb_photo/page) \ No newline at end of file diff --git a/applications/GPIO/malveke_gb_photo/manifest.yml b/applications/GPIO/malveke_gb_photo/manifest.yml deleted file mode 100644 index 208e92d32..000000000 --- a/applications/GPIO/malveke_gb_photo/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero.git - commit_sha: 9da31fdcfbe5f23255cdc5800b85256ec431630e - subdir: flipper_companion_apps/applications/external/malveke_gb_photo -category: "GPIO" -short_description: | - Game Boy Camera save RAM photo to BMP from the Flipper Zero. -id: "malveke_gb_photo" -description: "@README_catalog.md" -changelog: "@docs/changelog.md" -author: "Esteban Fuentealba" -icon: "icons/icon_10px.png" -screenshots: - - ".flipcorg/gallery/1.png" - - ".flipcorg/gallery/2.png" - - ".flipcorg/gallery/3.png" - - ".flipcorg/gallery/4.png" \ No newline at end of file diff --git a/applications/GPIO/malveke_gba_cartridge/README.md b/applications/GPIO/malveke_gba_cartridge/README.md deleted file mode 100644 index 852f92fc2..000000000 --- a/applications/GPIO/malveke_gba_cartridge/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![malveke_gba_cartridge](https://catalog.flipperzero.one/application/malveke_gba_cartridge/widget)](https://catalog.flipperzero.one/application/malveke_gba_cartridge/page) \ No newline at end of file diff --git a/applications/GPIO/malveke_gba_cartridge/manifest.yml b/applications/GPIO/malveke_gba_cartridge/manifest.yml deleted file mode 100644 index 357f853ac..000000000 --- a/applications/GPIO/malveke_gba_cartridge/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/EstebanFuentealba/MALVEKE-Flipper-Zero.git - commit_sha: 8e3ad6ec8ab59631318ec0cd190943a26eace014 - subdir: flipper_companion_apps/applications/external/malveke_gba_cartridge -category: "GPIO" -short_description: | - MALVEKE app, its Interacts with GAME BOY and GAME BOY ADVANCE cartridges. You can read Information. -id: "malveke_gba_cartridge" -description: "@README_catalog.md" -changelog: "@docs/changelog.md" -author: "Esteban Fuentealba" -icon: "icons/icon.png" -screenshots: - - ".flipcorg/gallery/1.png" - - ".flipcorg/gallery/2.png" - - ".flipcorg/gallery/3.png" \ No newline at end of file diff --git a/applications/GPIO/max31855/README.md b/applications/GPIO/max31855/README.md deleted file mode 100644 index 197755a25..000000000 --- a/applications/GPIO/max31855/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![max31855](https://catalog.flipperzero.one/application/max31855/widget)](https://catalog.flipperzero.one/application/max31855/page) \ No newline at end of file diff --git a/applications/GPIO/max31855/manifest.yml b/applications/GPIO/max31855/manifest.yml deleted file mode 100644 index 63e5a71e2..000000000 --- a/applications/GPIO/max31855/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/skotopes/flipperzero_max31855.git - commit_sha: ff01fa5da25b06cb5394be710e3ffb0bad4c7ef7 -short_description: MAX31855 Thermocouple Sensor App -description: "@ReadMe.md" -changelog: "@ChangeLog.md" -screenshots: - - screenshots/0.png - - screenshots/1.png - - screenshots/2.png - - screenshots/3.png diff --git a/applications/GPIO/mh_z19/README.md b/applications/GPIO/mh_z19/README.md deleted file mode 100644 index bde5e3752..000000000 --- a/applications/GPIO/mh_z19/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![mh_z19](https://catalog.flipperzero.one/application/mh_z19/widget)](https://catalog.flipperzero.one/application/mh_z19/page) \ No newline at end of file diff --git a/applications/GPIO/mh_z19/manifest.yml b/applications/GPIO/mh_z19/manifest.yml deleted file mode 100644 index 2a2f7618f..000000000 --- a/applications/GPIO/mh_z19/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/meshchaninov/flipper-zero-mh-z19 - commit_sha: 6120a542290469ab81b1691fad5cbcb709ff0172 -short_description: | - Measuring carbon dioxide (CO2) with mh-z19 -description: | - Application for measuring carbon dioxide (CO2) with mh-z19 sensor and Flipper zero -changelog: "@CHANGELOG.md" -author: "@meshchaninov" -screenshots: - - assets/Ok.png - - assets/Very.png - diff --git a/applications/GPIO/mhz19_uart/README.md b/applications/GPIO/mhz19_uart/README.md deleted file mode 100644 index 8c01af5a1..000000000 --- a/applications/GPIO/mhz19_uart/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![mhz19_uart](https://catalog.flipperzero.one/application/mhz19_uart/widget)](https://catalog.flipperzero.one/application/mhz19_uart/page) \ No newline at end of file diff --git a/applications/GPIO/mhz19_uart/manifest.yml b/applications/GPIO/mhz19_uart/manifest.yml deleted file mode 100644 index b7d122494..000000000 --- a/applications/GPIO/mhz19_uart/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/skotopes/flipperzero_mhz19_uart.git - commit_sha: 6c1addcda1fb0f33b01c7f574e35e7b3d6ea824b -description: "@ReadMe.md" -changelog: "@ChangeLog.md" -screenshots: - - screenshots/0.png - - screenshots/1.png - - screenshots/2.png diff --git a/applications/GPIO/moisture_sensor/manifest.yml b/applications/GPIO/moisture_sensor/manifest.yml deleted file mode 100644 index 5de82367f..000000000 --- a/applications/GPIO/moisture_sensor/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/smallwat3r/flipperzero-moisture-sensor - commit_sha: 492098ba7d229fe52ea011ee6753ae957f0ed805 -name: Moisture Sensor -id: moisture_sensor -author: smallwat3r -category: GPIO -version: "1.0" -icon: assets/icons/icon.png -targets: - - all -short_description: Read values from a capacitive moisture sensor v1.2 -description: "@assets/README_catalog.md" -changelog: "@changelog.md" -screenshots: - - assets/screenshots/sensor.png - - assets/screenshots/calibration.png diff --git a/applications/GPIO/nearby_files/manifest.yml b/applications/GPIO/nearby_files/manifest.yml deleted file mode 100644 index 913bd48f5..000000000 --- a/applications/GPIO/nearby_files/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Stichoza/flipper-nearby-files.git - commit_sha: 9eba57bccd79f15b1e90cbdb914e5671071ec192 -name: "Nearby Files" -id: "nearby_files" -version: "1.5" -author: "@Stichoza" -short_description: "GPS-enabled file browser that displays files sorted by distance from your current location." -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -category: "GPIO" -screenshots: - - ".catalog/screenshots/screenshot3.png" - - ".catalog/screenshots/screenshot1.png" - - ".catalog/screenshots/screenshot2.png" -icon: "nearby_files_10px.png" diff --git a/applications/GPIO/noptel_lrf_sampler/README.md b/applications/GPIO/noptel_lrf_sampler/README.md deleted file mode 100644 index be0d0d17a..000000000 --- a/applications/GPIO/noptel_lrf_sampler/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![noptel_lrf_sampler](https://catalog.flipperzero.one/application/noptel_lrf_sampler/widget)](https://catalog.flipperzero.one/application/noptel_lrf_sampler/page) \ No newline at end of file diff --git a/applications/GPIO/noptel_lrf_sampler/manifest.yml b/applications/GPIO/noptel_lrf_sampler/manifest.yml deleted file mode 100644 index 80fa367ef..000000000 --- a/applications/GPIO/noptel_lrf_sampler/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Giraut/flipper_zero_noptel_lrf_sampler - commit_sha: 6b78ca9018d64372db6ca4af2831eda7b57526a7 -short_description: Noptel LRF rangefinder sampler -description: "Noptel LRF rangefinder sampler app for the Flipper Zero" -changelog: "@Changelog.md" -screenshots: - - screenshots/0-sample_buffering.png - - screenshots/1-sample_cmm.png - - screenshots/2-lrf_information.png - - screenshots/3-laser_testing.png - - screenshots/4-usb_serial_passthrough1.png - - screenshots/5-usb_serial_passthrough2.png - - screenshots/6-splash_version.png - - screenshots/7-gpio_pin_connections.png - - screenshots/8-save_lrf_diagnostic.png - - screenshots/9-configuration_menu.png diff --git a/applications/GPIO/nrf24channelscanner/README.md b/applications/GPIO/nrf24channelscanner/README.md deleted file mode 100644 index 741f08d7e..000000000 --- a/applications/GPIO/nrf24channelscanner/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![nrf24channelscanner](https://catalog.flipperzero.one/application/nrf24channelscanner/widget)](https://catalog.flipperzero.one/application/nrf24channelscanner/page) \ No newline at end of file diff --git a/applications/GPIO/nrf24channelscanner/manifest.yml b/applications/GPIO/nrf24channelscanner/manifest.yml deleted file mode 100644 index a8b7b5c0e..000000000 --- a/applications/GPIO/nrf24channelscanner/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/htotoo/NRF24ChannelScanner - commit_sha: 6bd1a9362a22d580a3ec1e2490cea4eab1103d6b - subdir: NRF24ChannelScanner -category: GPIO -short_description: | - Scanning channels for usage with NRF24 -description: | - Application for scanning channels for usage data with NRF24 module and Flipper zero -changelog: "v1.3 - Added infinite scan option, and 5V auto on for some modules" -author: "@htotoo" -screenshots: - - "./.flipcorg/gallery/screen_open.png" - - "./.flipcorg/gallery/screen1.png" - diff --git a/applications/GPIO/pokemon/README.md b/applications/GPIO/pokemon/README.md deleted file mode 100644 index 505672cc9..000000000 --- a/applications/GPIO/pokemon/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![pokemon](https://catalog.flipperzero.one/application/pokemon/widget)](https://catalog.flipperzero.one/application/pokemon/page) \ No newline at end of file diff --git a/applications/GPIO/pokemon/manifest.yml b/applications/GPIO/pokemon/manifest.yml deleted file mode 100644 index d36e18130..000000000 --- a/applications/GPIO/pokemon/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/kbembedded/Flipper-Zero-Game-Boy-Pokemon-Trading - commit_sha: 8769074c727ef3fa2da83e30daaf1aa964349c7e -description: "@README_catalog.md" -changelog: "@changelog.md" -screenshots: - - ".flipcorg/gallery/1.png" - - ".flipcorg/gallery/2.png" - - ".flipcorg/gallery/3.png" - - ".flipcorg/gallery/4.png" - - ".flipcorg/gallery/5.png" - - ".flipcorg/gallery/6.png" diff --git a/applications/GPIO/radar_scanner/README.md b/applications/GPIO/radar_scanner/README.md deleted file mode 100644 index 8cc9a62c9..000000000 --- a/applications/GPIO/radar_scanner/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![radar_scanner](https://catalog.flipperzero.one/application/radar_scanner/widget)](https://catalog.flipperzero.one/application/radar_scanner/page) \ No newline at end of file diff --git a/applications/GPIO/radar_scanner/manifest.yml b/applications/GPIO/radar_scanner/manifest.yml deleted file mode 100644 index 55d8a7ec6..000000000 --- a/applications/GPIO/radar_scanner/manifest.yml +++ /dev/null @@ -1,39 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/MatthewKuKanich/flipper-radar.git - commit_sha: 1c1dc75dcec0acb79ee7445192735e2c72fa81a6 -id: "radar_scanner" -category: "GPIO" -short_description: "Microwave Radar Scanner" -description: | - The Flipper Zero Radar Scanner is an application designed for the Flipper Zeros GPIO capabilities, utilizing the RCWL-0516 Microwave Radar module to detect the presence and movement of living beings or people. This powerful radar module is capable of detecting movement at a range of approximately 8 meters, depending on the environment, and can even detect humans through walls, ceilings, and floors up to 5-6 meters away. - Features - Easy Hardware Setup- Connect the RCWL-0516 module to your Flipper Zero by supplying 5 volts to the VIN pin with ground connected. The OUT pin of the module should be connected to Pin 7 on the Flipper Zero. Be mindful of 5v and GND as reversing these will damage the radar module. - Bi-Directional Detection- The RCWL-0516 module is bi-directional, meaning it can detect movement from both the front and back sides. The front side with components is the primary detection side and should be oriented away from you. You can modify the detection range by adding metal shielding to focus detection where the Flipper is pointing. - Adjustable Sensitivity- If the sensitivity is too high, you can solder a resistor to the modules pad to reduce it, allowing you to fine-tune the detection sensitivity to your needs. - User-Friendly Interface- The app starts in an inactive or standby state. Press the OK button to activate it. The Flipper display will show Active, and the app will begin monitoring for movement. - Auto 5v - No need to manually turn on and off GPIO 5v - Real-Time Feedback- - When movement is detected, the text No presence will change to Presence detected. - An alarm will sound to alert you. - The LED will change from green (clear) to red (detected). - The Flipper will vibrate twice to notify you. - - Muted Mode- Press the Down button to enter muted mode. In this mode, detection still triggers text changes, LED status, and vibrations, but there is no sound. You can toggle this mode on and off. - - Pause and Resume- Press the OK button to pause detection and return the Flipper to standby mode. Press it again to resume monitoring for movement. - - Alt-mode- Use without making a module! Simply buy and RCWL-0516 radar unit and solder the headers, thats it! In app press the right key to change to the alternate pinout. - - Note- - The range and detection capabilities may vary depending on environmental factors. - Experiment with sensitivity adjustments and metal shielding to optimize detection for your specific use case. - Be aware of privacy and legal considerations when using radar-based detection systems. - Enjoy your Flipper Zero Radar Scanner and explore its various applications! -changelog: "v2.0 - Big update" -author: "@MatthewKuKanich" -screenshots: - - "./screenshots/flp0.png" - - "./screenshots/flp1.png" - - "./screenshots/flp2.png" diff --git a/applications/GPIO/radsens/README.md b/applications/GPIO/radsens/README.md deleted file mode 100644 index c8478e070..000000000 --- a/applications/GPIO/radsens/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![radsens](https://catalog.flipperzero.one/application/radsens/widget)](https://catalog.flipperzero.one/application/radsens/page) \ No newline at end of file diff --git a/applications/GPIO/radsens/manifest.yml b/applications/GPIO/radsens/manifest.yml deleted file mode 100644 index 5c34a30b5..000000000 --- a/applications/GPIO/radsens/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/sionyx/flipper_radsens.git - commit_sha: 23f7b6ea46d6e670195db1bc40a63da4e5be54ef -description: "App for RadSense radiation measurement module by ClimateGuard" -short_description: "App for RadSens module" -changelog: "v1.0: First release" -author: "@sionyx" -screenshots: - - "./images/meas_mode.png" - - "./images/plot_mode.png" diff --git a/applications/GPIO/sd_spi_app/README.md b/applications/GPIO/sd_spi_app/README.md deleted file mode 100644 index d5957ac82..000000000 --- a/applications/GPIO/sd_spi_app/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![sd_spi_app](https://catalog.flipperzero.one/application/sd_spi_app/widget)](https://catalog.flipperzero.one/application/sd_spi_app/page) \ No newline at end of file diff --git a/applications/GPIO/sd_spi_app/manifest.yml b/applications/GPIO/sd_spi_app/manifest.yml deleted file mode 100644 index 77dc30f5c..000000000 --- a/applications/GPIO/sd_spi_app/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Gl1tchub/Flipperzero-SD-SPI.git - commit_sha: afed9816e5c1fae868e7267c9ad5c665d2372ab8 - subdir: sd_spi -description: "Lock and Unlock SD card / Micro SD card through SPI protocol." -version: "0.5" -changelog: "latest API support" -author: "Gl1tchub" -screenshots: - - screenshots/flp0.png - - screenshots/flp1.png - - screenshots/flp2.png - - screenshots/flp3.png diff --git a/applications/GPIO/servotester/README.md b/applications/GPIO/servotester/README.md deleted file mode 100644 index c513ddc4c..000000000 --- a/applications/GPIO/servotester/README.md +++ /dev/null @@ -1 +0,0 @@ -Simple servo tester application with PMW output on pin A7. diff --git a/applications/GPIO/servotester/manifest.yml b/applications/GPIO/servotester/manifest.yml deleted file mode 100644 index 462553b5f..000000000 --- a/applications/GPIO/servotester/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/ThunderFly-aerospace/flipper-servotester.git - commit_sha: 0b89aa97899be7a5592493a68c8a5c19bc6d05d6 - subdir: servotester -description: "../@README.md" -changelog: "../@changelog.md" -screenshots: - - "./assets/Servo_Tester_Auto_mode.png" - - "./assets/Servo_Tester_Center_mode.png" - - "./assets/Servo_Tester_Manual_mode.png" diff --git a/applications/GPIO/servotesterapp/README.md b/applications/GPIO/servotesterapp/README.md deleted file mode 100644 index 018dc1e04..000000000 --- a/applications/GPIO/servotesterapp/README.md +++ /dev/null @@ -1 +0,0 @@ -An alternative servo tester app with a different logic than its `servotester` predecessor variant. diff --git a/applications/GPIO/servotesterapp/manifest.yml b/applications/GPIO/servotesterapp/manifest.yml deleted file mode 100644 index 073ba2bc6..000000000 --- a/applications/GPIO/servotesterapp/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/kaklik/ServoTesterApp.git - commit_sha: 7f3eb5fe339f30c72b893c39d5de1374dbb44625 -description: "@README.md" -changelog: "@changelog.md" -screenshots: - - "./ServoTesterApp1.png" - - "./ServoTesterApp2.png" diff --git a/applications/GPIO/signal_generator/README.md b/applications/GPIO/signal_generator/README.md deleted file mode 100644 index f6dd753fd..000000000 --- a/applications/GPIO/signal_generator/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![signal_generator](https://catalog.flipperzero.one/application/signal_generator/widget)](https://catalog.flipperzero.one/application/signal_generator/page) \ No newline at end of file diff --git a/applications/GPIO/signal_generator/manifest.yml b/applications/GPIO/signal_generator/manifest.yml deleted file mode 100644 index 1077afeb5..000000000 --- a/applications/GPIO/signal_generator/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: b1dca2058d92504562c40fca9840bcd95843c698 - subdir: signal_generator -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@nminaylov" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" diff --git a/applications/GPIO/simultaneous_rfid_reader/README.md b/applications/GPIO/simultaneous_rfid_reader/README.md deleted file mode 100644 index 23a101f99..000000000 --- a/applications/GPIO/simultaneous_rfid_reader/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![simultaneous_rfid_reader](https://catalog.flipperzero.one/application/simultaneous_rfid_reader/widget)](https://catalog.flipperzero.one/application/simultaneous_rfid_reader/page) \ No newline at end of file diff --git a/applications/GPIO/simultaneous_rfid_reader/manifest.yml b/applications/GPIO/simultaneous_rfid_reader/manifest.yml deleted file mode 100644 index 6a0cf76d8..000000000 --- a/applications/GPIO/simultaneous_rfid_reader/manifest.yml +++ /dev/null @@ -1,28 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/haffnerriley/Simultaneous-UHF-RFID-FlipperZero.git - commit_sha: 0a314e419ea2a8af6023f7e85a3ec197fa7b125b - subdir: simultaneous_rfid_reader -description: | - This app is designed to - work with the M6e Nano, - M7E Hecto, or YRM100 - UHF RFID Readers and the - Flipper Zero. - This app supports reading - up to 150 tags per second, - writing to tags (EPC, TID, - Reserved, and User Memory - Banks), viewing all tag - information, saving tags, - and more! -changelog: "@.catalog/CHANGELOG.md" -author: "@Haffnerriley" -screenshots: - - ".catalog/screenshots/uhf-rfid-m6e-main-menu.png" - - ".catalog/screenshots/read-screen.png" - - ".catalog/screenshots/write-screen.png" - - ".catalog/screenshots/tag-data-screen.png" - - ".catalog/screenshots/lock-screen.png" - - ".catalog/screenshots/kill-screen.png" \ No newline at end of file diff --git a/applications/GPIO/sio2flip/README.md b/applications/GPIO/sio2flip/README.md deleted file mode 100644 index 239952e84..000000000 --- a/applications/GPIO/sio2flip/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![sio2flip](https://catalog.flipperzero.one/application/sio2flip/widget)](https://catalog.flipperzero.one/application/sio2flip/page) \ No newline at end of file diff --git a/applications/GPIO/sio2flip/manifest.yml b/applications/GPIO/sio2flip/manifest.yml deleted file mode 100644 index e7f3e0303..000000000 --- a/applications/GPIO/sio2flip/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/cepetr/sio2flip.git - commit_sha: a3df8a032e132f0a07a396cb39d37b3ed49343d0 -description: "@description.md" -changelog: "@CHANGELOG.md" -screenshots: - - "./screenshots/screenshot_fdd.png" - - "./screenshots/screenshot_xex_loader.png" - - "./screenshots/screenshot_app_config.png" - - "./screenshots/screenshot_fdd_config.png" \ No newline at end of file diff --git a/applications/GPIO/spi_mem_manager/README.md b/applications/GPIO/spi_mem_manager/README.md deleted file mode 100644 index 753e06b2b..000000000 --- a/applications/GPIO/spi_mem_manager/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![spi_mem_manager](https://catalog.flipperzero.one/application/spi_mem_manager/widget)](https://catalog.flipperzero.one/application/spi_mem_manager/page) \ No newline at end of file diff --git a/applications/GPIO/spi_mem_manager/manifest.yml b/applications/GPIO/spi_mem_manager/manifest.yml deleted file mode 100644 index 8a8e4ab05..000000000 --- a/applications/GPIO/spi_mem_manager/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: b791dea234f855155027bb46215dc60f3ddeb243 - subdir: spi_mem_manager -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@drunkbatya" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" - - ".catalog/screenshots/4.png" diff --git a/applications/GPIO/stepcounter/README.md b/applications/GPIO/stepcounter/README.md deleted file mode 100644 index b516fac9e..000000000 --- a/applications/GPIO/stepcounter/README.md +++ /dev/null @@ -1 +0,0 @@ -# Status diff --git a/applications/GPIO/stepcounter/manifest.yml b/applications/GPIO/stepcounter/manifest.yml deleted file mode 100644 index 2bde345a9..000000000 --- a/applications/GPIO/stepcounter/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/grugnoymeme/flipperzero-StepCounter-fap.git - commit_sha: 2b6976e0f6b88d195d1aebe1d8f9d07c390d02ce -id: "stepcounter" -category: "GPIO" -short_description: "Step Counter/Pedometer using Memsic2125 module." -description: "./docs/README.md" -changelog: "v1.0 - Initial release" -author: "47lecoste a.k.a. grugnoymeme" -screenshots: - - "./images/menu_view.png" - - "./images/main_screen.png" diff --git a/applications/GPIO/swd_probe/README.md b/applications/GPIO/swd_probe/README.md deleted file mode 100644 index e13aa2427..000000000 --- a/applications/GPIO/swd_probe/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![swd_probe](https://catalog.flipperzero.one/application/swd_probe/widget)](https://catalog.flipperzero.one/application/swd_probe/page) \ No newline at end of file diff --git a/applications/GPIO/swd_probe/manifest.yml b/applications/GPIO/swd_probe/manifest.yml deleted file mode 100644 index c7d7b2e03..000000000 --- a/applications/GPIO/swd_probe/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/swd_probe -description: "ARM SWD (Single Wire Debug) Probe" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3 - Latest API support, v1.4 - Sync with latest version" -author: "@g3gg0 & (fixes by @xMasterX)" -screenshots: - - "./img/1.png" diff --git a/applications/GPIO/tesla_mod/manifest.yml b/applications/GPIO/tesla_mod/manifest.yml new file mode 100644 index 000000000..d37f555c3 --- /dev/null +++ b/applications/GPIO/tesla_mod/manifest.yml @@ -0,0 +1,12 @@ +sourcecode: + type: git + location: + origin: https://github.com/hypery11/flipper-tesla-fsd.git + commit_sha: 7eabefe7d8aeca6032b95308dbbb448e2bcf3f80 + +short_description: Tesla CAN bus toolkit — FSD region-gate bypass, nag killer, BMS dashboard, extras. Requires CAN Add-On. +description: "@README.md" +changelog: "@changelog.md" +screenshots: + - screenshots/main_menu.png + - screenshots/fsd_running.png diff --git a/applications/GPIO/uart_terminal/README.md b/applications/GPIO/uart_terminal/README.md deleted file mode 100644 index 4010559c9..000000000 --- a/applications/GPIO/uart_terminal/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![uart_terminal](https://catalog.flipperzero.one/application/uart_terminal/widget)](https://catalog.flipperzero.one/application/uart_terminal/page) \ No newline at end of file diff --git a/applications/GPIO/uart_terminal/manifest.yml b/applications/GPIO/uart_terminal/manifest.yml deleted file mode 100644 index 4e66a5a3f..000000000 --- a/applications/GPIO/uart_terminal/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/uart_terminal -description: "@README-catalog.md" -changelog: "v1.0 - Initial release, v1.1 - Description update, v1.2 - More baudrates, v1.3 - HEX Mode, v1.4 - Fixes for latest API, v1.5 - Sync updates and latest API support, v1.6 - Fixes and improvements, v1.7 - Sync with latest version" -author: "@cool4uma & @rnadyrshin & (some fixes by @xMasterX)" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/GPIO/ublox/README.md b/applications/GPIO/ublox/README.md deleted file mode 100644 index a2350f381..000000000 --- a/applications/GPIO/ublox/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![ublox](https://catalog.flipperzero.one/application/ublox/widget)](https://catalog.flipperzero.one/application/ublox/page) \ No newline at end of file diff --git a/applications/GPIO/ublox/manifest.yml b/applications/GPIO/ublox/manifest.yml deleted file mode 100644 index 6ea42e95d..000000000 --- a/applications/GPIO/ublox/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/liamhays/ublox.git - commit_sha: 1f47a5a8badd74a1d079eb7f0d1b10fb701e5fac -description: "@apphub_readme.md" -changelog: "@changelog.md" -screenshots: - - screenshots/menu.png - - screenshots/data_display_handheld.png - - screenshots/data_display_car.png - - screenshots/sync_time.png diff --git a/applications/GPIO/uhf_rfid/README.md b/applications/GPIO/uhf_rfid/README.md deleted file mode 100644 index 52a80d263..000000000 --- a/applications/GPIO/uhf_rfid/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![uhf_rfid](https://catalog.flipperzero.one/application/uhf_rfid/widget)](https://catalog.flipperzero.one/application/uhf_rfid/page) \ No newline at end of file diff --git a/applications/GPIO/uhf_rfid/manifest.yml b/applications/GPIO/uhf_rfid/manifest.yml deleted file mode 100644 index 02f79d508..000000000 --- a/applications/GPIO/uhf_rfid/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/uhf_rfid -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - - "./catalog/screenshots/2.png" - - "./catalog/screenshots/3.png" - - "./catalog/screenshots/4.png" - diff --git a/applications/GPIO/unitemp/README.md b/applications/GPIO/unitemp/README.md deleted file mode 100644 index c9d905164..000000000 --- a/applications/GPIO/unitemp/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![unitemp](https://catalog.flipperzero.one/application/unitemp/widget)](https://catalog.flipperzero.one/application/unitemp/page) \ No newline at end of file diff --git a/applications/GPIO/unitemp/manifest.yml b/applications/GPIO/unitemp/manifest.yml deleted file mode 100644 index ca6517cf2..000000000 --- a/applications/GPIO/unitemp/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/quen0n/unitemp-flipperzero.git - commit_sha: ee18e81f0fe4e1a9a0c42fcb5125a61a6db9b839 -category: "GPIO" -description: "@README_CATALOG.md" -changelog: "@CHANGELOG.md" -version: "2.0" -screenshots: - - ".github/images/screenshots/1.png" - - ".github/images/screenshots/2.png" - - ".github/images/screenshots/3.png" - - ".github/images/screenshots/4.png" - - ".github/images/screenshots/5.png" - - ".github/images/screenshots/6.png" - - ".github/images/screenshots/7.png" - - ".github/images/screenshots/8.png" - - ".github/images/screenshots/9.png" diff --git a/applications/GPIO/usping/README.md b/applications/GPIO/usping/README.md deleted file mode 100644 index faa5385ef..000000000 --- a/applications/GPIO/usping/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![usping](https://catalog.flipperzero.one/application/usping/widget)](https://catalog.flipperzero.one/application/usping/page) \ No newline at end of file diff --git a/applications/GPIO/usping/manifest.yml b/applications/GPIO/usping/manifest.yml deleted file mode 100644 index 5ffadd25f..000000000 --- a/applications/GPIO/usping/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/usping -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - - "./catalog/screenshots/2.png" - diff --git a/applications/GPIO/uv_meter_as7331/manifest.yml b/applications/GPIO/uv_meter_as7331/manifest.yml deleted file mode 100644 index c96df6bd1..000000000 --- a/applications/GPIO/uv_meter_as7331/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/michaelbaisch/uv_meter.git - commit_sha: 4c32e20ca842201191fb77ded98b1c0b8dbc81f0 -description: "@DESCRIPTION.md" -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/data_1.png - - screenshots/data_2.png - - screenshots/wiring.png - - screenshots/settings.png diff --git a/applications/GPIO/veml7700luxmeter/manifest.yml b/applications/GPIO/veml7700luxmeter/manifest.yml deleted file mode 100644 index 977bb8bc6..000000000 --- a/applications/GPIO/veml7700luxmeter/manifest.yml +++ /dev/null @@ -1,22 +0,0 @@ -id: "veml7700luxmeter" -name: "VEML7700 Lux Meter" -author: "@Dr.Mosfet" -category: "GPIO" -version: "1.1" -targets: - - "all" -sourcecode: - type: git - location: - origin: https://github.com/kamylwnb/Flipper-zero-app-VEML7700 - commit_sha: f6de3e24b0fc9c21f0db008b457b82b3d45b5a59 - subdir: . -short_description: "Lux meter app using VEML7700 sensor for Flipper Zero" -description: | - The VEML7700 Lux Meter app measures ambient light in lux using the VEML7700 sensor via I2C and displays the value on the Flipper Zero screen. - Requires a VEML7700 sensor connected via I2C to the Flipper Zero GPIO pins. -changelog: "docs/CHANGELOG.md" -screenshots: - - screenshots/1.png - - screenshots/2.png - - screenshots/3.png diff --git a/applications/GPIO/vgm_air_mouse/README.md b/applications/GPIO/vgm_air_mouse/README.md deleted file mode 100644 index d2d8361c3..000000000 --- a/applications/GPIO/vgm_air_mouse/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![vgm_air_mouse](https://catalog.flipperzero.one/application/vgm_air_mouse/widget)](https://catalog.flipperzero.one/application/vgm_air_mouse/page) \ No newline at end of file diff --git a/applications/GPIO/vgm_air_mouse/manifest.yml b/applications/GPIO/vgm_air_mouse/manifest.yml deleted file mode 100644 index 20026ee8d..000000000 --- a/applications/GPIO/vgm_air_mouse/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: b791dea234f855155027bb46215dc60f3ddeb243 - subdir: air_mouse -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@nminaylov" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" diff --git a/applications/GPIO/vgm_game_remote/README.md b/applications/GPIO/vgm_game_remote/README.md deleted file mode 100644 index 52d1795d1..000000000 --- a/applications/GPIO/vgm_game_remote/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![vgm_game_remote](https://catalog.flipperzero.one/application/vgm_game_remote/widget)](https://catalog.flipperzero.one/application/vgm_game_remote/page) \ No newline at end of file diff --git a/applications/GPIO/vgm_game_remote/manifest.yml b/applications/GPIO/vgm_game_remote/manifest.yml deleted file mode 100644 index ba329bb8c..000000000 --- a/applications/GPIO/vgm_game_remote/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/pico-game-engine.git - commit_sha: 7b13e1d2724b7c4fcb22ab0a77313fe5bdc1d2e4 - subdir: src/FlipperZeroApp -short_description: "Companion app for the VGM Game Engine" -description: "This app allows you to use your Flipper Zero's d-pad as input in games created with the VGM Game Engine." -changelog: "v1.0: Initial release v1.1: Fixed UART button input" -author: "JBlanked" -name: "[VGM] Game Remote" -version: "1.1" -id: "vgm_game_remote" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/main.png" \ No newline at end of file diff --git a/applications/GPIO/web_crawler/README.md b/applications/GPIO/web_crawler/README.md deleted file mode 100644 index c53e4ffdb..000000000 --- a/applications/GPIO/web_crawler/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![web_crawler](https://catalog.flipperzero.one/application/web_crawler/widget)](https://catalog.flipperzero.one/application/web_crawler/page) \ No newline at end of file diff --git a/applications/GPIO/web_crawler/manifest.yml b/applications/GPIO/web_crawler/manifest.yml deleted file mode 100644 index 4c7a7c46e..000000000 --- a/applications/GPIO/web_crawler/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/WebCrawler-FlipperZero.git - commit_sha: 0c1115456b10f34cea23cc6640241268b111d90d -short_description: "Browse the web, fetch API data, and more." -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "JBlanked" -name: "Web Crawler" -version: "1.0.1" -id: "web_crawler" -category: "GPIO" -targets: ['all'] -icon: "app.png" -screenshots: - - "assets/01-request.png" - - "assets/02-main.png" - - "assets/03-path.png" \ No newline at end of file diff --git a/applications/GPIO/wiegand_reader/README.md b/applications/GPIO/wiegand_reader/README.md deleted file mode 100644 index 36aa1e859..000000000 --- a/applications/GPIO/wiegand_reader/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![wiegand_reader](https://catalog.flipperzero.one/application/wiegand_reader/widget)](https://catalog.flipperzero.one/application/wiegand_reader/page) \ No newline at end of file diff --git a/applications/GPIO/wiegand_reader/manifest.yml b/applications/GPIO/wiegand_reader/manifest.yml deleted file mode 100644 index 126368c50..000000000 --- a/applications/GPIO/wiegand_reader/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jamisonderek/flipper-zero-tutorials - commit_sha: ef5dfb57fbb559fe760c15dcfc6c4b6abbd19b15 - subdir: gpio/wiegand -category: "GPIO" -short_description: "Application for reading and sending Wiegand signals. Connect D0, D1, GND wires to Flipper Zero to read signals." -id: "wiegand_reader" -description: "@docs/README.md" -changelog: "@docs/CHANGELOG.md" -author: "Derek Jamison (@CodeAllNight)" -version: "1.4" -screenshots: - - "docs/image0.png" - - "docs/image1.png" - - "docs/image2.png" - - "docs/image3.png" - - "docs/image4.png" diff --git a/applications/GPIO/wire_tester/README.md b/applications/GPIO/wire_tester/README.md deleted file mode 100644 index 257fe856b..000000000 --- a/applications/GPIO/wire_tester/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![wire_tester](https://catalog.flipperzero.one/application/wire_tester/widget)](https://catalog.flipperzero.one/application/wire_tester/page) \ No newline at end of file diff --git a/applications/GPIO/wire_tester/manifest.yml b/applications/GPIO/wire_tester/manifest.yml deleted file mode 100644 index 73c6fc1ce..000000000 --- a/applications/GPIO/wire_tester/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/wire_tester -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - diff --git a/applications/GPIO/ws2812b_tester_app/README.md b/applications/GPIO/ws2812b_tester_app/README.md deleted file mode 100644 index 3b9972d57..000000000 --- a/applications/GPIO/ws2812b_tester_app/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![ws2812b_tester_app](https://catalog.flipperzero.one/application/ws2812b_tester_app/widget)](https://catalog.flipperzero.one/application/ws2812b_tester_app/page) \ No newline at end of file diff --git a/applications/GPIO/ws2812b_tester_app/manifest.yml b/applications/GPIO/ws2812b_tester_app/manifest.yml deleted file mode 100644 index 3d0f7e87b..000000000 --- a/applications/GPIO/ws2812b_tester_app/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/ws2812b_tester -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - - "./catalog/screenshots/2.png" - - "./catalog/screenshots/3.png" - diff --git a/applications/GPIO/zeitraffer/README.md b/applications/GPIO/zeitraffer/README.md deleted file mode 100644 index 795a56597..000000000 --- a/applications/GPIO/zeitraffer/README.md +++ /dev/null @@ -1,27 +0,0 @@ -##Simple timelapse/intervalometer app for Flipper Zero, works via GPIO pins. - -[![zeitraffer](https://catalog.flipperzero.one/application/zeitraffer/widget)](https://catalog.flipperzero.one/application/zeitraffer/page) - -## Control: - - Up and down - time. - - Left and right - number of frames - - Long press arrows - ±10 frames/seconds - - OK - start/pause - - Long press OK - turn on/off the backlight - - Back - reset - - Long press back - exit - -1 frame - simple timer, 0 frames - infinite mode, -1 frames - BULB mode - -When the timer is running, all buttons are blocked except OK. - -## What you need: - - two EL817C optocouplers - - pin header connector 1x3 2,54mm male - - some wire - - heat shrink - - camera remote connector - -## How to assemble -Take optocouplers, connect according to the scheme: https://theageoflove.ru/uploads/2022/11/camera_cable_en.jpg -Camera pinout can be found here: https://www.doc-diy.net/photo/remote_pinout/ diff --git a/applications/GPIO/zeitraffer/manifest.yml b/applications/GPIO/zeitraffer/manifest.yml deleted file mode 100644 index 07c1c1e48..000000000 --- a/applications/GPIO/zeitraffer/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/theageoflove/flipperzero-zeitraffer.git - commit_sha: 20dcb663bc23e24dce16b8d68398979a69514ed5 -description: "@./.catalog/README.md" -changelog: "v1.2 - Compatibility to API 65.0" -author: "Aurelius Rosenbaum" -version: "1.2" -screenshots: - - "./.catalog/001.png" - - "./.catalog/002.png" - - "./.catalog/003.png" - - "./.catalog/004.png" diff --git a/applications/Games/.gitkeep b/applications/Games/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/Games/4inrow/README.md b/applications/Games/4inrow/README.md deleted file mode 100644 index 1875d221c..000000000 --- a/applications/Games/4inrow/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![4inrow](https://catalog.flipperzero.one/application/4inrow/widget)](https://catalog.flipperzero.one/application/4inrow/page) \ No newline at end of file diff --git a/applications/Games/4inrow/manifest.yml b/applications/Games/4inrow/manifest.yml deleted file mode 100644 index 3197329ce..000000000 --- a/applications/Games/4inrow/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/4inrow_game -description: "4 in row Game" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "leo-need-more-coffee" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Games/air_arkanoid/README.md b/applications/Games/air_arkanoid/README.md deleted file mode 100644 index 7e392f7db..000000000 --- a/applications/Games/air_arkanoid/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![air_arkanoid](https://catalog.flipperzero.one/application/air_arkanoid/widget)](https://catalog.flipperzero.one/application/air_arkanoid/page) diff --git a/applications/Games/air_arkanoid/manifest.yml b/applications/Games/air_arkanoid/manifest.yml deleted file mode 100644 index 036889661..000000000 --- a/applications/Games/air_arkanoid/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: 128c33a745761ace9e7686582d9d57c4efcc5edd - subdir: air_arkanoid -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@DrZlo13" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" diff --git a/applications/Games/air_labyrinth/README.md b/applications/Games/air_labyrinth/README.md deleted file mode 100644 index 84e483e4a..000000000 --- a/applications/Games/air_labyrinth/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Air Labyrinth - -This is a simple game where you have to navigate a ball through a maze. The game is controlled by tilting the Flipper Zero with a Video Game Module attached. You can also play the game using the Flipper Zero's d-pad. - -## How to play - -1. Attach the video game module to the Flipper Zero. -2. Open the Air Labyrinth game (`Apps`/`Games`/`Air Labyrinth`). -3. Tilt the Flipper Zero to move the ball through the maze. - -## Version history -- 0.1.0 - Initial release by @CodeAllNight (https://youtube.com/@MrDerekJamison/about) - -## Other - -This game was made based on the [air_arkanoid](https://github.com/flipperdevices/flipperzero-good-faps/tree/dev/air_arkanoid) and [flipperzero-game-engine-example](https://github.com/flipperdevices/flipperzero-game-engine-example) projects. Thanks to the authors of these projects for the inspiration and the code. \ No newline at end of file diff --git a/applications/Games/air_labyrinth/manifest.yml b/applications/Games/air_labyrinth/manifest.yml deleted file mode 100644 index 95466d606..000000000 --- a/applications/Games/air_labyrinth/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jamisonderek/flipper-zero-tutorials.git - commit_sha: a54146a4af2a24869bc8950ad0941ccde103a275 - subdir: vgm/apps/air_labyrinth -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@CodeAllNight (MrDerekJamison)" -screenshots: - - ".catalog/screenshots/1.png" - diff --git a/applications/Games/apple_grabber/README.md b/applications/Games/apple_grabber/README.md deleted file mode 100644 index 7edab4461..000000000 --- a/applications/Games/apple_grabber/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![apple_grabber](https://catalog.flipperzero.one/application/apple_grabber/widget)](https://catalog.flipperzero.one/application/apple_grabber/page) \ No newline at end of file diff --git a/applications/Games/apple_grabber/manifest.yml b/applications/Games/apple_grabber/manifest.yml deleted file mode 100644 index 3c79cfdf3..000000000 --- a/applications/Games/apple_grabber/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/d7d8/apple-grabber.git - commit_sha: c662ff193ac361ed602670b688f33fa622e9e71a -short_description: Apple grabber game, default mode is vertical -description: "@README.md" -changelog: "@changelog.md" -screenshots: - - screenshots/Game.png - - screenshots/Menu.png \ No newline at end of file diff --git a/applications/Games/arddrivin/manifest.yml b/applications/Games/arddrivin/manifest.yml deleted file mode 100644 index 6db583ad9..000000000 --- a/applications/Games/arddrivin/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/apfxtech/FlipperDrivin.git - commit_sha: 0baada353f4d6b8bcc181a493d8cb52412b6a472 - -short_description: Race game ported to Flipper Zero. -description: "@APPSTORE.md" -changelog: "@CHANGELOG.md" -screenshots: - - "package/screenshots/1.png" - - "package/screenshots/2.png" - - "package/screenshots/3.png" - - "package/screenshots/4.png" \ No newline at end of file diff --git a/applications/Games/ardugolf/manifest.yml b/applications/Games/ardugolf/manifest.yml deleted file mode 100644 index d888f8301..000000000 --- a/applications/Games/ardugolf/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/apfxtech/FlipperGolf.git - commit_sha: a378ab82cf0b2633353190fadb5c901b29583f9c - -short_description: 3D mini-golf game ported to Flipper Zero. -description: "@APPSTORE.md" -changelog: "@CHANGELOG.md" -screenshots: - - "package/screenshots/screen1.png" - - "package/screenshots/screen2.png" - - "package/screenshots/screen3.png" - - "package/screenshots/screen4.png" - - "package/screenshots/screen5.png" - - "package/screenshots/screen6.png" - - "package/screenshots/screen7.png" \ No newline at end of file diff --git a/applications/Games/arduventure/manifest.yml b/applications/Games/arduventure/manifest.yml deleted file mode 100644 index 7bab48214..000000000 --- a/applications/Games/arduventure/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/apfxtech/FlipperArduventure.git - commit_sha: d58f3e85f9894be43cbab24aa97bcbe5f6a14f37 - -short_description: A top-down action adventure ported to Flipper Zero. -description: "@APPSTORE.md" -changelog: "@CHANGELOG.md" -screenshots: - - "package/screenshots/screen1.png" - - "package/screenshots/screen2.png" - - "package/screenshots/screen3.png" - - "package/screenshots/screen4.png" - - "package/screenshots/screen5.png" - - "package/screenshots/screen6.png" - - "package/screenshots/screen7.png" - - "package/screenshots/screen8.png" \ No newline at end of file diff --git a/applications/Games/arkanoid/README.md b/applications/Games/arkanoid/README.md deleted file mode 100644 index a9f38de97..000000000 --- a/applications/Games/arkanoid/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![arkanoid](https://catalog.flipperzero.one/application/arkanoid/widget)](https://catalog.flipperzero.one/application/arkanoid/page) \ No newline at end of file diff --git a/applications/Games/arkanoid/manifest.yml b/applications/Games/arkanoid/manifest.yml deleted file mode 100644 index 0285fc11d..000000000 --- a/applications/Games/arkanoid/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/arkanoid -description: "Arkanoid Game" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@xMasterX & @gotnull" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/asteroids/README.md b/applications/Games/asteroids/README.md deleted file mode 100644 index 7da554399..000000000 --- a/applications/Games/asteroids/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![asteroids](https://catalog.flipperzero.one/application/asteroids/widget)](https://catalog.flipperzero.one/application/asteroids/page) \ No newline at end of file diff --git a/applications/Games/asteroids/manifest.yml b/applications/Games/asteroids/manifest.yml deleted file mode 100644 index 351d952a1..000000000 --- a/applications/Games/asteroids/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/SimplyMinimal/FlipperZero-Asteroids.git - commit_sha: c2eb6c8b14f65a97d6b8c09f623b5a122888db03 -description: "Classic Asteroids game with enhanced features including power-ups, high score system, auto-fire, haptic feedback, and LED effects" -changelog: "v3.4.0 - Enhanced version with auto rapid fire, power up system, high score system, haptic feedback, LED effects, pause functionality, and reverse thrusters" -author: "@SimplyMinimal" -screenshots: - - "./images/Asteroids-PowerUps.png" - - "./images/PauseScreen.png" - diff --git a/applications/Games/banana/README.md b/applications/Games/banana/README.md deleted file mode 100644 index f6f5668d7..000000000 --- a/applications/Games/banana/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![banana](https://catalog.flipperzero.one/application/banana/widget)](https://catalog.flipperzero.one/application/banana/page) \ No newline at end of file diff --git a/applications/Games/banana/manifest.yml b/applications/Games/banana/manifest.yml deleted file mode 100644 index eba0a3b6d..000000000 --- a/applications/Games/banana/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/DrEverr/FlipperApps.git - commit_sha: d8c17e5000a31c3088c6c0b85680f1748168d379 - subdir: banana -description: "README.md" -short_description: "Banana. Everyone loves banana." -changelog: "CHANGELOG.md" -author: "Marcin Sokołowski (@DrEverr)" -screenshots: - - "./screens/1.png" - - "./screens/2.png" \ No newline at end of file diff --git a/applications/Games/bomberduck/README.md b/applications/Games/bomberduck/README.md deleted file mode 100644 index 7d19f3369..000000000 --- a/applications/Games/bomberduck/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![bomberduck](https://catalog.flipperzero.one/application/bomberduck/widget)](https://catalog.flipperzero.one/application/bomberduck/page) \ No newline at end of file diff --git a/applications/Games/bomberduck/manifest.yml b/applications/Games/bomberduck/manifest.yml deleted file mode 100644 index 0a988cbb8..000000000 --- a/applications/Games/bomberduck/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/bomberduck -description: "Bomberduck(Bomberman) Game" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@leo-need-more-coffee & @xMasterX" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/bzzbzz/manifest.yml b/applications/Games/bzzbzz/manifest.yml deleted file mode 100644 index adf82e4b3..000000000 --- a/applications/Games/bzzbzz/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/ikiruneo/bzzbzz - commit_sha: 1ecda09b52e6171710a262f67d69c50be8e7548f - -short_description: Haptic rhythm-matching game -description: | - Haptic rhythm-matching game focusing on tactile feedback rather than visual cues. - - - The app generates a 5-step vibration sequence. - - Gaps between vibrations are randomized between 200, 500, and 800ms. - - Users must replicate the timing using the OK button. - - Accuracy is calculated based on timing offsets; a >=50% threshold is required to progress. - -changelog: "@changelog.md" - -screenshots: - - screenshots/screenshot1.png - - screenshots/screenshot2.png diff --git a/applications/Games/catacombs/manifest.yml b/applications/Games/catacombs/manifest.yml deleted file mode 100644 index 7d1bc380a..000000000 --- a/applications/Games/catacombs/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/apfxtech/FlipperCatacombs.git - commit_sha: b10be52c493d5d9eae26bf65bb59ec41813adea8 - -short_description: A first-person dungeon crawler ported to Flipper Zero. -description: "@APPSTORE.md" -changelog: "@CHANGELOG.md" -screenshots: - - "package/screenshots/screen1.png" - - "package/screenshots/screen2.png" - - "package/screenshots/screen3.png" - - "package/screenshots/screen4.png" - - "package/screenshots/screen5.png" - - "package/screenshots/screen6.png" \ No newline at end of file diff --git a/applications/Games/chess/README.md b/applications/Games/chess/README.md deleted file mode 100644 index af1b8d55b..000000000 --- a/applications/Games/chess/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![chess](https://catalog.flipperzero.one/application/chess/widget)](https://catalog.flipperzero.one/application/chess/page) \ No newline at end of file diff --git a/applications/Games/chess/manifest.yml b/applications/Games/chess/manifest.yml deleted file mode 100644 index 6741e6607..000000000 --- a/applications/Games/chess/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xtruan/flipper-chess.git - commit_sha: f850ffbc6d8ca9c9e12c3a2bab16d5cbb009365e -description: "How about a nice game of chess?" -changelog: "v1.12 - Update to fix illegal move bug" -author: "@xtruan" -screenshots: - - "./catalog/startscreen.png" - - "./catalog/menu.png" - - "./catalog/game2.png" - - "./catalog/game3.png" - - "./catalog/game4.png" - - "./catalog/game5.png" - - "./catalog/settings.png" diff --git a/applications/Games/citybloxx/README.md b/applications/Games/citybloxx/README.md deleted file mode 100644 index 9d40c8197..000000000 --- a/applications/Games/citybloxx/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![citybloxx](https://catalog.flipperzero.one/application/citybloxx/widget)](https://catalog.flipperzero.one/application/citybloxx/page) \ No newline at end of file diff --git a/applications/Games/citybloxx/manifest.yml b/applications/Games/citybloxx/manifest.yml deleted file mode 100644 index 3f5e39679..000000000 --- a/applications/Games/citybloxx/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Milk-Cool/fz-citybloxx.git - commit_sha: 2efc2ed6a9b461fb94f94d43ebd1f37ff3c2aabd -short_description: "A game based on City Bloxx" -description: "@README.md" -changelog: "v1.0 - First version" -author: "milk_cool" -screenshots: - - "./screenshots/1.png" diff --git a/applications/Games/color_guess/README.md b/applications/Games/color_guess/README.md deleted file mode 100644 index 8b886be7a..000000000 --- a/applications/Games/color_guess/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![color_guess](https://catalog.flipperzero.one/application/color_guess/widget)](https://catalog.flipperzero.one/application/color_guess/page) \ No newline at end of file diff --git a/applications/Games/color_guess/manifest.yml b/applications/Games/color_guess/manifest.yml deleted file mode 100644 index 684b3d7c0..000000000 --- a/applications/Games/color_guess/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/leedave/flipper-zero-color-guess - commit_sha: 448aac8416686eb43a4e54e9ee784243c32a0615 -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -author: "Leedave" -screenshots: - - "./screenshots/color_guess_1.png" - - "./screenshots/color_guess_2.png" - - "./screenshots/color_guess_3.png" diff --git a/applications/Games/countdown/README.md b/applications/Games/countdown/README.md deleted file mode 100644 index c5df7d3f4..000000000 --- a/applications/Games/countdown/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![countdown](https://catalog.flipperzero.one/application/countdown/widget)](https://catalog.flipperzero.one/application/countdown/page) \ No newline at end of file diff --git a/applications/Games/countdown/manifest.yml b/applications/Games/countdown/manifest.yml deleted file mode 100644 index c55bc36b4..000000000 --- a/applications/Games/countdown/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/sistemasorp/flipper-countdown.git - commit_sha: 4f60ab4c9b973dcdd2adc5dc496fcc7f13ec1371 - -id: countdown -name: "CountDown" -category: "Games" -author: "Oscar Rodriguez" -description: "@README.md" -short_description: "Solve target number from 6 numbers like the CountDown TV Show" -changelog: "@./docs/changelog.md" - - -screenshots: - - "screenshots/screenshot1.png" - - "screenshots/screenshot2.png" diff --git a/applications/Games/deadzone/README.md b/applications/Games/deadzone/README.md deleted file mode 100644 index 36c91dee1..000000000 --- a/applications/Games/deadzone/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![deadzone](https://catalog.flipperzero.one/application/deadzone/widget)](https://catalog.flipperzero.one/application/deadzone/page) \ No newline at end of file diff --git a/applications/Games/deadzone/manifest.yml b/applications/Games/deadzone/manifest.yml deleted file mode 100644 index 65ed48dd8..000000000 --- a/applications/Games/deadzone/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/retrooper/deadzone.git - commit_sha: 0b01b365e2d160ff951d8830b1c18fa26fc81837 -short_description: Fight through tough challenges, dodge enemy fire, and avoid the falling obstacles to survive! -description: "@README.md" -changelog: "v0.1 - Initial release, v0.2 Minor patches" -version: 0.2 -author: "@retrooper" -screenshots: - - "screenshots/flipper_screenshot_1.png" - - "screenshots/flipper_screenshot_2.png" - - "screenshots/flipper_screenshot_3.png" - diff --git a/applications/Games/dice_app/README.md b/applications/Games/dice_app/README.md deleted file mode 100644 index 53c3f8a15..000000000 --- a/applications/Games/dice_app/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![dice_app](https://catalog.flipperzero.one/application/dice_app/widget)](https://catalog.flipperzero.one/application/dice_app/page) \ No newline at end of file diff --git a/applications/Games/dice_app/manifest.yml b/applications/Games/dice_app/manifest.yml deleted file mode 100644 index 7a46ae7c8..000000000 --- a/applications/Games/dice_app/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Ka3u6y6a/flipper-zero-dice.git - commit_sha: 7411293b775a1643291491bbfd67602f9cfa715d -description: "Dice rolling, types: Coin, d4, d6, d8, d10, d12, d20, d100" -changelog: "@CHANGELOG.md" -author: "@Ka3u6y6a" -screenshots: - - "./.flipcorg/gallery/1-main-screen.png" - - "./.flipcorg/gallery/2-roll-screen.png" - - "./.flipcorg/gallery/3-history-screen.png" \ No newline at end of file diff --git a/applications/Games/digital_kaleidoscope/README.md b/applications/Games/digital_kaleidoscope/README.md deleted file mode 100644 index 4fb9c1699..000000000 --- a/applications/Games/digital_kaleidoscope/README.md +++ /dev/null @@ -1,21 +0,0 @@ -# Digital Kaleidoscope - -Digital Kaleidoscope is a simple, animated visualizer for Flipper Zero. It displays four different patterns that shift and change, turning your Flipper into a miniature kaleidoscope. - ---- - -## Features - -- **Four Animated Styles** - 1. **Rotating Star** – A starburst that rotates around the center. - 2. **Concentric Arcs** – Semi-circles expand and contract around the middle. - 3. **Gradient Noise** – Random noise brighter at the center, fading toward the edges. - 4. **Mirrored Dots** – A random dot pattern mirrored left and right (regenerates on button press). - -- **Adjustable Density (0–100%)** - Use Up/Down to increase or decrease how “busy” each pattern appears. - -- **Simple Controls** - - **Left/Right**: Switch between the four styles. - - **Up/Down**: Adjust density level. - - **Back**: Exit the app and return to the main menu. diff --git a/applications/Games/digital_kaleidoscope/manifest.yml b/applications/Games/digital_kaleidoscope/manifest.yml deleted file mode 100644 index b3ba6d4f1..000000000 --- a/applications/Games/digital_kaleidoscope/manifest.yml +++ /dev/null @@ -1,21 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/JamesR555/digital_kaleidoscope - commit_sha: 9e8a18e1f44855fe56674463fb22380024dc97be -short_description: Digital Kaleidoscope turns your Flipper Zero into a pocket-sized animated visualizer. Choose from four distinct kaleidoscope styles and adjust the pattern density on the fly. -description: | - Digital Kaleidoscope is a lightweight app for Flipper Zero that transforms the device’s screen into a dynamic, ever-changing kaleidoscope. You get four unique visual styles, each with its own characteristics: - - - **Rotating Star**: A radiating starburst spins slowly around the center of the display, giving the impression of a celestial dance. - - **Concentric Arcs**: Pixelated semi-circles expand and contract in rings from the middle of the screen, creating a fluid, ripple-like effect. - - **Gradient Noise**: Random noise pixels appear brightest at the center and fade toward the edges. The pattern shifts subtly over time, producing a mesmerizing “shifting haze.” - - **Mirrored Dots**: A static cloud of random dots is mirrored left-to-right. Unlike the other styles, this one does not animate automatically—you press an arrow key to regenerate the dot pattern whenever you like. - - You can fine-tune how “busy” each style looks by adjusting the density (0–100%) with the Up/Down buttons. The Left/Right arrows switch between the four visualizers, and pressing Back returns to the main menu. -changelog: "changelog.md" -screenshots: - - images/Screenshot-1.png - - images/Screenshot-2.png - - images/Screenshot-3.png - - images/Screenshot-4.png diff --git a/applications/Games/doom/README.md b/applications/Games/doom/README.md deleted file mode 100644 index 721bd52ae..000000000 --- a/applications/Games/doom/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![doom](https://catalog.flipperzero.one/application/doom/widget)](https://catalog.flipperzero.one/application/doom/page) \ No newline at end of file diff --git a/applications/Games/doom/manifest.yml b/applications/Games/doom/manifest.yml deleted file mode 100644 index 41ef3a41a..000000000 --- a/applications/Games/doom/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/doom -description: "@README.md" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Fixes for latest API, v1.3 - Fixes for latest API, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@xMasterX & @Svarich & @hedger (original code by @p4nic4ttack)" -screenshots: - - "./img/1.png" - - "./img/2.png" - - "./img/3.png" diff --git a/applications/Games/drifter/README.md b/applications/Games/drifter/README.md deleted file mode 100644 index 2905ed07f..000000000 --- a/applications/Games/drifter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![drifter](https://catalog.flipperzero.one/application/drifter/widget)](https://catalog.flipperzero.one/application/drifter/page) \ No newline at end of file diff --git a/applications/Games/drifter/manifest.yml b/applications/Games/drifter/manifest.yml deleted file mode 100644 index bf7883dc4..000000000 --- a/applications/Games/drifter/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jean-edouard/flipperzero-drifter.git - commit_sha: 95e395c4eaa8b3284ca132c4ebf67b1d3c8639b1 -changelog: "@./CHANGELOG.md" -description: "@./README.md" -author: "Jed Lejosne" -screenshots: - - "./screenshots/1.png" - - "./screenshots/2.png" - - "./screenshots/3.png" - - "./screenshots/4.png" diff --git a/applications/Games/eightball/README.md b/applications/Games/eightball/README.md deleted file mode 100644 index 0fa4ca22e..000000000 --- a/applications/Games/eightball/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Magic 8 Ball - -This is a simple implementation of the classic Magic 8-ball game for the flipper zero. - -## How to play - -1. Ask your Flipper a yes or no question. -2. Press the center button to get an answer. - -## Version history - -- 0.1 - Initial release - -## Credits - -This game was created after following the tutorials from the [Flipper Game Enging Example](https://github.com/flipperdevices/flipperzero-game-engine-example) and [Building an app for Flipper Zero](https://instantiator.dev/post/flipper-zero-app-tutorial-01/). Thank you to those authors for your work with the community! diff --git a/applications/Games/eightball/manifest.yml b/applications/Games/eightball/manifest.yml deleted file mode 100644 index fef22c881..000000000 --- a/applications/Games/eightball/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/stevenquinn/flipper-8-ball.git - commit_sha: 356af387c6889daf245856f314427102ecddb630 -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "Steven Quinn" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" diff --git a/applications/Games/fighterjet/README.md b/applications/Games/fighterjet/README.md deleted file mode 100644 index cebe1847b..000000000 --- a/applications/Games/fighterjet/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fighterjet](https://catalog.flipperzero.one/application/fighterjet/widget)](https://catalog.flipperzero.one/application/fighterjet/page) \ No newline at end of file diff --git a/applications/Games/fighterjet/manifest.yml b/applications/Games/fighterjet/manifest.yml deleted file mode 100644 index c5ba60cd7..000000000 --- a/applications/Games/fighterjet/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Erbonator3000/flipper-fighter-jet - commit_sha: 50b8213eb48271ee5944db90a126aa818e3b3388 -short-description: "Fighter Jet game." -description: "Game about flying a fighter jet anf hunting down enemies." -changelog: "@changelog.md" -screenshots: - - screenshots/gameplay.png diff --git a/applications/Games/flappy_bird/README.md b/applications/Games/flappy_bird/README.md deleted file mode 100644 index 08dc15399..000000000 --- a/applications/Games/flappy_bird/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flappy_bird](https://catalog.flipperzero.one/application/flappy_bird/widget)](https://catalog.flipperzero.one/application/flappy_bird/page) \ No newline at end of file diff --git a/applications/Games/flappy_bird/manifest.yml b/applications/Games/flappy_bird/manifest.yml deleted file mode 100644 index be579c0fa..000000000 --- a/applications/Games/flappy_bird/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/flappy_bird -description: "Flappy Bird Game" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@DroomOne & @xMasterX" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/flight_assault/README.md b/applications/Games/flight_assault/README.md deleted file mode 100644 index ac2b5aefc..000000000 --- a/applications/Games/flight_assault/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flight_assault](https://catalog.flipperzero.one/application/flight_assault/widget)](https://catalog.flipperzero.one/application/flight_assault/page) \ No newline at end of file diff --git a/applications/Games/flight_assault/manifest.yml b/applications/Games/flight_assault/manifest.yml deleted file mode 100644 index 0bf59f6dc..000000000 --- a/applications/Games/flight_assault/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/evillero/flight_assault - commit_sha: fa2c6d4bcfb056cfe76daa3d4e4486ee2211dca9 -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@evillero" -screenshots: - - ".catalog/screenshots/0.png" - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" diff --git a/applications/Games/flipper_hero/README.md b/applications/Games/flipper_hero/README.md deleted file mode 100644 index 995983370..000000000 --- a/applications/Games/flipper_hero/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipper_hero](https://catalog.flipperzero.one/application/flipper_hero/widget)](https://catalog.flipperzero.one/application/flipper_hero/page) \ No newline at end of file diff --git a/applications/Games/flipper_hero/manifest.yml b/applications/Games/flipper_hero/manifest.yml deleted file mode 100644 index 2044ea842..000000000 --- a/applications/Games/flipper_hero/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/mentoster/flipper-hero - commit_sha: 397580153d091cade8cc82c0c587d71400c2c3e9 -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -author: "Mentoster" -screenshots: - - "./screenshots/Screenshot-1.png" - - "./screenshots/Screenshot-2.png" - - "./screenshots/Screenshot-3.png" - - "./screenshots/Screenshot-4.png" diff --git a/applications/Games/flipper_pong/README.md b/applications/Games/flipper_pong/README.md deleted file mode 100644 index a37629a67..000000000 --- a/applications/Games/flipper_pong/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipper_pong](https://catalog.flipperzero.one/application/flipper_pong/widget)](https://catalog.flipperzero.one/application/flipper_pong/page) \ No newline at end of file diff --git a/applications/Games/flipper_pong/manifest.yml b/applications/Games/flipper_pong/manifest.yml deleted file mode 100644 index a02a97d69..000000000 --- a/applications/Games/flipper_pong/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipper_pong -description: "Simple pong game" -changelog: "v1.0 - Initial release, v1.1 - Icon fixes, v1.2 - Sync Updates, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@nmrr & @SimplyMinimal" -screenshots: - - "./img/1.png" diff --git a/applications/Games/flipperpose/README.md b/applications/Games/flipperpose/README.md deleted file mode 100644 index 3b8b97d9d..000000000 --- a/applications/Games/flipperpose/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipperpose](https://catalog.flipperzero.one/application/flipperpose/widget)](https://catalog.flipperzero.one/application/flipperpose/page) \ No newline at end of file diff --git a/applications/Games/flipperpose/manifest.yml b/applications/Games/flipperpose/manifest.yml deleted file mode 100644 index 847d14be8..000000000 --- a/applications/Games/flipperpose/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/MrNull1/flipperpose.git - commit_sha: 282bf9247d0b7bbf76d829b846b071e7065892fd -short_description: A simple app to pose your flipper buddy for photos! -description: "@README.md" -changelog: "@changelog.md" -version: 1.0 -author: "mrnullone" -screenshots: - - "screenshots/sc1.png" - - "screenshots/sc2.png" - - "screenshots/sc3.png" - - "screenshots/sc4.png" diff --git a/applications/Games/flipperzero_fnaf/README.md b/applications/Games/flipperzero_fnaf/README.md deleted file mode 100644 index f2a244e3d..000000000 --- a/applications/Games/flipperzero_fnaf/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipperzero_fnaf](https://catalog.flipperzero.one/application/flipperzero_fnaf/widget)](https://catalog.flipperzero.one/application/flipperzero_fnaf/page) \ No newline at end of file diff --git a/applications/Games/flipperzero_fnaf/manifest.yml b/applications/Games/flipperzero_fnaf/manifest.yml deleted file mode 100644 index 1b3e5e1d3..000000000 --- a/applications/Games/flipperzero_fnaf/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/sillygir1/flipperzero-fnaf.git - commit_sha: bdedd7cb64a283db042234f76cb5d8331b17729d -short_description: Five Nights at Flipper's -description: "@./catalog/description.md" -changelog: "@./catalog/changelog.md" -screenshots: - - catalog/1.png - - catalog/2.png - - catalog/3.png - - catalog/4.png diff --git a/applications/Games/flippy_road/README.md b/applications/Games/flippy_road/README.md deleted file mode 100644 index cf510c4ea..000000000 --- a/applications/Games/flippy_road/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flippy_road](https://catalog.flipperzero.one/application/flippy_road/widget)](https://catalog.flipperzero.one/application/flippy_road/page) \ No newline at end of file diff --git a/applications/Games/flippy_road/manifest.yml b/applications/Games/flippy_road/manifest.yml deleted file mode 100644 index f7105ea54..000000000 --- a/applications/Games/flippy_road/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/rkilpadi/flippy-road.git - commit_sha: 21a5b41b0a26a8d3dffa16ab74eb5dfda0e28a06 -description: "Cross roads and rivers in a Frogger-inspired platformer" -changelog: "@changelog.md" -author: "@rkilpadi" -screenshots: - - "./screenshots/screenshot1.png" - - "./screenshots/screenshot2.png" diff --git a/applications/Games/fortune_cookie/README.md b/applications/Games/fortune_cookie/README.md deleted file mode 100644 index 5b1c7cd49..000000000 --- a/applications/Games/fortune_cookie/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fortune_cookie](https://catalog.flipperzero.one/application/fortune_cookie/widget)](https://catalog.flipperzero.one/application/fortune_cookie/page) \ No newline at end of file diff --git a/applications/Games/fortune_cookie/manifest.yml b/applications/Games/fortune_cookie/manifest.yml deleted file mode 100644 index a78ecbbe5..000000000 --- a/applications/Games/fortune_cookie/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/evillero/fortune_cookie - commit_sha: 2dd905b19ebebdf793f2d75f164c891927ae1af6 -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@evillero" -screenshots: - - ".catalog/screenshots/screenshot1.png" - - ".catalog/screenshots/screenshot2.png" - diff --git a/applications/Games/furious_birds/README.md b/applications/Games/furious_birds/README.md deleted file mode 100644 index 0bb519ef9..000000000 --- a/applications/Games/furious_birds/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![furious_birds](https://catalog.flipperzero.one/application/furious_birds/widget)](https://catalog.flipperzero.one/application/furious_birds/page) \ No newline at end of file diff --git a/applications/Games/furious_birds/manifest.yml b/applications/Games/furious_birds/manifest.yml deleted file mode 100644 index e23a636cb..000000000 --- a/applications/Games/furious_birds/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/bmstr-ru/furious-birds.git - commit_sha: 79a8506a7b42c0ad96833b82bf65f44b0005b9b4 -short_description: Furious Birds game -description: "@README-manifest.md" -changelog: "@changelog.md" -screenshots: - - screenshots/game.png - - screenshots/game_over.png - - screenshots/logo.png \ No newline at end of file diff --git a/applications/Games/game15/README.md b/applications/Games/game15/README.md deleted file mode 100644 index ca418be3c..000000000 --- a/applications/Games/game15/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![game15](https://catalog.flipperzero.one/application/game15/widget)](https://catalog.flipperzero.one/application/game15/page) \ No newline at end of file diff --git a/applications/Games/game15/manifest.yml b/applications/Games/game15/manifest.yml deleted file mode 100644 index a5644126c..000000000 --- a/applications/Games/game15/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/game15 -description: "Logic Game" -changelog: "v1.0 - Initial release, v1.1 - Various important fixe, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@x27" -screenshots: - - "./img/1.png" diff --git a/applications/Games/game_2048/README.md b/applications/Games/game_2048/README.md deleted file mode 100644 index a6a457fa6..000000000 --- a/applications/Games/game_2048/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![game_2048](https://catalog.flipperzero.one/application/game_2048/widget)](https://catalog.flipperzero.one/application/game_2048/page) \ No newline at end of file diff --git a/applications/Games/game_2048/manifest.yml b/applications/Games/game_2048/manifest.yml deleted file mode 100644 index 54e5e22da..000000000 --- a/applications/Games/game_2048/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/game_2048 -description: "@README-catalog.md" -changelog: "v1.0 - Initial release, v1.1 - Description update, v1.2 - Various important fixes, v1.3 - Fixes for latest API, v1.4 - Fixes for latest API, v1.5 - Sync updates and latest API support, v1.6 - Sync with latest version" -author: "@eugene-kirzhanov" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/game_connect_wires/README.md b/applications/Games/game_connect_wires/README.md deleted file mode 100644 index 4f731477b..000000000 --- a/applications/Games/game_connect_wires/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![game_connect_wires](https://catalog.flipperzero.one/application/game_connect_wires/widget)](https://catalog.flipperzero.one/application/game_connect_wires/page) \ No newline at end of file diff --git a/applications/Games/game_connect_wires/manifest.yml b/applications/Games/game_connect_wires/manifest.yml deleted file mode 100644 index 1ab9f7c8d..000000000 --- a/applications/Games/game_connect_wires/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/AlexTaran/flipperzero.git - commit_sha: 02b332d686e0a9c3cfebe941a7b2a34afc27235b - subdir: games/connect_wires -description: "@README-catalog.md" -short_description: "A famous puzzle game" -changelog: "v1.0 - Initial release, v1.1 - Bug fixes, v1.2 - Memory leak fix" -author: "@AlexTaran" -screenshots: - - "./screenshots/1.png" - - "./screenshots/2.png" - - "./screenshots/3.png" diff --git a/applications/Games/game_hanoi_towers/README.md b/applications/Games/game_hanoi_towers/README.md deleted file mode 100644 index 561dc4cf2..000000000 --- a/applications/Games/game_hanoi_towers/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![game_hanoi_towers](https://catalog.flipperzero.one/application/game_hanoi_towers/widget)](https://catalog.flipperzero.one/application/game_hanoi_towers/page) \ No newline at end of file diff --git a/applications/Games/game_hanoi_towers/manifest.yml b/applications/Games/game_hanoi_towers/manifest.yml deleted file mode 100644 index e8f44e39d..000000000 --- a/applications/Games/game_hanoi_towers/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/AlexTaran/flipperzero.git - commit_sha: 016307aaea59ac6776b6dbc3f5557d9b06ef0042 - subdir: games/hanoi_towers -description: "@README-catalog.md" -short_description: "A puzzle game about moving tower of disks to another stick" -changelog: "v1.0 - Initial release" -author: "@AlexTaran" -screenshots: - - "./screenshots/1.png" - - "./screenshots/2.png" - - "./screenshots/3.png" diff --git a/applications/Games/game_vexed/README.md b/applications/Games/game_vexed/README.md deleted file mode 100644 index a18cf97ce..000000000 --- a/applications/Games/game_vexed/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![game_vexed](https://catalog.flipperzero.one/application/game_vexed/widget)](https://catalog.flipperzero.one/application/game_vexed/page) \ No newline at end of file diff --git a/applications/Games/game_vexed/manifest.yml b/applications/Games/game_vexed/manifest.yml deleted file mode 100644 index 7202b190e..000000000 --- a/applications/Games/game_vexed/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/dlvoy/flipper-zero-vexed.git - commit_sha: ce0280ea19306541425bdc488b263e0e821dffc5 -description: "@SHORTDESC.md" -changelog: "@CHANGELOG.md" -author: "Dominik Dzienia" -screenshots: - - "./img/1.png" - - "./img/2.png" - - "./img/3.png" - - "./img/4.png" diff --git a/applications/Games/gameoflife/README.md b/applications/Games/gameoflife/README.md deleted file mode 100644 index 6837c39da..000000000 --- a/applications/Games/gameoflife/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![gameoflife](https://catalog.flipperzero.one/application/gameoflife/widget)](https://catalog.flipperzero.one/application/gameoflife/page) \ No newline at end of file diff --git a/applications/Games/gameoflife/manifest.yml b/applications/Games/gameoflife/manifest.yml deleted file mode 100644 index bc9600c84..000000000 --- a/applications/Games/gameoflife/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/game_of_life -description: "Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970." -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@tgxn (original by @itsyourbedtime)" -screenshots: - - "./img/1.png" diff --git a/applications/Games/hangman/README.md b/applications/Games/hangman/README.md deleted file mode 100644 index 1e93f27f3..000000000 --- a/applications/Games/hangman/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![hangman](https://catalog.flipperzero.one/application/hangman/widget)](https://catalog.flipperzero.one/application/hangman/page) \ No newline at end of file diff --git a/applications/Games/hangman/manifest.yml b/applications/Games/hangman/manifest.yml deleted file mode 100644 index c0326e918..000000000 --- a/applications/Games/hangman/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/bolknote/Flipper-Zero-Hangman-Game - commit_sha: 8ce923b47e41dfca2634a3fc607e40fceead1995 -description: "Hangman is a guessing game. Flipper thinks of a word and the gamer tries to guess it by suggesting letters within a certain number of guesses." -changelog: "v1.4 - Spanish and Tatar languages were added, fixed several bugs" -author: "@bolknote" -screenshots: - - "./catalog/0.png" - - "./catalog/1.png" - - "./catalog/2.png" - - "./catalog/3.png" diff --git a/applications/Games/heap_defence/README.md b/applications/Games/heap_defence/README.md deleted file mode 100644 index 31bb0f00b..000000000 --- a/applications/Games/heap_defence/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![heap_defence](https://catalog.flipperzero.one/application/heap_defence/widget)](https://catalog.flipperzero.one/application/heap_defence/page) \ No newline at end of file diff --git a/applications/Games/heap_defence/manifest.yml b/applications/Games/heap_defence/manifest.yml deleted file mode 100644 index b7bb6cbd0..000000000 --- a/applications/Games/heap_defence/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/heap_defence_game -description: "Heap Defence game from hackathon (aka Stack Attack)" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Fixes for latest API, v1.3 - Sync updates and latest API suppor, v1.4 - Sync with latest version" -author: "@xMasterX (original implementation by @wquinoa & @Vedmein)" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/jetpack_game/README.md b/applications/Games/jetpack_game/README.md deleted file mode 100644 index 8264abc91..000000000 --- a/applications/Games/jetpack_game/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![jetpack_game](https://catalog.flipperzero.one/application/jetpack_game/widget)](https://catalog.flipperzero.one/application/jetpack_game/page) diff --git a/applications/Games/jetpack_game/manifest.yml b/applications/Games/jetpack_game/manifest.yml deleted file mode 100644 index 16eada0ff..000000000 --- a/applications/Games/jetpack_game/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/timstrasser/flipper-jetpack-game.git - commit_sha: 847f0f0b39df05df5f85836d0ee4d62d1ce3f330 -short_description: Jetpack Game -description: 'Dive into the adventurous world of Jetpack Joyride on Flipper Zero! Navigate Barry through a high-tech lab filled with obstacles, collect coins, and fly in this thrilling remake of the classic game.' -changelog: 'Initial release' -author: '@timstrasser' -screenshots: - - './docs/screenshots/gameplay.png' diff --git a/applications/Games/kcline/README.md b/applications/Games/kcline/README.md deleted file mode 100644 index 496c8697d..000000000 --- a/applications/Games/kcline/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![kcline](https://catalog.flipperzero.one/application/kcline/widget)](https://catalog.flipperzero.one/application/kcline/page) \ No newline at end of file diff --git a/applications/Games/kcline/manifest.yml b/applications/Games/kcline/manifest.yml deleted file mode 100644 index d9ae0df71..000000000 --- a/applications/Games/kcline/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/HappyAmos/Flipper_FAPS.git - commit_sha: 135be9893fa4e606d8bfb2a703dab19242941794 - subdir: kcline -description: "@README-catalog.md" -short_description: "A simple one line bit munching game." -changelog: "@changelog.md" -author: "@HappyAmos" -screenshots: - - "./screenshots/screenshot_1.png" - - "./screenshots/screenshot_2.png" - - "./screenshots/screenshot_3.png" diff --git a/applications/Games/laser_tag/README.md b/applications/Games/laser_tag/README.md deleted file mode 100644 index 1a53a7ab1..000000000 --- a/applications/Games/laser_tag/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![laser_tag](https://catalog.flipperzero.one/application/laser_tag/widget)](https://catalog.flipperzero.one/application/laser_tag/page) \ No newline at end of file diff --git a/applications/Games/laser_tag/manifest.yml b/applications/Games/laser_tag/manifest.yml deleted file mode 100644 index 7cb803e21..000000000 --- a/applications/Games/laser_tag/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -author: '@RocketGod-git & @jamisonderek' -category: 'Games' -changelog: '@./docs/CHANGELOG.md' -description: '@./docs/README.md' -icon: 'icons/laser_tag_10px.png' -id: 'laser_tag' -name: 'Laser Tag' -screenshots: - - 'screenshots/Screenshot1.png' - - 'screenshots/Screenshot2.png' - - 'screenshots/Screenshot3.png' - - 'screenshots/Screenshot4.png' -short_description: 'Laser Tag game for Flipper Zero' -sourcecode: - location: - commit_sha: 5276029b510ef3a7d94a73aa7aa6c7c5c0657cba - origin: https://github.com/RocketGod-git/Flipper-Zero-Laser-Tag.git - subdir: - type: git -version: 2.3 diff --git a/applications/Games/lifecounter/README.md b/applications/Games/lifecounter/README.md deleted file mode 100644 index 87ada9195..000000000 --- a/applications/Games/lifecounter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![lifecounter](https://catalog.flipperzero.one/application/lifecounter/widget)](https://catalog.flipperzero.one/application/lifecounter/page) \ No newline at end of file diff --git a/applications/Games/lifecounter/manifest.yml b/applications/Games/lifecounter/manifest.yml deleted file mode 100644 index 0891fec8c..000000000 --- a/applications/Games/lifecounter/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/antsy/Lifecounter.git - commit_sha: a65f9dbc0bff89085d1c9054465ddcaebf836b48 -category: 'Games' -author: '@antsy' -short_description: Life tracker for collectible card games such as Flesh and Blood, Magic the Gathering, Sorcery, Lorcana etc. -description: '@./README2.md' -changelog: '@./CHANGELOG.md' -screenshots: - - screenshot.png diff --git a/applications/Games/mandelbrotset/README.md b/applications/Games/mandelbrotset/README.md deleted file mode 100644 index 0f04bc0ab..000000000 --- a/applications/Games/mandelbrotset/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![mandelbrotset](https://catalog.flipperzero.one/application/mandelbrotset/widget)](https://catalog.flipperzero.one/application/mandelbrotset/page) \ No newline at end of file diff --git a/applications/Games/mandelbrotset/manifest.yml b/applications/Games/mandelbrotset/manifest.yml deleted file mode 100644 index c1f154fd7..000000000 --- a/applications/Games/mandelbrotset/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/mandelbrot -description: "The Mandelbrot set is the set of all so-called (complex) numbers that meet Mandelbrots simple arithmetic criterion." -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@Possibly-Matt" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/matagotchi/README.md b/applications/Games/matagotchi/README.md deleted file mode 100644 index 4e0d81e2d..000000000 --- a/applications/Games/matagotchi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![matagotchi](https://catalog.flipperzero.one/application/matagotchi/widget)](https://catalog.flipperzero.one/application/matagotchi/page) diff --git a/applications/Games/matagotchi/manifest.yml b/applications/Games/matagotchi/manifest.yml deleted file mode 100644 index 9516710ad..000000000 --- a/applications/Games/matagotchi/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/MrModd/Matagotchi.git - commit_sha: 7b5d3d0545cbb90d9b8215b7104b1b94a3854bef -description: "Matagotchi: a Tamagotchi(R) like game for Flipper Zero" -changelog: "@CHANGELOG.md" -screenshots: - - images/home_screen.png - - images/stats_screen.png - - images/about_screen.png diff --git a/applications/Games/minesweeper_redux/README.md b/applications/Games/minesweeper_redux/README.md deleted file mode 100644 index ae9eb896e..000000000 --- a/applications/Games/minesweeper_redux/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![minesweeper_redux](https://catalog.flipperzero.one/application/minesweeper_redux/widget)](https://catalog.flipperzero.one/application/minesweeper_redux/page) \ No newline at end of file diff --git a/applications/Games/minesweeper_redux/manifest.yml b/applications/Games/minesweeper_redux/manifest.yml deleted file mode 100644 index b58658557..000000000 --- a/applications/Games/minesweeper_redux/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/squee72564/F0_Minesweeper_Fap - commit_sha: 3de0b724ab81ef5a215c051e93545ae1236f1b0b -description: "@./img/SIMPLEREADME.md" -changelog: "@./docs/changelog.md" -author: "Alexander Rodriguez" -screenshots: - - "./img/screenshot1.png" - - "./img/screenshot2.png" - - "./img/screenshot3.png" - - "./img/screenshot4.png" - - "./img/screenshot5.png" diff --git a/applications/Games/montyhall/README.md b/applications/Games/montyhall/README.md deleted file mode 100644 index 7e7de3bf3..000000000 --- a/applications/Games/montyhall/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![montyhall](https://catalog.flipperzero.one/application/montyhall/widget)](https://catalog.flipperzero.one/application/montyhall/page) \ No newline at end of file diff --git a/applications/Games/montyhall/manifest.yml b/applications/Games/montyhall/manifest.yml deleted file mode 100644 index 5b9a92d2f..000000000 --- a/applications/Games/montyhall/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/montyhall -description: "Monty Hall asks you to guess which closed door a prize is behind." -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@DevMilanIan" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Games/myblab/manifest.yml b/applications/Games/myblab/manifest.yml deleted file mode 100644 index 4705033d0..000000000 --- a/applications/Games/myblab/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/apfxtech/FlipperMysticBalloon.git - commit_sha: 7b327b972e31def076dabfb9b199dd5eecaa5f16 - -short_description: A simple fly-platformer where the character hovers through levels using balloons, ported to Flipper Zero. -description: "@APPSTORE.md" -changelog: "@CHANGELOG.md" -screenshots: - - "package/screenshots/screen1.png" - - "package/screenshots/screen2.png" - - "package/screenshots/screen3.png" - - "package/screenshots/screen4.png" - - "package/screenshots/screen5.png" - - "package/screenshots/screen6.png" \ No newline at end of file diff --git a/applications/Games/nupogodi/README.md b/applications/Games/nupogodi/README.md deleted file mode 100644 index 21f0a70a9..000000000 --- a/applications/Games/nupogodi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![nupogodi](https://catalog.flipperzero.one/application/nupogodi/widget)](https://catalog.flipperzero.one/application/nupogodi/page) \ No newline at end of file diff --git a/applications/Games/nupogodi/manifest.yml b/applications/Games/nupogodi/manifest.yml deleted file mode 100644 index 797379062..000000000 --- a/applications/Games/nupogodi/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/sionyx/flipper_nupogodi.git - commit_sha: afdae127be3498ea5104a13f157aac0512e80bf2 -description: "Elektronika IM-02 - Nu, Pogodi! / (Game & Watch - Egg) - Soviet retro game" -short_description: "Elektronika IM-02 - Nu, Pogodi!" -changelog: "v1.3: Async eggs; new Pause screen" -author: "@sionyx" -screenshots: - - "./screens/nupogodi1.png" - - "./screens/nupogodi2.png" - - "./screens/nupogodi3.png" \ No newline at end of file diff --git a/applications/Games/paint/README.md b/applications/Games/paint/README.md deleted file mode 100644 index 543c4e8cd..000000000 --- a/applications/Games/paint/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![paint](https://catalog.flipperzero.one/application/paint/widget)](https://catalog.flipperzero.one/application/paint/page) \ No newline at end of file diff --git a/applications/Games/paint/manifest.yml b/applications/Games/paint/manifest.yml deleted file mode 100644 index 7d3f2b9f0..000000000 --- a/applications/Games/paint/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/paint -description: "A basic Paint app, Click Ok to draw dot, hold Ok to enable drawing continuously, hold Back to clear the screen" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@n-o-T-I-n-s-a-n-e" -screenshots: - - "./img/1.png" diff --git a/applications/Games/pinball0/README.md b/applications/Games/pinball0/README.md deleted file mode 100644 index c670ea724..000000000 --- a/applications/Games/pinball0/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![pinball0](https://catalog.flipperzero.one/application/pinball0/widget)](https://catalog.flipperzero.one/application/pinball0/page) \ No newline at end of file diff --git a/applications/Games/pinball0/manifest.yml b/applications/Games/pinball0/manifest.yml deleted file mode 100644 index 4fdea4c6b..000000000 --- a/applications/Games/pinball0/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/rdefeo/pinball0.git - commit_sha: 26ed6d3b523428cc00df26fea5c1e9a5e14b85f3 -changelog: "@./CHANGELOG.md" -description: "@./README_flipperlab.md" -author: "Roberto De Feo" -screenshots: - - "./screenshots/lab_splash.png" - - "./screenshots/lab_menu.png" - - "./screenshots/lab_basic.png" - - "./screenshots/lab_el_ocho.png" - - "./screenshots/lab_classic.png" diff --git a/applications/Games/princeofarabia/manifest.yml b/applications/Games/princeofarabia/manifest.yml deleted file mode 100644 index 094617c9b..000000000 --- a/applications/Games/princeofarabia/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/apfxtech/FlipperPrinceOfArabia.git - commit_sha: 88bcae7ce8537cd07a696bb80516d7ef7a66dfac - -short_description: Escape the dungeons and free the princess! -description: "@APPSTORE.md" -changelog: "@CHANGELOG.md" -screenshots: - - "package/screenshots/1.png" - - "package/screenshots/2.png" - - "package/screenshots/3.png" - - "package/screenshots/4.png" - - "package/screenshots/5.png" - - "package/screenshots/6.png" \ No newline at end of file diff --git a/applications/Games/quadrastic/README.md b/applications/Games/quadrastic/README.md deleted file mode 100644 index 40639c6ea..000000000 --- a/applications/Games/quadrastic/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![quadrastic](https://catalog.flipperzero.one/application/quadrastic/widget)](https://catalog.flipperzero.one/application/quadrastic/page) \ No newline at end of file diff --git a/applications/Games/quadrastic/manifest.yml b/applications/Games/quadrastic/manifest.yml deleted file mode 100644 index a6044fdda..000000000 --- a/applications/Games/quadrastic/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/ivanbarsukov/flipperzero-quadrastic.git - commit_sha: 1837a9a203ffd2d137fb0b3c6321f97fcb173b4b -description: | - Quadrastic is a simple addicting game inspired by the Arduboy game of the same name. This, in turn, was based on a popular PSP homebrew game called Squarez. Squarez itself drew inspiration from Ball, a game created by Nicolay Edin and Axel Hammarback, which was originally inspired by Eskiv, a game developed by Jean-François Geyelin. -changelog: "@CHANGELOG.md" -screenshots: - - "screenshots/screenshot-1.png" - - "screenshots/screenshot-2.png" - - "screenshots/screenshot-3.png" - - "screenshots/screenshot-4.png" - - "screenshots/screenshot-5.png" \ No newline at end of file diff --git a/applications/Games/questions/README.md b/applications/Games/questions/README.md deleted file mode 100644 index 23c9d4af1..000000000 --- a/applications/Games/questions/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![questions](https://catalog.flipperzero.one/application/questions/widget)](https://catalog.flipperzero.one/application/questions/page) \ No newline at end of file diff --git a/applications/Games/questions/manifest.yml b/applications/Games/questions/manifest.yml deleted file mode 100644 index e2a006d84..000000000 --- a/applications/Games/questions/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/nikilark/flipper_questions.git - commit_sha: b701d55fca4d5fee85b241ba992754ac7a3695aa -description: "Game contains questions to ask you friend, couple or someone new on party to get to know each other better." -changelog: "v1.0 - Initial release, v1.1 - Adjusted build for API 58.0" -screenshots: - - "assets/q_menu.png" - - "assets/q_ex1.png" - - "assets/q_ex2.png" diff --git a/applications/Games/race_game/manifest.yml b/applications/Games/race_game/manifest.yml deleted file mode 100644 index e87d67f8d..000000000 --- a/applications/Games/race_game/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/mrc19056/flipper-race-game.git - commit_sha: 794197bedd786c35db1801895743f53dfb2c9a39 -short_description: 3-lane racing game with power-ups, combos, and night mode -description: "@README.md" -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/menu.png - - screenshots/gameplay.png - - screenshots/gameover.png diff --git a/applications/Games/racegame/README.md b/applications/Games/racegame/README.md deleted file mode 100644 index 8edcd0328..000000000 --- a/applications/Games/racegame/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![racegame](https://catalog.flipperzero.one/application/racegame/widget)](https://catalog.flipperzero.one/application/racegame/page) \ No newline at end of file diff --git a/applications/Games/racegame/manifest.yml b/applications/Games/racegame/manifest.yml deleted file mode 100644 index 5c7bc1c94..000000000 --- a/applications/Games/racegame/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/racegame -description: "Race game inspired by Race game in BrickGame 9999 in 1." -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@zyuhel" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/racso_sokoban/README.md b/applications/Games/racso_sokoban/README.md deleted file mode 100644 index 81481b041..000000000 --- a/applications/Games/racso_sokoban/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![racso_sokoban](https://catalog.flipperzero.one/application/racso_sokoban/widget)](https://catalog.flipperzero.one/application/racso_sokoban/page) \ No newline at end of file diff --git a/applications/Games/racso_sokoban/manifest.yml b/applications/Games/racso_sokoban/manifest.yml deleted file mode 100644 index f671ebb11..000000000 --- a/applications/Games/racso_sokoban/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Racso/fzero-apps.git - commit_sha: b4dc5c6dec170d32606999af4c38320a9f1fbffb - subdir: sokoban -description: "@README.md" -changelog: "@./release/changelog.md" -screenshots: - - release/1.png - - release/2.png - - release/3.png - - release/4.png - - release/5.png - - release/6.png - - release/7.png diff --git a/applications/Games/racso_ultimate_tic_tac_toe/README.md b/applications/Games/racso_ultimate_tic_tac_toe/README.md deleted file mode 100644 index f177390e3..000000000 --- a/applications/Games/racso_ultimate_tic_tac_toe/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![racso_ultimate_tic_tac_toe](https://catalog.flipperzero.one/application/racso_ultimate_tic_tac_toe/widget)](https://catalog.flipperzero.one/application/racso_ultimate_tic_tac_toe/page) \ No newline at end of file diff --git a/applications/Games/racso_ultimate_tic_tac_toe/manifest.yml b/applications/Games/racso_ultimate_tic_tac_toe/manifest.yml deleted file mode 100644 index e16b95282..000000000 --- a/applications/Games/racso_ultimate_tic_tac_toe/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Racso/fzero-apps.git - commit_sha: 17559d0dfcdb9e260b7e6ccc10654cec0492d672 - subdir: ultimate_tic_tac_toe -description: "@README.md" -changelog: "@./release/changelog.md" -screenshots: - - release/1.png - - release/2.png - - release/3.png - - release/4.png - - release/5.png - - release/6.png diff --git a/applications/Games/racso_zero/README.md b/applications/Games/racso_zero/README.md deleted file mode 100644 index 275eb64c1..000000000 --- a/applications/Games/racso_zero/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![racso_zero](https://catalog.flipperzero.one/application/racso_zero/widget)](https://catalog.flipperzero.one/application/racso_zero/page) \ No newline at end of file diff --git a/applications/Games/racso_zero/manifest.yml b/applications/Games/racso_zero/manifest.yml deleted file mode 100644 index fb2cd7b19..000000000 --- a/applications/Games/racso_zero/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Racso/fzero-apps.git - commit_sha: 17559d0dfcdb9e260b7e6ccc10654cec0492d672 - subdir: zero -description: "@README.md" -changelog: "@./release/changelog.md" -screenshots: - - release/1.png - - release/2.png - - release/3.png - - release/4.png \ No newline at end of file diff --git a/applications/Games/reaction/README.md b/applications/Games/reaction/README.md deleted file mode 100644 index adee399ce..000000000 --- a/applications/Games/reaction/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![reaction](https://catalog.flipperzero.one/application/reaction/widget)](https://catalog.flipperzero.one/application/reaction/page) \ No newline at end of file diff --git a/applications/Games/reaction/manifest.yml b/applications/Games/reaction/manifest.yml deleted file mode 100644 index f3f4274e8..000000000 --- a/applications/Games/reaction/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/fz-reaction-game -description: "A simple reaction test game" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@Milk-Cool" -screenshots: - - "./img/1.png" diff --git a/applications/Games/reversi/README.md b/applications/Games/reversi/README.md deleted file mode 100644 index 69a1fe118..000000000 --- a/applications/Games/reversi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![reversi](https://catalog.flipperzero.one/application/reversi/widget)](https://catalog.flipperzero.one/application/reversi/page) \ No newline at end of file diff --git a/applications/Games/reversi/manifest.yml b/applications/Games/reversi/manifest.yml deleted file mode 100644 index 5ea038b52..000000000 --- a/applications/Games/reversi/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/reversi -description: "Reversi game, the game controls should be intuitive. Longs press on OK opens the menu to start a new game." -changelog: "v1.0 - Initial release, v1.1 - Various fixes, v1.2 - Various important fixes, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@dimat" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Games/rock_paper_scissors/README.md b/applications/Games/rock_paper_scissors/README.md deleted file mode 100644 index 056129d0e..000000000 --- a/applications/Games/rock_paper_scissors/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![rock_paper_scissors](https://catalog.flipperzero.one/application/rock_paper_scissors/widget)](https://catalog.flipperzero.one/application/rock_paper_scissors/page) \ No newline at end of file diff --git a/applications/Games/rock_paper_scissors/manifest.yml b/applications/Games/rock_paper_scissors/manifest.yml deleted file mode 100644 index 066b075c5..000000000 --- a/applications/Games/rock_paper_scissors/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jamisonderek/flipper-zero-tutorials.git - commit_sha: ca9efc0342c62ec96a5a5c39c3b9cf680899408e - subdir: subghz/plugins/rock_paper_scissors -description: "@./.flipcorg/README.md" -changelog: "v1.5 - datetime update v1.4 - Update description\nv1.3 - More robust radio communication\nv1.2 - Updated subghz API" -author: "@jamisonderek" -screenshots: - - "./.flipcorg/gallery/win.png" - - "./.flipcorg/gallery/main-menu.png" - - "./.flipcorg/gallery/host-game.png" - - "./.flipcorg/gallery/join-game.png" - - "./.flipcorg/gallery/playing-game.png" - - "./.flipcorg/gallery/game-over.png" - - "./.flipcorg/gallery/lost.png" - - "./.flipcorg/gallery/share.png" - - "./.flipcorg/gallery/share-github.png" - - "./.flipcorg/gallery/past-games.png" diff --git a/applications/Games/roots_of_life/README.md b/applications/Games/roots_of_life/README.md deleted file mode 100644 index 37fa68fa7..000000000 --- a/applications/Games/roots_of_life/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![roots_of_life](https://catalog.flipperzero.one/application/roots_of_life/widget)](https://catalog.flipperzero.one/application/roots_of_life/page) \ No newline at end of file diff --git a/applications/Games/roots_of_life/manifest.yml b/applications/Games/roots_of_life/manifest.yml deleted file mode 100644 index 5e0fccb54..000000000 --- a/applications/Games/roots_of_life/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/rootoflife -description: "A zen-puzzle game for FlipperZero, puzzle made on GlobalGameJam23 (theme: Roots)" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Latest API fix, v1.4 - Sync with latest version" -author: "@Xorboo" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Games/rubiks_cube_scrambler/README.md b/applications/Games/rubiks_cube_scrambler/README.md deleted file mode 100644 index 166941582..000000000 --- a/applications/Games/rubiks_cube_scrambler/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![rubiks_cube_scrambler](https://catalog.flipperzero.one/application/rubiks_cube_scrambler/widget)](https://catalog.flipperzero.one/application/rubiks_cube_scrambler/page) \ No newline at end of file diff --git a/applications/Games/rubiks_cube_scrambler/manifest.yml b/applications/Games/rubiks_cube_scrambler/manifest.yml deleted file mode 100644 index 0a736b06f..000000000 --- a/applications/Games/rubiks_cube_scrambler/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/rubiks_cube_scrambler -description: "App generates random moves to scramble a Rubik's cube." -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Fixes for new API, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@RaZeSloth" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/scorched_tanks/README.md b/applications/Games/scorched_tanks/README.md deleted file mode 100644 index f1f3d82bb..000000000 --- a/applications/Games/scorched_tanks/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![scorched_tanks](https://catalog.flipperzero.one/application/scorched_tanks/widget)](https://catalog.flipperzero.one/application/scorched_tanks/page) \ No newline at end of file diff --git a/applications/Games/scorched_tanks/manifest.yml b/applications/Games/scorched_tanks/manifest.yml deleted file mode 100644 index 51b3677f2..000000000 --- a/applications/Games/scorched_tanks/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/scorched_tanks -description: "A flipper zero game inspired by scorched earth." -changelog: "v1.0 - Initial release, v1.1 - Icon fixes, v1.2 - Various fixes, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@jasniec" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/secret_toggle/README.md b/applications/Games/secret_toggle/README.md deleted file mode 100644 index f22d4465f..000000000 --- a/applications/Games/secret_toggle/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![secret_toggle](https://catalog.flipperzero.one/application/secret_toggle/widget)](https://catalog.flipperzero.one/application/secret_toggle/page) diff --git a/applications/Games/secret_toggle/manifest.yml b/applications/Games/secret_toggle/manifest.yml deleted file mode 100644 index c4df0a8fc..000000000 --- a/applications/Games/secret_toggle/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/nostrumuva/secret_toggle.git - commit_sha: 82f7532c5f4df295d68adaa1ee4201f1bd403028 -description: "@README.md" -changelog: "v1.0 - Initial release" -author: "@nostrumuva" -screenshots: - - "screenshot.png" diff --git a/applications/Games/slotmachine/README.md b/applications/Games/slotmachine/README.md deleted file mode 100644 index 4b28b2ace..000000000 --- a/applications/Games/slotmachine/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![slotmachine](https://catalog.flipperzero.one/application/slotmachine/widget)](https://catalog.flipperzero.one/application/slotmachine/page) \ No newline at end of file diff --git a/applications/Games/slotmachine/manifest.yml b/applications/Games/slotmachine/manifest.yml deleted file mode 100644 index 057b53c4c..000000000 --- a/applications/Games/slotmachine/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipperzero-slots -description: "Simple Slots simulator game" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Updates and fixes, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@Daniel-dev-s" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/snake20/README.md b/applications/Games/snake20/README.md deleted file mode 100644 index c606bf186..000000000 --- a/applications/Games/snake20/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![snake20](https://catalog.flipperzero.one/application/snake20/widget)](https://catalog.flipperzero.one/application/snake20/page) \ No newline at end of file diff --git a/applications/Games/snake20/manifest.yml b/applications/Games/snake20/manifest.yml deleted file mode 100644 index 9f66abbf7..000000000 --- a/applications/Games/snake20/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/Snake_2 -description: "Advanced Snake Game (Remake of original Snake)" -changelog: "@changelog.md" -author: "@Willzvul" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Games/spaceimpactii985e/README.md b/applications/Games/spaceimpactii985e/README.md deleted file mode 100644 index 2c0100227..000000000 --- a/applications/Games/spaceimpactii985e/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![spaceimpactii985e](https://catalog.flipperzero.one/application/spaceimpactii985e/widget)](https://catalog.flipperzero.one/application/spaceimpactii985e/page) \ No newline at end of file diff --git a/applications/Games/spaceimpactii985e/manifest.yml b/applications/Games/spaceimpactii985e/manifest.yml deleted file mode 100644 index 7ecc0ccd8..000000000 --- a/applications/Games/spaceimpactii985e/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Erbonator3000/Flipper-Zero-Space-Impact-II - commit_sha: 5f618a1bb269cfea799699e7fe0f6567e2a8f9c9 -short_description: Space Impact II clone -description: | - Clone of classic mobile phone game Space Impact II -changelog: "@changelog.md" -screenshots: - - screenshots/gameplay.png diff --git a/applications/Games/sudoku/README.md b/applications/Games/sudoku/README.md deleted file mode 100644 index 348563d91..000000000 --- a/applications/Games/sudoku/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![sudoku](https://catalog.flipperzero.one/application/sudoku/widget)](https://catalog.flipperzero.one/application/sudoku/page) \ No newline at end of file diff --git a/applications/Games/sudoku/manifest.yml b/applications/Games/sudoku/manifest.yml deleted file mode 100644 index ccf6c7a46..000000000 --- a/applications/Games/sudoku/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/profelis/fz-sudoku.git - commit_sha: a9c4717826f28df5524811c73bcdf56ae54d256a -description: "@README_catalog.md" -changelog: "@CHANGELOG.md" -author: "@profelis" -screenshots: - - "./screenshots/main.png" - - "./screenshots/menu.png" diff --git a/applications/Games/swimmy_fish/manifest.yml b/applications/Games/swimmy_fish/manifest.yml deleted file mode 100644 index 639d4bf39..000000000 --- a/applications/Games/swimmy_fish/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Invizabel/fish - commit_sha: 0582188c9246c51c23093e2f3cbfa4402bca34c9 - subdir: FlipperZero -short_description: "A game about a fish" -changelog: "@./docs/changelog.md" -description: "Swimmy Fish. One goal, Survive. One button, Enter" -source_file: - - src/fish.c -screenshots: - - screenshots/screenshot.png -version: 2.0 diff --git a/applications/Games/t_rex_runner/README.md b/applications/Games/t_rex_runner/README.md deleted file mode 100644 index 32a8ea4af..000000000 --- a/applications/Games/t_rex_runner/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![t_rex_runner](https://catalog.flipperzero.one/application/t_rex_runner/widget)](https://catalog.flipperzero.one/application/t_rex_runner/page) \ No newline at end of file diff --git a/applications/Games/t_rex_runner/manifest.yml b/applications/Games/t_rex_runner/manifest.yml deleted file mode 100644 index 24f2fc78a..000000000 --- a/applications/Games/t_rex_runner/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/t-rex-runner -description: "@README-catalog.md" -changelog: "v1.0 - Initial release, v1.1 - Description update, v1.2 - Various fixes, v1.3 - Various updates, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@Rrycbarm" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/tarot/README.md b/applications/Games/tarot/README.md deleted file mode 100644 index 1ecfffcc7..000000000 --- a/applications/Games/tarot/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![tarot](https://catalog.flipperzero.one/application/tarot/widget)](https://catalog.flipperzero.one/application/tarot/page) \ No newline at end of file diff --git a/applications/Games/tarot/manifest.yml b/applications/Games/tarot/manifest.yml deleted file mode 100644 index 0e265b08e..000000000 --- a/applications/Games/tarot/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/pionaiki/fz-tarot.git - commit_sha: 0de4417aaa709ff6225c9548d6c52501726bc04c -short_description: Tarot spread for Flipper Zero -description: "This app can give you a linear spread of the major arcana cards, sourcing radio for the random number generator." -changelog: "Added a card browser, Added upside-down cards (togglable setting), The random number generator now sources the radio, Optimisations" -author: "pionaiki & tihyltew" -screenshots: - - .flipcorg/gallery/screenshot_1.png - - .flipcorg/gallery/screenshot_2.png diff --git a/applications/Games/tetris/README.md b/applications/Games/tetris/README.md deleted file mode 100644 index ce890de10..000000000 --- a/applications/Games/tetris/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![tetris](https://catalog.flipperzero.one/application/tetris/widget)](https://catalog.flipperzero.one/application/tetris/page) \ No newline at end of file diff --git a/applications/Games/tetris/manifest.yml b/applications/Games/tetris/manifest.yml deleted file mode 100644 index 708e6497a..000000000 --- a/applications/Games/tetris/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/tetris_game -description: "Tetris Game" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Fixes for new API, Gameplay improvements, v1.3 - Various fixes, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@xMasterX & @jeffplang & @noiob" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Games/tictactoe/README.md b/applications/Games/tictactoe/README.md deleted file mode 100644 index f3c9a84eb..000000000 --- a/applications/Games/tictactoe/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![tictactoe](https://catalog.flipperzero.one/application/tictactoe/widget)](https://catalog.flipperzero.one/application/tictactoe/page) \ No newline at end of file diff --git a/applications/Games/tictactoe/manifest.yml b/applications/Games/tictactoe/manifest.yml deleted file mode 100644 index cb571be0d..000000000 --- a/applications/Games/tictactoe/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/tictactoe_game -description: "Tic Tac Toe game, for 2 players, play on one device" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@xMasterX & @gotnull" -screenshots: - - "./img/1.png" diff --git a/applications/Games/umpire_indicator/README.md b/applications/Games/umpire_indicator/README.md deleted file mode 100644 index ad97a9758..000000000 --- a/applications/Games/umpire_indicator/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![umpire_indicator](https://catalog.flipperzero.one/application/umpire_indicator/widget)](https://catalog.flipperzero.one/application/umpire_indicator/page) \ No newline at end of file diff --git a/applications/Games/umpire_indicator/manifest.yml b/applications/Games/umpire_indicator/manifest.yml deleted file mode 100644 index c4044a802..000000000 --- a/applications/Games/umpire_indicator/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -author: '@RocketGod-git' -category: 'Games' -changelog: '@./docs/CHANGELOG.md' -description: '@./docs/README.md' -icon: 'icons/umpire_indicator_icon.png' -id: 'umpire_indicator' -name: 'Umpire Indicator' -screenshots: - - 'screenshots/Screenshot1.png' - - 'screenshots/Screenshot2.png' -short_description: 'Baseball and Softball balls, strikes, and outs tracker for umpires' -sourcecode: - location: - commit_sha: dd5b57a69da969911d8ba4ead96528ccfe616542 - origin: https://github.com/RocketGod-git/Flipper-Zero-Umpire-Indicator.git - subdir: - type: git -version: 0.1 diff --git a/applications/Games/videopoker/README.md b/applications/Games/videopoker/README.md deleted file mode 100644 index 5f3deb2a9..000000000 --- a/applications/Games/videopoker/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![videopoker](https://catalog.flipperzero.one/application/videopoker/widget)](https://catalog.flipperzero.one/application/videopoker/page) \ No newline at end of file diff --git a/applications/Games/videopoker/manifest.yml b/applications/Games/videopoker/manifest.yml deleted file mode 100644 index d2f58f37e..000000000 --- a/applications/Games/videopoker/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/videopoker -description: "Video poker is a casino game based on five-card draw poker" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@PixlEmly" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Games/wave/manifest.yml b/applications/Games/wave/manifest.yml deleted file mode 100644 index d411c1818..000000000 --- a/applications/Games/wave/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Sladkisnovraper/Wave-game-for-Flipper-Zero.git - commit_sha: "50bc424cb8c93ae45054b6ff7360578882a46f2a" -short_description: "AI generated game that replicates gameplay for a wave from Geometry Dash" -description: "@./README.md" -changelog: "@changelog.md" -author: "sergo" -screenshots: - - "./screenshots/1.png" - - "./screenshots/2.png" - - "./screenshots/3.png" - - "./screenshots/4.png" diff --git a/applications/Games/wolfenduino/manifest.yml b/applications/Games/wolfenduino/manifest.yml deleted file mode 100644 index 9ed0f5063..000000000 --- a/applications/Games/wolfenduino/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/apfxtech/FlipperWolfenstein.git - commit_sha: c2a1dc8ec51af3b17d497a49c9de8f0225f8b648 - -short_description: Wolfenduino is a demake of id Software's Wolfenstein 3D originally created for the Arduboy FX and ported to Flipper Zero. -description: "@APPSTORE.md" -changelog: "@CHANGELOG.md" -screenshots: - - "package/screenshots/screen1.png" - - "package/screenshots/screen2.png" - - "package/screenshots/screen3.png" - - "package/screenshots/screen4.png" - - "package/screenshots/screen5.png" - - "package/screenshots/screen6.png" \ No newline at end of file diff --git a/applications/Games/xyz_vh8t_slots/manifest.yml b/applications/Games/xyz_vh8t_slots/manifest.yml deleted file mode 100644 index 7bb62bbc2..000000000 --- a/applications/Games/xyz_vh8t_slots/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/vh8t/flipperzero-slots - commit_sha: b985279b3954330a5b059f3c787b98f447be8128 -description: "@README.md" -changelog: "@CHANGELOG.md" -screenshots: - - "./screenshots/screenshot-1.png" - - "./screenshots/screenshot-2.png" - - "./screenshots/screenshot-3.png" - - "./screenshots/screenshot-4.png" diff --git a/applications/Games/yatzee/README.md b/applications/Games/yatzee/README.md deleted file mode 100644 index 609f7f3d3..000000000 --- a/applications/Games/yatzee/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![yatzee](https://catalog.flipperzero.one/application/yatzee/widget)](https://catalog.flipperzero.one/application/yatzee/page) \ No newline at end of file diff --git a/applications/Games/yatzee/manifest.yml b/applications/Games/yatzee/manifest.yml deleted file mode 100644 index 41c46f6b0..000000000 --- a/applications/Games/yatzee/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipperzero-yatzee-main -description: "Yahtzee game" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@emfleak" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Games/zombiez/README.md b/applications/Games/zombiez/README.md deleted file mode 100644 index 06c250e59..000000000 --- a/applications/Games/zombiez/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![zombiez](https://catalog.flipperzero.one/application/zombiez/widget)](https://catalog.flipperzero.one/application/zombiez/page) \ No newline at end of file diff --git a/applications/Games/zombiez/manifest.yml b/applications/Games/zombiez/manifest.yml deleted file mode 100644 index aa4d9a803..000000000 --- a/applications/Games/zombiez/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/zombiez -description: "Defend your walls from the zombies" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@DevMilanIan & @xMasterX, (original By @Dooskington)" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Infrared/.gitkeep b/applications/Infrared/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/Infrared/flame_rng/manifest.yml b/applications/Infrared/flame_rng/manifest.yml deleted file mode 100644 index d35bd4364..000000000 --- a/applications/Infrared/flame_rng/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/OrionW06/Flame-RNG.git - commit_sha: 662baaab0566bec5c33a1332ade3fbc03623955a -short_description: An RNG intended for use with flames and other IR sources. -description: "@README.md" -changelog: "@./docs/changelog.md" -screenshots: - - screenshots/AllZeros.png - - screenshots/RandomNumber.png - - screenshots/SaveMessage.png diff --git a/applications/Infrared/flipper_xremote/README.md b/applications/Infrared/flipper_xremote/README.md deleted file mode 100644 index 3ebf9d35e..000000000 --- a/applications/Infrared/flipper_xremote/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipper_xremote](https://catalog.flipperzero.one/application/flipper_xremote/widget)](https://catalog.flipperzero.one/application/flipper_xremote/page) \ No newline at end of file diff --git a/applications/Infrared/flipper_xremote/manifest.yml b/applications/Infrared/flipper_xremote/manifest.yml deleted file mode 100644 index 44e81c552..000000000 --- a/applications/Infrared/flipper_xremote/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/kala13x/flipper-xremote - commit_sha: 95e629eff960c71754d0a2768a54883df066a588 -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -author: "@kala13x" -screenshots: - - "./.flipcorg/gallery/screen1.png" - - "./.flipcorg/gallery/screen2.png" - - "./.flipcorg/gallery/screen3.png" - - "./.flipcorg/gallery/screen4.png" - - "./.flipcorg/gallery/screen5.png" - - "./.flipcorg/gallery/screen6.png" - - "./.flipcorg/gallery/screen7.png" diff --git a/applications/Infrared/hitachi_ac_remote/README.md b/applications/Infrared/hitachi_ac_remote/README.md deleted file mode 100644 index c88714ddc..000000000 --- a/applications/Infrared/hitachi_ac_remote/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![hitachi_ac_remote](https://catalog.flipperzero.one/application/hitachi_ac_remote/widget)](https://catalog.flipperzero.one/application/hitachi_ac_remote/page) diff --git a/applications/Infrared/hitachi_ac_remote/manifest.yml b/applications/Infrared/hitachi_ac_remote/manifest.yml deleted file mode 100644 index 941e114b8..000000000 --- a/applications/Infrared/hitachi_ac_remote/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/dogtopus/flipperzero-hitachi-ac-remote.git - commit_sha: 4cbf740e7a1fd7036e93be2a42b7e6fa4a4cc956 -short_description: "Hitachi Air Conditioner remote controller" -description: "@./README_CATALOG.md" -changelog: "@./CHANGELOG.md" -screenshots: - - "./img/1.png" - - "./img/2.png" - - "./img/screenshot3.png" diff --git a/applications/Infrared/htw_ac_remote/README.md b/applications/Infrared/htw_ac_remote/README.md deleted file mode 100644 index fa631b1df..000000000 --- a/applications/Infrared/htw_ac_remote/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![htw_ac_remote](https://catalog.flipperzero.one/application/htw_ac_remote/widget)](https://catalog.flipperzero.one/application/htw_ac_remote/page) diff --git a/applications/Infrared/htw_ac_remote/manifest.yml b/applications/Infrared/htw_ac_remote/manifest.yml deleted file mode 100644 index e8b843726..000000000 --- a/applications/Infrared/htw_ac_remote/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/sokogen/flipperzero-htw-ac-remote.git - commit_sha: 9f66b7f3dc34df21baeccb95762da6e3547ed4c5 -short_description: "HTW air conditioner IR remote control" -description: "@./README_CATALOG.md" -changelog: "@./CHANGELOG.md" -screenshots: - - "./docs/screenshots/main.png" - - "./docs/screenshots/timer.png" - - "./docs/screenshots/settings.png" diff --git a/applications/Infrared/ir_intervalometer/README.md b/applications/Infrared/ir_intervalometer/README.md deleted file mode 100644 index 70c45af9e..000000000 --- a/applications/Infrared/ir_intervalometer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![ir_intervalometer](https://catalog.flipperzero.one/application/ir_intervalometer/widget)](https://catalog.flipperzero.one/application/ir_intervalometer/page) diff --git a/applications/Infrared/ir_intervalometer/manifest.yml b/applications/Infrared/ir_intervalometer/manifest.yml deleted file mode 100644 index e0f2c61d4..000000000 --- a/applications/Infrared/ir_intervalometer/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Nitepone/flipper-intervalometer.git - commit_sha: a80d4f530ff0da18ea91b5183c1131a766e63642 -description: "Intervalometer for Canon, Nikon, and Sony cameras. Uses IR shutter release." -changelog: "v1.0 - Initial release, v1.2 - Additional camera support, v2.2 - Bugfix for New Flipper SDK" -author: "@Nitepone" -screenshots: - - "./doc/img/running-intervalometer.png" - - "./doc/img/settings-edit.png" - - "./doc/img/settings-burst.png" diff --git a/applications/Infrared/ir_scope/README.md b/applications/Infrared/ir_scope/README.md deleted file mode 100644 index 80ef866bf..000000000 --- a/applications/Infrared/ir_scope/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![ir_scope](https://catalog.flipperzero.one/application/ir_scope/widget)](https://catalog.flipperzero.one/application/ir_scope/page) \ No newline at end of file diff --git a/applications/Infrared/ir_scope/manifest.yml b/applications/Infrared/ir_scope/manifest.yml deleted file mode 100644 index 3a2d08c0d..000000000 --- a/applications/Infrared/ir_scope/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/ir_scope -description: "App allows to see incoming IR signals." -changelog: "v1.0 - Initial release, v1.1 - Various fixes, v1.2 - Various important fixes, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@kallanreed" -screenshots: - - "./img/1.png" diff --git a/applications/Infrared/lidar_emulator/README.md b/applications/Infrared/lidar_emulator/README.md deleted file mode 100644 index caa561eb6..000000000 --- a/applications/Infrared/lidar_emulator/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![lidar_emulator](https://catalog.flipperzero.one/application/lidar_emulator/widget)](https://catalog.flipperzero.one/application/lidar_emulator/page) \ No newline at end of file diff --git a/applications/Infrared/lidar_emulator/manifest.yml b/applications/Infrared/lidar_emulator/manifest.yml deleted file mode 100644 index 90121c6a2..000000000 --- a/applications/Infrared/lidar_emulator/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/regaly/flipperzero-lidar_emulator.git - commit_sha: d2092a01ae627129c24c257102f619813a61986e -description: "@./README.md" -short_description: This app can be used to emulate infrared signals of different LIDARs. -changelog: "@./CHANGELOG.md" -author: "regaly" -screenshots: - - "./screenshots/main_menu.png" - - "./screenshots/submenu_predefined_lidar_guns.png" diff --git a/applications/Infrared/midea_ac_remote/README.md b/applications/Infrared/midea_ac_remote/README.md deleted file mode 100644 index 3c2963efa..000000000 --- a/applications/Infrared/midea_ac_remote/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![midea_ac_remote](https://catalog.flipperzero.one/application/midea_ac_remote/widget)](https://catalog.flipperzero.one/application/midea_ac_remote/page) \ No newline at end of file diff --git a/applications/Infrared/midea_ac_remote/manifest.yml b/applications/Infrared/midea_ac_remote/manifest.yml deleted file mode 100644 index 1f3ae492d..000000000 --- a/applications/Infrared/midea_ac_remote/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xakep666/flipperzero-midea-ac-remote.git - commit_sha: b92c426cfe7fb3c78e5d9d4480d50d3a84758932 -short_description: "Midea Electric Air Conditioner remote control" -description: "@./README_CATALOG.md" -changelog: "@./CHANGELOG.md" -screenshots: - - "./img/screenshot_landscape.png" - - "./img/screenshot_silent_mode_landscape.png" diff --git a/applications/Infrared/mitsubishi_ac_remote/README.md b/applications/Infrared/mitsubishi_ac_remote/README.md deleted file mode 100644 index c4e234776..000000000 --- a/applications/Infrared/mitsubishi_ac_remote/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![mitsubishi_ac_remote](https://catalog.flipperzero.one/application/mitsubishi_ac_remote/widget)](https://catalog.flipperzero.one/application/mitsubishi_ac_remote/page) \ No newline at end of file diff --git a/applications/Infrared/mitsubishi_ac_remote/manifest.yml b/applications/Infrared/mitsubishi_ac_remote/manifest.yml deleted file mode 100644 index 373c3298b..000000000 --- a/applications/Infrared/mitsubishi_ac_remote/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/achistyakov/flipperzero-mitsubishi-ac-remote.git - commit_sha: 22ca60ccb21395ce8c1681d40140c1914912570f -short_description: "Mitsubishi Electric Air Conditioner remote control" -description: "@./README_CATALOG.md" -changelog: "@./CHANGELOG.md" -screenshots: - - "./img/1.png" diff --git a/applications/Infrared/pause_timer/manifest.yml b/applications/Infrared/pause_timer/manifest.yml deleted file mode 100644 index 46751c0e3..000000000 --- a/applications/Infrared/pause_timer/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Matt-London/pause_timer.git - commit_sha: 71d570d22f61acf642fce098d6524a251ca7d10f - -short_description: Pause your show when the ad break ends -description: "@APPSTORE.md" -changelog: "@CHANGELOG.md" -screenshots: - - "screenshots/pause_timer_numpad_entry.png" - - "screenshots/pause_timer_countdown.png" - - "screenshots/pause_timer_countdown_complete.png" - - "screenshots/pause_timer_IR_learning.png" diff --git a/applications/Infrared/tamagometer_companion/README.md b/applications/Infrared/tamagometer_companion/README.md deleted file mode 100644 index 928ac64c7..000000000 --- a/applications/Infrared/tamagometer_companion/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![tamagometer_companion](https://catalog.flipperzero.one/application/tamagometer_companion/widget)](https://catalog.flipperzero.one/application/tamagometer_companion/page) \ No newline at end of file diff --git a/applications/Infrared/tamagometer_companion/manifest.yml b/applications/Infrared/tamagometer_companion/manifest.yml deleted file mode 100644 index 5e6f06219..000000000 --- a/applications/Infrared/tamagometer_companion/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - ## Specify the git URL of your repository - origin: https://github.com/zacharesmer/tamagometer-companion-flipper.git - ## Put the full commit SHA of the commit with the app's code you want to submit - commit_sha: 0a0251bb8bf0f7eccc22bd96850f3f56c812a4e7 - ## (Optional) If your app is located in a subdirectory of the repository, specify it here - # subdir: . -## For 'description' and 'changelog', you can use limited markdown syntax -## You can also specify a file from your app's repository as a source with @ -description: "@description.md" -changelog: "@CHANGELOG.md" -## Unmodified screenshots from qFlipper -screenshots: - - screenshots/screenshot1.png diff --git a/applications/Infrared/timed_remote/README.md b/applications/Infrared/timed_remote/README.md deleted file mode 100644 index 921ed6806..000000000 --- a/applications/Infrared/timed_remote/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![timed_remote](https://catalog.flipperzero.one/application/timed_remote/widget)](https://catalog.flipperzero.one/application/timed_remote/page) diff --git a/applications/Infrared/timed_remote/manifest.yml b/applications/Infrared/timed_remote/manifest.yml deleted file mode 100644 index 9430e0a37..000000000 --- a/applications/Infrared/timed_remote/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/anders-dc/timed-remote.git - commit_sha: 3609fbfe951db5e1fac604ce4e0570bb7b7a926e -short_description: Send IR commands after timed duration. -description: | - Send IR commands after a configurable time delay. - - Browse and select IR signals from existing .ir files - - **Countdown Mode**: Set a timer (HH:MM:SS) and send the signal when it completes - - **Scheduled Mode**: Send the signal at a specific time of day - - **Repeat Options**: Off, Unlimited, or 1-99 repeats (countdown mode only) - - Live countdown display with repeat progress tracking, press Back to cancel -changelog: "@CHANGELOG.md" -author: "A. Damsgaard" -screenshots: - - screenshots/00-ir-browse.png - - screenshots/01-timer-config.png - - screenshots/02-timer-config.png - - screenshots/03-timer-running.png diff --git a/applications/Infrared/xbox_controller/README.md b/applications/Infrared/xbox_controller/README.md deleted file mode 100644 index 63dc4eaa2..000000000 --- a/applications/Infrared/xbox_controller/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![xbox_controller](https://catalog.flipperzero.one/application/xbox_controller/widget)](https://catalog.flipperzero.one/application/xbox_controller/page) \ No newline at end of file diff --git a/applications/Infrared/xbox_controller/manifest.yml b/applications/Infrared/xbox_controller/manifest.yml deleted file mode 100644 index 57d4d1971..000000000 --- a/applications/Infrared/xbox_controller/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/gebeto/flipper-xbox-controller - commit_sha: 6b429c5b853c348470d5b6019c37b2ec5067a397 -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -author: "@gebeto" -screenshots: - - "./img/screenshot_1.png" - - "./img/screenshot_2.png" - - "./img/screenshot_3.png" diff --git a/applications/Infrared/xremote/README.md b/applications/Infrared/xremote/README.md deleted file mode 100644 index bc156fd9f..000000000 --- a/applications/Infrared/xremote/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![xremote](https://catalog.flipperzero.one/application/xremote/widget)](https://catalog.flipperzero.one/application/xremote/page) \ No newline at end of file diff --git a/applications/Infrared/xremote/manifest.yml b/applications/Infrared/xremote/manifest.yml deleted file mode 100644 index d96e4ca10..000000000 --- a/applications/Infrared/xremote/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/leedave/flipper-zero-cross-remote - commit_sha: c763004922bbaf712236231acd49fada028dd376 -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -author: "Leedave" -screenshots: - - "./screenshots/xremote_1.png" - - "./screenshots/xremote_2.png" - - "./screenshots/xremote_3.png" - - "./screenshots/xremote_4.png" - - "./screenshots/xremote_5.png" - - "./screenshots/xremote_6.png" diff --git a/applications/Media/.gitkeep b/applications/Media/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/Media/atm/manifest.yml b/applications/Media/atm/manifest.yml deleted file mode 100644 index 43c695747..000000000 --- a/applications/Media/atm/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/apfxtech/FlipperATM.git - commit_sha: ef2250c528edeecd3b92643017a3d81ca0fb3403 - -short_description: ATM player -description: "@APPSTORE.md" -changelog: "@CHANGELOG.md" -screenshots: - - "package/screenshots/1.png" - - "package/screenshots/2.png" \ No newline at end of file diff --git a/applications/Media/bpm_tapper/README.md b/applications/Media/bpm_tapper/README.md deleted file mode 100644 index 7b93be6bb..000000000 --- a/applications/Media/bpm_tapper/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![bpm_tapper](https://catalog.flipperzero.one/application/bpm_tapper/widget)](https://catalog.flipperzero.one/application/bpm_tapper/page) \ No newline at end of file diff --git a/applications/Media/bpm_tapper/manifest.yml b/applications/Media/bpm_tapper/manifest.yml deleted file mode 100644 index 952cc37fb..000000000 --- a/applications/Media/bpm_tapper/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/bpmtapper -description: "Tap center button to measure BPM" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@panki27" -screenshots: - - "./img/1.png" diff --git a/applications/Media/dvd_screensaver/README.md b/applications/Media/dvd_screensaver/README.md deleted file mode 100644 index 6b23d337b..000000000 --- a/applications/Media/dvd_screensaver/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![dvd_screensaver](https://catalog.flipperzero.one/application/dvd_screensaver/widget)](https://catalog.flipperzero.one/application/dvd_screensaver/page) \ No newline at end of file diff --git a/applications/Media/dvd_screensaver/manifest.yml b/applications/Media/dvd_screensaver/manifest.yml deleted file mode 100644 index 64ee53c36..000000000 --- a/applications/Media/dvd_screensaver/manifest.yml +++ /dev/null @@ -1,9 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/shantih19/flipper_dvd_screensaver.git - commit_sha: ac3524391a92e64c435673c1bf7cccf967999b89 -description: "DVD screensaver clone." -changelog: "v1.1 - Some randomness" -screenshots: - - "screenshot.png" \ No newline at end of file diff --git a/applications/Media/executor_keychain/README.md b/applications/Media/executor_keychain/README.md deleted file mode 100644 index 29a0438cd..000000000 --- a/applications/Media/executor_keychain/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![executor_keychain](https://catalog.flipperzero.one/application/executor_keychain/widget)](https://catalog.flipperzero.one/application/executor_keychain/page) \ No newline at end of file diff --git a/applications/Media/executor_keychain/manifest.yml b/applications/Media/executor_keychain/manifest.yml deleted file mode 100644 index 66faacf47..000000000 --- a/applications/Media/executor_keychain/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -author: 'Esteban Fuentealba' -category: 'Media' -changelog: '@./.catalog/changelog.md' -description: "@./.catalog/README.md" -icon: 'assets/executor_keychain_10px.png' -id: 'executor_keychain' -name: 'Flipper Keyller' -screenshots: - - '.catalog/screenshots/1.png' - - '.catalog/screenshots/2.png' -short_description: 'Flipper Keyller is an app for the Flipper Zero that emulates the iconic sounds of the classic 80s keychain.' -sourcecode: - location: - commit_sha: ffea64ec5a443e8ef08707fd20d431b9601d8f1b - origin: https://github.com/EstebanFuentealba/Flipper-Keyller.git - subdir: - type: git -version: 0.1 diff --git a/applications/Media/flizzer_tracker/README.md b/applications/Media/flizzer_tracker/README.md deleted file mode 100644 index 93e0482fe..000000000 --- a/applications/Media/flizzer_tracker/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flizzer_tracker](https://catalog.flipperzero.one/application/flizzer_tracker/widget)](https://catalog.flipperzero.one/application/flizzer_tracker/page) \ No newline at end of file diff --git a/applications/Media/flizzer_tracker/manifest.yml b/applications/Media/flizzer_tracker/manifest.yml deleted file mode 100644 index 175199504..000000000 --- a/applications/Media/flizzer_tracker/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/LTVA1/flizzer_tracker.git - commit_sha: f27480df8c8d7da1e972104497c1c2c1a4786f4d -description: "@README_CATALOG.md" -changelog: "@./docs/changelog.md" -screenshots: - - screenshots/pat.png - - screenshots/inst.png diff --git a/applications/Media/fzspground/manifest.yml b/applications/Media/fzspground/manifest.yml deleted file mode 100644 index 6199813ff..000000000 --- a/applications/Media/fzspground/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/alanfortlink/fzspground.git - commit_sha: fd3c2480001828801434c4f2616739daca50fbc2 -short_description: Space Playground for Flipper Zero -description: | - This is a screensaver that simulates a space with planets and asteroids. - You can configure the simlation to your liking, including the number of planets, gravity, and speed. -changelog: "./changelog.md" -screenshots: - - screenshots/ss2.png - - screenshots/ss1.png diff --git a/applications/Media/image_viewer/README.md b/applications/Media/image_viewer/README.md deleted file mode 100644 index 2133d497b..000000000 --- a/applications/Media/image_viewer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![image_viewer](https://catalog.flipperzero.one/application/image_viewer/widget)](https://catalog.flipperzero.one/application/image_viewer/page) \ No newline at end of file diff --git a/applications/Media/image_viewer/manifest.yml b/applications/Media/image_viewer/manifest.yml deleted file mode 100644 index f2ed6563c..000000000 --- a/applications/Media/image_viewer/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/polioan/flipper-zero-image-viewer.git - commit_sha: 82fbcb5d669bd3e6cbf7af7593ad8efe0f19f1bd -description: "@./README.md" -changelog: "@./CHANGELOG.md" -author: "@polioan" -screenshots: - - "./screenshot.png" diff --git a/applications/Media/metronome/README.md b/applications/Media/metronome/README.md deleted file mode 100644 index 1c7a28fdc..000000000 --- a/applications/Media/metronome/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![metronome](https://catalog.flipperzero.one/application/metronome/widget)](https://catalog.flipperzero.one/application/metronome/page) \ No newline at end of file diff --git a/applications/Media/metronome/manifest.yml b/applications/Media/metronome/manifest.yml deleted file mode 100644 index 501b79dc6..000000000 --- a/applications/Media/metronome/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/metronome -description: "Metronome app" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Various fixes, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@panki27 & @xMasterX" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Media/morse_code/README.md b/applications/Media/morse_code/README.md deleted file mode 100644 index acf0bcd06..000000000 --- a/applications/Media/morse_code/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![morse_code](https://catalog.flipperzero.one/application/morse_code/widget)](https://catalog.flipperzero.one/application/morse_code/page) \ No newline at end of file diff --git a/applications/Media/morse_code/manifest.yml b/applications/Media/morse_code/manifest.yml deleted file mode 100644 index 81168f9df..000000000 --- a/applications/Media/morse_code/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/morse_code -description: "Simple Morse Code parser" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@wh00hw & @xMasterX" -screenshots: - - "./img/1.png" diff --git a/applications/Media/morse_master/manifest.yml b/applications/Media/morse_master/manifest.yml deleted file mode 100644 index b709faebb..000000000 --- a/applications/Media/morse_master/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/w84death/morse-master.git - commit_sha: f6028bcfcbe6f14e94e6c4684db45759d11cc1b1 -description: "A comprehensive Morse code learning and practice app." -version: 1.0 -changelog: "@CHANGELOG.md" -author: "Krzysztof Krystian Jankowski" -screenshots: - - "media/titlescreen.png" - - "media/menu.png" - - "media/learn.png" - - "media/practice.png" - - "media/help.png" diff --git a/applications/Media/music_player/README.md b/applications/Media/music_player/README.md deleted file mode 100644 index f31b81511..000000000 --- a/applications/Media/music_player/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![music_player](https://catalog.flipperzero.one/application/music_player/widget)](https://catalog.flipperzero.one/application/music_player/page) \ No newline at end of file diff --git a/applications/Media/music_player/manifest.yml b/applications/Media/music_player/manifest.yml deleted file mode 100644 index a2e9586ec..000000000 --- a/applications/Media/music_player/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: 13f9f8d753a6196201dcf87a35b0eb82b26c1361 - subdir: music_player -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@DrZlo13" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" diff --git a/applications/Media/ocarina/README.md b/applications/Media/ocarina/README.md deleted file mode 100644 index 2724e3461..000000000 --- a/applications/Media/ocarina/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![ocarina](https://catalog.flipperzero.one/application/ocarina/widget)](https://catalog.flipperzero.one/application/ocarina/page) \ No newline at end of file diff --git a/applications/Media/ocarina/manifest.yml b/applications/Media/ocarina/manifest.yml deleted file mode 100644 index c34425752..000000000 --- a/applications/Media/ocarina/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/ocarina -description: "A basic Ocarina (of Time), Controls are the same as the N64 version of the Ocarina of Time" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@invalidna-me" -screenshots: - - "./img/1.png" diff --git a/applications/Media/text2sam/README.md b/applications/Media/text2sam/README.md deleted file mode 100644 index aaae87866..000000000 --- a/applications/Media/text2sam/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![text2sam](https://catalog.flipperzero.one/application/text2sam/widget)](https://catalog.flipperzero.one/application/text2sam/page) \ No newline at end of file diff --git a/applications/Media/text2sam/manifest.yml b/applications/Media/text2sam/manifest.yml deleted file mode 100644 index 67e22fcb8..000000000 --- a/applications/Media/text2sam/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipperzero-text2sam -description: "@README-catalog.md" -changelog: "v1.0 - Initial release, v1.1 - Description update, v1.2 - Sync Updates, v1.3 - Fixes for latest API, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@Round-Pi & (Fixes by @Willy-JL)" -screenshots: - - "./img/1.png" diff --git a/applications/Media/tuning_fork/README.md b/applications/Media/tuning_fork/README.md deleted file mode 100644 index 24e105c13..000000000 --- a/applications/Media/tuning_fork/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![tuning_fork](https://catalog.flipperzero.one/application/tuning_fork/widget)](https://catalog.flipperzero.one/application/tuning_fork/page) \ No newline at end of file diff --git a/applications/Media/tuning_fork/manifest.yml b/applications/Media/tuning_fork/manifest.yml deleted file mode 100644 index 2cc9fd05b..000000000 --- a/applications/Media/tuning_fork/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/besya/flipperzero-tuning-fork.git - commit_sha: dd789f91c65960f24e35a93d506520cae05fc04f -id: tuning_fork -name: Tuning Fork -category: Media -version: 2.1 -icon: tuning_fork_icon.png -short_description: Tuning fork for tuning musical instruments and more -description: "@./.catalog/README.md" -changelog: "@./.catalog/CHANGELOG.md" -author: "@besya" -screenshots: - - .catalog/screenshots/screenshot1.png - - .catalog/screenshots/screenshot2.png - - .catalog/screenshots/screenshot3.png - - .catalog/screenshots/screenshot4.png diff --git a/applications/Media/usb_midi/README.md b/applications/Media/usb_midi/README.md deleted file mode 100644 index 0f6163e33..000000000 --- a/applications/Media/usb_midi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![usb_midi](https://catalog.flipperzero.one/application/usb_midi/widget)](https://catalog.flipperzero.one/application/usb_midi/page) diff --git a/applications/Media/usb_midi/manifest.yml b/applications/Media/usb_midi/manifest.yml deleted file mode 100644 index efa331094..000000000 --- a/applications/Media/usb_midi/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/kribesk/flipper-zero-usb-midi.git - commit_sha: a79eafb38e94ed9dac54c7e1f0d50526877d0996 -description: "@README.md" -changelog: "@.catalog/changelog.md" -author: "@Kribesk (forked from @DrZlo13)" -screenshots: - - ".catalog/screenshots/1.png" diff --git a/applications/Media/video_player/README.md b/applications/Media/video_player/README.md deleted file mode 100644 index 841b4b15c..000000000 --- a/applications/Media/video_player/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![video_player](https://catalog.flipperzero.one/application/video_player/widget)](https://catalog.flipperzero.one/application/video_player/page) \ No newline at end of file diff --git a/applications/Media/video_player/manifest.yml b/applications/Media/video_player/manifest.yml deleted file mode 100644 index df96faec3..000000000 --- a/applications/Media/video_player/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/LTVA1/flipper-zero-video-player.git - commit_sha: a47ffb2a10b28cc7af5bfd833b8e91ad08fea91f - subdir: flipper_project -description: "@README_CATALOG.md" -changelog: "@./docs/changelog.md" -screenshots: - - screenshots/demo_screen.png diff --git a/applications/Media/wav_player/README.md b/applications/Media/wav_player/README.md deleted file mode 100644 index deba6ac31..000000000 --- a/applications/Media/wav_player/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![wav_player](https://catalog.flipperzero.one/application/wav_player/widget)](https://catalog.flipperzero.one/application/wav_player/page) \ No newline at end of file diff --git a/applications/Media/wav_player/manifest.yml b/applications/Media/wav_player/manifest.yml deleted file mode 100644 index c22f54e0d..000000000 --- a/applications/Media/wav_player/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/wav_player -description: "Audio player for WAV files, recommended to convert files to unsigned 8-bit PCM stereo, but it may work with others too" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3-v1.5 - Fixes and improvements" -author: "@DrZlo13 & (ported, fixed by @xMasterX), (improved by @LTVA1)" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Media/zero_tracker/README.md b/applications/Media/zero_tracker/README.md deleted file mode 100644 index 9bc4c24cb..000000000 --- a/applications/Media/zero_tracker/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![zero_tracker](https://catalog.flipperzero.one/application/zero_tracker/widget)](https://catalog.flipperzero.one/application/zero_tracker/page) \ No newline at end of file diff --git a/applications/Media/zero_tracker/manifest.yml b/applications/Media/zero_tracker/manifest.yml deleted file mode 100644 index ae0989d1d..000000000 --- a/applications/Media/zero_tracker/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/musictracker -description: "App plays hardcoded tracker song" -changelog: "v1.0 - Initial release, v1.1 - Fixed icons folder, v1.2 - Fixes for new API, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@DrZlo13" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/NFC/.gitkeep b/applications/NFC/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/NFC/cyborg_detector/README.md b/applications/NFC/cyborg_detector/README.md deleted file mode 100644 index 4ac9a7a4a..000000000 --- a/applications/NFC/cyborg_detector/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![cyborg_detector](https://catalog.flipperzero.one/application/cyborg_detector/widget)](https://catalog.flipperzero.one/application/cyborg_detector/page) \ No newline at end of file diff --git a/applications/NFC/cyborg_detector/manifest.yml b/applications/NFC/cyborg_detector/manifest.yml deleted file mode 100644 index 77a6ab153..000000000 --- a/applications/NFC/cyborg_detector/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -author: '@RocketGod-git' -category: 'NFC' -changelog: '@./docs/CHANGELOG.md' -description: '@./docs/README.md' -icon: 'icons/cyborg_detector_icon.png' -id: 'cyborg_detector' -name: 'Cyborg Detector' -screenshots: - - 'screenshots/Screenshot1.png' -short_description: 'App generates a continous NFC field to make body mod implant LEDs glow. Tested on a Dangerous Things xSIID.' -sourcecode: - location: - commit_sha: 62bf86337f15a4d9618af33f8445af6e98851b6d - origin: https://github.com/RocketGod-git/Flipper-Zero-Cyborg-Detector.git - subdir: - type: git -version: 1.1 diff --git a/applications/NFC/metroflip/README.md b/applications/NFC/metroflip/README.md deleted file mode 100644 index 9199082ce..000000000 --- a/applications/NFC/metroflip/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![metroflip](https://catalog.flipperzero.one/application/metroflip/widget)](https://catalog.flipperzero.one/application/metroflip/page) \ No newline at end of file diff --git a/applications/NFC/metroflip/manifest.yml b/applications/NFC/metroflip/manifest.yml deleted file mode 100644 index a93d820ce..000000000 --- a/applications/NFC/metroflip/manifest.yml +++ /dev/null @@ -1,30 +0,0 @@ -author: 'luu176' -category: 'NFC' -changelog: '@./CHANGELOG.md' -description: '@./app/README.md' -icon: 'icon.png' -id: 'metroflip' -name: 'Metroflip' -screenshots: - - 'screenshots/Menu-Top.png' - - 'screenshots/Menu-Middle.png' - - 'screenshots/Navigo.png' - - 'screenshots/Suica_Balance.png' - - 'screenshots/Suica_Vend1.png' - - 'screenshots/Suica_Vend2.png' - - 'screenshots/Suica_Issue1.png' - - 'screenshots/Suica_Store1.png' - - 'screenshots/Suica_Train1.png' - - 'screenshots/Suica_Train2.png' - - 'screenshots/Suica_Issue2.png' - - 'screenshots/Suica_Store2.png' - - -short_description: 'An implementation of Metrodroid on the Flipper Zero' -sourcecode: - location: - commit_sha: 3548f18ae0dfd41fe592561c31e26a6c29154aa2 - origin: https://github.com/luu176/Metroflip - subdir: - type: git -version: 1.0 diff --git a/applications/NFC/mfc_editor/README.md b/applications/NFC/mfc_editor/README.md deleted file mode 100644 index a9a12a735..000000000 --- a/applications/NFC/mfc_editor/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![mfc_editor](https://catalog.flipperzero.one/application/mfc_editor/widget)](https://catalog.flipperzero.one/application/mfc_editor/page) \ No newline at end of file diff --git a/applications/NFC/mfc_editor/manifest.yml b/applications/NFC/mfc_editor/manifest.yml deleted file mode 100644 index 3a201c879..000000000 --- a/applications/NFC/mfc_editor/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/TollyH/flipper-apps.git - commit_sha: 3f7d07b1655ef5277e650156846e1bd8357a2b3c - subdir: mfc-editor -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" - - ".catalog/screenshots/4.png" - - ".catalog/screenshots/5.png" - - ".catalog/screenshots/6.png" diff --git a/applications/NFC/mfkey/README.md b/applications/NFC/mfkey/README.md deleted file mode 100644 index 347b5120d..000000000 --- a/applications/NFC/mfkey/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![mfkey](https://catalog.flipperzero.one/application/mfkey/widget)](https://catalog.flipperzero.one/application/mfkey/page) diff --git a/applications/NFC/mfkey/manifest.yml b/applications/NFC/mfkey/manifest.yml deleted file mode 100644 index 92ca288b1..000000000 --- a/applications/NFC/mfkey/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: 223db798266e8fcd1eedf772ecee675bf4db2f2c - subdir: mfkey -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@noproto" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" diff --git a/applications/NFC/miband_nfc/README.md b/applications/NFC/miband_nfc/README.md deleted file mode 100644 index 81c60a695..000000000 --- a/applications/NFC/miband_nfc/README.md +++ /dev/null @@ -1,32 +0,0 @@ -## Status - -[![miband_nfc_writer](https://catalog.flipperzero.one/application/miband_nfc_writer/widget)]( -https://catalog.flipperzero.one/application/miband_nfc_writer/page -) - ---- - -## MiBand NFC Writer - -MiBand NFC Writer is an NFC application for **Flipper Zero** designed to interact -with **Xiaomi Mi Band NFC devices**. - -The application allows reading, writing and emulating NFC data stored on Mi Band -devices. - ---- - -## Features - -- Read Mi Band NFC data -- Write supported NFC blocks -- Emulate Mi Band NFC cards -- Verify card integrity -- Designed for Flipper Zero (F7) - ---- - -## Disclaimer - -This application is provided for **educational and research purposes only**. -The author is not responsible for any misuse. diff --git a/applications/NFC/miband_nfc/manifest.yml b/applications/NFC/miband_nfc/manifest.yml deleted file mode 100644 index 96d622faa..000000000 --- a/applications/NFC/miband_nfc/manifest.yml +++ /dev/null @@ -1,22 +0,0 @@ -id: miband_nfc -name: "Mi Band NFC" -version: "1.0.0" -category: "NFC" - -short_description: "Read, write and emulate NFC data on Xiaomi Mi Band devices using Flipper Zero." - -description: "@README_flipperlab.md" -changelog: "@CHANGELOG.md" - -author: "Luca Tomei" - -screenshots: - - "screenshots/screenshot_1.png" - - "screenshots/screenshot_2.png" - - "screenshots/screenshot_3.png" - -sourcecode: - type: git - location: - origin: https://github.com/LucaTomei/flipper-miband-nfc-writer.git - commit_sha: 3b8129c32eaba9e851fa6c075ee079a8ba19e19c diff --git a/applications/NFC/mifare_fuzzer/README.md b/applications/NFC/mifare_fuzzer/README.md deleted file mode 100644 index 39d4612b0..000000000 --- a/applications/NFC/mifare_fuzzer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![mifare_fuzzer](https://catalog.flipperzero.one/application/mifare_fuzzer/widget)](https://catalog.flipperzero.one/application/mifare_fuzzer/page) \ No newline at end of file diff --git a/applications/NFC/mifare_fuzzer/manifest.yml b/applications/NFC/mifare_fuzzer/manifest.yml deleted file mode 100644 index c932fee20..000000000 --- a/applications/NFC/mifare_fuzzer/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/mifare_fuzzer -description: "App emulates Mifare Classic cards with various UIDs to check how reader reacts on them" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Fixes for new API, v1.3 - Various fixes, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@spheeere98 & (Fixes for new API by @Sil333033)" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/NFC/networking_nfc_qr_app/manifest.yml b/applications/NFC/networking_nfc_qr_app/manifest.yml deleted file mode 100644 index d99917c8d..000000000 --- a/applications/NFC/networking_nfc_qr_app/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/DonJulve/Networking_NFC_QR_Flipper_Zero.git - commit_sha: "e788ffc0d464d7ae5fc8cf7be0bf2f64802007e0" -short_description: "Emulate NFC and display QR codes simultaneously" -description: | - This application allows emulating an NFC card and displaying a QR code simultaneously on the Flipper Zero screen. - Ideal for networking to share contact info via two methods at once. - - Features: - - NFC Emulation: Loads .nfc files. - - QR Visualization: Displays .qrcode files. - - Dual Interface: QR on screen while NFC emulates. - - See full readme: https://github.com/DonJulve/Networking_NFC_QR_Flipper_Zero/blob/main/README_en.md -changelog: "@.catalog/changelog.md" -screenshots: - - .catalog/screenshots/menu.png - - .catalog/screenshots/app_running.png diff --git a/applications/NFC/nfc_apdu_runner/README.md b/applications/NFC/nfc_apdu_runner/README.md deleted file mode 100644 index 6986cc22c..000000000 --- a/applications/NFC/nfc_apdu_runner/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![nfc_apdu_runner](https://catalog.flipperzero.one/application/nfc_apdu_runner/widget)](https://catalog.flipperzero.one/application/nfc_apdu_runner/page) \ No newline at end of file diff --git a/applications/NFC/nfc_apdu_runner/manifest.yml b/applications/NFC/nfc_apdu_runner/manifest.yml deleted file mode 100644 index 8aec557fc..000000000 --- a/applications/NFC/nfc_apdu_runner/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/nfc_apdu_runner -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - - "./catalog/screenshots/2.png" - - "./catalog/screenshots/3.png" diff --git a/applications/NFC/nfc_eink/README.md b/applications/NFC/nfc_eink/README.md deleted file mode 100644 index b62ba7ee9..000000000 --- a/applications/NFC/nfc_eink/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![nfc_eink](https://catalog.flipperzero.one/application/nfc_eink/widget)](https://catalog.flipperzero.one/application/nfc_eink/page) \ No newline at end of file diff --git a/applications/NFC/nfc_eink/manifest.yml b/applications/NFC/nfc_eink/manifest.yml deleted file mode 100644 index 5e728d26c..000000000 --- a/applications/NFC/nfc_eink/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/RebornedBrain/nfc_eink.git - commit_sha: edd3900c30608e9301be85bbe997833e54a1f220 -description: "@README.md" -changelog: "@changelog.md" -screenshots: - - screenshots/1.png - - screenshots/2.png diff --git a/applications/NFC/nfc_login/manifest.yml b/applications/NFC/nfc_login/manifest.yml deleted file mode 100644 index 8fc909cc4..000000000 --- a/applications/NFC/nfc_login/manifest.yml +++ /dev/null @@ -1,25 +0,0 @@ -author: 'Play2BReal' -category: 'NFC' -changelog: "@changelog.md" -description: "@README.md" -icon: 'icons/icon.png' -id: 'nfc_login' -name: 'NFC Login' - -screenshots: - - screenshots/ss0.png - - screenshots/ss1.png - - screenshots/ss2.png - - screenshots/ss3.png - - screenshots/ss4.png - - screenshots/ss5.png - -short_description: NFC based desktop login using USB HID or BLE HID - -sourcecode: - location: - commit_sha: c265bafab7a3e402c74cb623a6198228297077cc - origin: https://github.com/Play2BReal/NFC-Login - type: git - -version: 1.1.2 diff --git a/applications/NFC/nfc_magic/README.md b/applications/NFC/nfc_magic/README.md deleted file mode 100644 index 6560c0ebb..000000000 --- a/applications/NFC/nfc_magic/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![nfc_magic](https://catalog.flipperzero.one/application/nfc_magic/widget)](https://catalog.flipperzero.one/application/nfc_magic/page) \ No newline at end of file diff --git a/applications/NFC/nfc_magic/manifest.yml b/applications/NFC/nfc_magic/manifest.yml deleted file mode 100644 index 5dda91fe5..000000000 --- a/applications/NFC/nfc_magic/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: e1311a6da20491b20c32bfc7c00c6b6da5c7a9a7 - subdir: nfc_magic -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@AloneLiberty" -screenshots: - - ".catalog/screenshots/0.png" - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" diff --git a/applications/NFC/nfc_maker/README.md b/applications/NFC/nfc_maker/README.md deleted file mode 100644 index 38cebe3de..000000000 --- a/applications/NFC/nfc_maker/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![nfc_maker](https://catalog.flipperzero.one/application/nfc_maker/widget)](https://catalog.flipperzero.one/application/nfc_maker/page) \ No newline at end of file diff --git a/applications/NFC/nfc_maker/manifest.yml b/applications/NFC/nfc_maker/manifest.yml deleted file mode 100644 index 50ab841df..000000000 --- a/applications/NFC/nfc_maker/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Next-Flip/Momentum-Apps.git - commit_sha: 72f377e8d104181260511079c91a443bff9c4721 - subdir: nfc_maker -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -screenshots: - - .catalog/1.png - - .catalog/2.png - - .catalog/3.png - - .catalog/4.png - - .catalog/5.png - - .catalog/6.png diff --git a/applications/NFC/nfcurl/README.md b/applications/NFC/nfcurl/README.md deleted file mode 100644 index 1c2393c3b..000000000 --- a/applications/NFC/nfcurl/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![nfcurl](https://catalog.flipperzero.one/application/nfcurl/widget)](https://catalog.flipperzero.one/application/nfcurl/page) \ No newline at end of file diff --git a/applications/NFC/nfcurl/manifest.yml b/applications/NFC/nfcurl/manifest.yml deleted file mode 100644 index e81683da0..000000000 --- a/applications/NFC/nfcurl/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/y-dejong/nfcurl.git - commit_sha: 1e243e49e6c8f60f7094d52e5ed5914b4323d29a -changelog: "@./docs/changelog.md" -description: "@./docs/description.md" -screenshots: - - screenshots/enter-url.png - - screenshots/emulate.png - - screenshots/options.png diff --git a/applications/NFC/passy/README.md b/applications/NFC/passy/README.md deleted file mode 100644 index f0fb71043..000000000 --- a/applications/NFC/passy/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![passy](https://catalog.flipperzero.one/application/passy/widget)](https://catalog.flipperzero.one/application/passy/page) \ No newline at end of file diff --git a/applications/NFC/passy/manifest.yml b/applications/NFC/passy/manifest.yml deleted file mode 100644 index 91b13e04c..000000000 --- a/applications/NFC/passy/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/bettse/passy.git - commit_sha: 021e6d6a50dc352c884a5d2caa84175eb1784fef -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "bettse" -screenshots: - - ".catalog/screenshots/menu.png" - - ".catalog/screenshots/passport_number_input.png" - - ".catalog/screenshots/read_success.png" diff --git a/applications/NFC/picopass/README.md b/applications/NFC/picopass/README.md deleted file mode 100644 index 6166b577a..000000000 --- a/applications/NFC/picopass/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![picopass](https://catalog.flipperzero.one/application/picopass/widget)](https://catalog.flipperzero.one/application/picopass/page) diff --git a/applications/NFC/picopass/manifest.yml b/applications/NFC/picopass/manifest.yml deleted file mode 100644 index 2bf144613..000000000 --- a/applications/NFC/picopass/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/bettse/picopass.git - commit_sha: b54ff9a88c0284b3e577039ba6b116d3e38fbd9a -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@bettse" -screenshots: - - ".catalog/screenshots/menu.png" - - ".catalog/screenshots/pacs.png" - - ".catalog/screenshots/saved menu.png" diff --git a/applications/NFC/seader/README.md b/applications/NFC/seader/README.md deleted file mode 100644 index d30e41f52..000000000 --- a/applications/NFC/seader/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![seader](https://catalog.flipperzero.one/application/seader/widget)](https://catalog.flipperzero.one/application/seader/page) \ No newline at end of file diff --git a/applications/NFC/seader/manifest.yml b/applications/NFC/seader/manifest.yml deleted file mode 100644 index 83d56c12c..000000000 --- a/applications/NFC/seader/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/bettse/seader.git - commit_sha: 57064e15066b5f4f7a70c9aa42396ee97ecb585d -short_description: "Allows for reading credential from HID iClass, iClass SE, Desfire EV1/EV2, and Seos" -description: | - Allows for reading credential from HID iClass, iClass SE, MFC SE, Desfire EV1/EV2, and Seos. Credentials can be saved in an agnostic format, or as various Flipper formats (Prox, MFC, iClass, iClass SR), depending on the original type. - Requires addon: UART to mini-SIM adapter and HID SAM. - See full readme for wiring and more information: https://github.com/bettse/seader/blob/main/readme.md -changelog: "@.catalog/changelog.md" -screenshots: - - .catalog/screenshots/menu.png - - .catalog/screenshots/pacs.png - - .catalog/screenshots/save_menu.png diff --git a/applications/NFC/seos/README.md b/applications/NFC/seos/README.md deleted file mode 100644 index 8c63f59e1..000000000 --- a/applications/NFC/seos/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![seos](https://catalog.flipperzero.one/application/seos/widget)](https://catalog.flipperzero.one/application/seos/page) \ No newline at end of file diff --git a/applications/NFC/seos/manifest.yml b/applications/NFC/seos/manifest.yml deleted file mode 100644 index 076ad975f..000000000 --- a/applications/NFC/seos/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/bettse/seos_compatible.git - commit_sha: 3b31ff37bc68a1ce2a622ab2c6e2de65ee4bc9a0 -description: "@.catalog/README.md" -changelog: "@CHANGELOG.md" -author: "bettse" -screenshots: - - ".catalog/screenshots/menu.png" - - ".catalog/screenshots/read_success.png" diff --git a/applications/NFC/udecard/manifest.yml b/applications/NFC/udecard/manifest.yml deleted file mode 100644 index 9a7965234..000000000 --- a/applications/NFC/udecard/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/hahnworks/UDECard.git - commit_sha: 53bf53fd4b66d003da2e56a95de09893683ebbe3 -short_description: Analyse student ID cards from the University of Duisburg-Essen (Intercard). -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -screenshots: - - .catalog/screenshots/detect_scene.png - - .catalog/screenshots/result_scene.png - - .catalog/screenshots/main_menu.png -version: 1.0.3 diff --git a/applications/NFC/vb_migrate/README.md b/applications/NFC/vb_migrate/README.md deleted file mode 100644 index a515b4742..000000000 --- a/applications/NFC/vb_migrate/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![vb_migrate](https://catalog.flipperzero.one/application/vb_migrate/widget)](https://catalog.flipperzero.one/application/vb_migrate/page) \ No newline at end of file diff --git a/applications/NFC/vb_migrate/manifest.yml b/applications/NFC/vb_migrate/manifest.yml deleted file mode 100644 index d4ea743da..000000000 --- a/applications/NFC/vb_migrate/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/GMMan/flipperzero-vb-migrate.git - commit_sha: 1e5f5865b4ddb3f927234285bd5a21e609cc666f -description: "@README_catalog.md" -changelog: "@CHANGES.md" -screenshots: - - .flipcorg/gallery/1.png - - .flipcorg/gallery/2.png - - .flipcorg/gallery/3.png - - .flipcorg/gallery/4.png - - .flipcorg/gallery/5.png - - .flipcorg/gallery/6.png diff --git a/applications/NFC/vk_thermo/manifest.yml b/applications/NFC/vk_thermo/manifest.yml deleted file mode 100644 index 2e504f89d..000000000 --- a/applications/NFC/vk_thermo/manifest.yml +++ /dev/null @@ -1,22 +0,0 @@ -short_description: "Read temperature from your VivoKey Thermo via NFC. Supports multi-Thermo tracking, history, and graph views." - -description: "@README_CATALOG.md" - -changelog: "@CHANGELOG_CATALOG.md" - -author: "VivoKey Technologies" - -sourcecode: - type: git - location: - origin: https://github.com/VivoKey/vkthermo-flipper.git - commit_sha: ded6be8dcfb6048f06bbfa33c4e6e963786c5f95 - -icon: "icons/vk_thermo_10px.png" - -screenshots: - - './screenshots/vkthermo-flipper-main.png' - - './screenshots/vkthermo-flipper-result-c.png' - - './screenshots/vkthermo-flipper-log.png' - - './screenshots/vkthermo-flipper-graph.png' - - './screenshots/vkthermo-flipper-settings.png' diff --git a/applications/NFC/weebo/manifest.yml b/applications/NFC/weebo/manifest.yml deleted file mode 100644 index 5bbc3bcae..000000000 --- a/applications/NFC/weebo/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/bettse/weebo.git - commit_sha: ccfa358540954e3c2d4826fde7e6de6ab0705cd8 -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "bettse" -screenshots: - - ".catalog/screenshots/menu.png" - - ".catalog/screenshots/emulate.png" - - ".catalog/screenshots/info.png" diff --git a/applications/RFID/.gitkeep b/applications/RFID/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/RFID/fdxb_maker/manifest.yml b/applications/RFID/fdxb_maker/manifest.yml deleted file mode 100644 index b87779a1d..000000000 --- a/applications/RFID/fdxb_maker/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/snowsign/fdxb-maker.git - commit_sha: 506a5d58c2c2ba6d13a11608e520d8ddb57f6540 -description: "@README.md" -changelog: "@changelog.md" -screenshots: - - screenshots/country.png - - screenshots/national.png - - screenshots/extra_info.png - - screenshots/warning.png \ No newline at end of file diff --git a/applications/RFID/fuzzer_rfid/README.md b/applications/RFID/fuzzer_rfid/README.md deleted file mode 100644 index 6c2371a6f..000000000 --- a/applications/RFID/fuzzer_rfid/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fuzzer_rfid](https://catalog.flipperzero.one/application/fuzzer_rfid/widget)](https://catalog.flipperzero.one/application/fuzzer_rfid/page) \ No newline at end of file diff --git a/applications/RFID/fuzzer_rfid/manifest.yml b/applications/RFID/fuzzer_rfid/manifest.yml deleted file mode 100644 index e3bd8af4f..000000000 --- a/applications/RFID/fuzzer_rfid/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/DarkFlippers/Multi_Fuzzer.git - commit_sha: 2ecfcd857da54b7a08014d14d7b46eb235b72695 -id: "fuzzer_rfid" -description: "@./catalog/docs/rfid/README.md" -changelog: "@./catalog/docs/rfid/Changelog.md" -screenshots: - - "./catalog/screenshots/Main_menu.png" - - "./catalog/screenshots/Attack_screen.png" - - "./catalog/screenshots/Pause.png" - - "./catalog/screenshots/Field_editor.png" \ No newline at end of file diff --git a/applications/RFID/key_generator/README.md b/applications/RFID/key_generator/README.md deleted file mode 100644 index 0c4e47a95..000000000 --- a/applications/RFID/key_generator/README.md +++ /dev/null @@ -1,5 +0,0 @@ -A program that generates universal keys from a EM4100 key - -## Status - -[![key_generator](https://catalog.flipperzero.one/application/key_generator/widget)](https://catalog.flipperzero.one/application/key_generator/page) diff --git a/applications/RFID/key_generator/manifest.yml b/applications/RFID/key_generator/manifest.yml deleted file mode 100644 index 5b9e9f9bc..000000000 --- a/applications/RFID/key_generator/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Milk-Cool/fz-em4100-generator.git - commit_sha: d8b67d779fa834cc28ca2f0d0ca7607ff8a96f65 -short_description: "RFID potential universal keys generator" -description: "@README.md" -changelog: "v1.1 - Increased version so that it shows up in the catalog; v1.0 - initial release" -author: "milk_cool" -screenshots: - - "./.flipcorg/gallery/Screenshot-20230223-203332.png" diff --git a/applications/RFID/t5577_multiwriter/README.md b/applications/RFID/t5577_multiwriter/README.md deleted file mode 100644 index 64ef9543c..000000000 --- a/applications/RFID/t5577_multiwriter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![t5577_multiwriter](https://catalog.flipperzero.one/application/t5577_multiwriter/widget)](https://catalog.flipperzero.one/application/t5577_multiwriter/page) \ No newline at end of file diff --git a/applications/RFID/t5577_multiwriter/manifest.yml b/applications/RFID/t5577_multiwriter/manifest.yml deleted file mode 100644 index eb5908cec..000000000 --- a/applications/RFID/t5577_multiwriter/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/t5577_multiwriter -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - diff --git a/applications/RFID/t5577_writer/README.md b/applications/RFID/t5577_writer/README.md deleted file mode 100644 index ae6d6f4ac..000000000 --- a/applications/RFID/t5577_writer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![t5577_writer](https://catalog.flipperzero.one/application/t5577_writer/widget)](https://catalog.flipperzero.one/application/t5577_writer/page) \ No newline at end of file diff --git a/applications/RFID/t5577_writer/manifest.yml b/applications/RFID/t5577_writer/manifest.yml deleted file mode 100644 index 1cc6ae1f5..000000000 --- a/applications/RFID/t5577_writer/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/zinongli/T5577_Raw_Writer.git - commit_sha: 96fd8e8f3495bfbe2ce7cd65760d1e5eeba80115 -description: "@README.md" -changelog: "@CHANGELOG.md" -author: "Torron" -screenshots: - - "screenshots/main_menu.png" - - "screenshots/config_1.png" - - "screenshots/config_2.png" - - "screenshots/writing.png" - - "screenshots/load.png" - - "screenshots/about.png" \ No newline at end of file diff --git a/applications/Sub-GHz/.gitkeep b/applications/Sub-GHz/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/Sub-GHz/esubghz_chat/README.md b/applications/Sub-GHz/esubghz_chat/README.md deleted file mode 100644 index b194326e0..000000000 --- a/applications/Sub-GHz/esubghz_chat/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![esubghz_chat](https://catalog.flipperzero.one/application/esubghz_chat/widget)](https://catalog.flipperzero.one/application/esubghz_chat/page) \ No newline at end of file diff --git a/applications/Sub-GHz/esubghz_chat/manifest.yml b/applications/Sub-GHz/esubghz_chat/manifest.yml deleted file mode 100644 index bff352de1..000000000 --- a/applications/Sub-GHz/esubghz_chat/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/esubghz_chat -description: "@README.md" -changelog: "v1.1 - Release, v1.2 - Fixes and imporvements" -author: "@twisted-pear & @xMasterX & more in ReadMe" -screenshots: - - "./screenshots/1.png" - - "./screenshots/2.png" - - "./screenshots/3.png" - - "./screenshots/4.png" diff --git a/applications/Sub-GHz/flipper_share/manifest.yml b/applications/Sub-GHz/flipper_share/manifest.yml deleted file mode 100644 index e6819e544..000000000 --- a/applications/Sub-GHz/flipper_share/manifest.yml +++ /dev/null @@ -1,22 +0,0 @@ -# PR this file to: https://github.com/flipperdevices/flipper-application-catalog/ -# applications/Sub-GHz/flipper_share/manifest.yml - -# Check: python3 tools/bundle.py --nolint applications/Sub-GHz/flipper_share/manifest.yml bundle.zip - -sourcecode: - type: git - location: - origin: https://github.com/lomalkin/flipper-zero-apps.git - commit_sha: ec79fc5b6ea2f9e655c69eec587460cbc3e7bcda - subdir: flipper_share -description: "@README_catalog.md" -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/1.png - - screenshots/2.png - - screenshots/3.png - - screenshots/4.png - - screenshots/5.png - - screenshots/6.png - - screenshots/7.png - diff --git a/applications/Sub-GHz/fmf_to_sub/README.md b/applications/Sub-GHz/fmf_to_sub/README.md deleted file mode 100644 index 9dcd5006e..000000000 --- a/applications/Sub-GHz/fmf_to_sub/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fmf_to_sub](https://catalog.flipperzero.one/application/fmf_to_sub/widget)](https://catalog.flipperzero.one/application/fmf_to_sub/page) \ No newline at end of file diff --git a/applications/Sub-GHz/fmf_to_sub/manifest.yml b/applications/Sub-GHz/fmf_to_sub/manifest.yml deleted file mode 100644 index adab4073b..000000000 --- a/applications/Sub-GHz/fmf_to_sub/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jamisonderek/flipper-zero-tutorials.git - commit_sha: 09ed9f6bd69bdae141469ab150bc2df698843d14 - subdir: subghz/fmf_to_sub -description: "@./gallery/README.md" -changelog: "@./gallery/CHANGELOG.md" -author: "CodeAllNight (MrDerekJamison)" -screenshots: - - "gallery/00-main-menu.png" - - "gallery/01-about1.png" - - "gallery/02-about2.png" - - "gallery/03-configure.png" - - "gallery/04-convert.png" - - "gallery/05-file.png" \ No newline at end of file diff --git a/applications/Sub-GHz/genie_record/README.md b/applications/Sub-GHz/genie_record/README.md deleted file mode 100644 index a3c805fb0..000000000 --- a/applications/Sub-GHz/genie_record/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![genie_record](https://catalog.flipperzero.one/application/genie_record/widget)](https://catalog.flipperzero.one/application/genie_record/page) \ No newline at end of file diff --git a/applications/Sub-GHz/genie_record/manifest.yml b/applications/Sub-GHz/genie_record/manifest.yml deleted file mode 100644 index a24354736..000000000 --- a/applications/Sub-GHz/genie_record/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jamisonderek/flipper-zero-tutorials.git - commit_sha: bd21796c034ed76738fa71bacb83cb099ad6f559 - subdir: subghz/apps/genie-recorder -description: "@./.flipcorg/gallery/README.md" -changelog: "@./.flipcorg/gallery/CHANGELOG.md" -author: "CodeAllNight (MrDerekJamison)" -screenshots: - - ".flipcorg/gallery/01-about.png" - - ".flipcorg/gallery/02-learn-done.png" - - ".flipcorg/gallery/03-send-some-codes.png" - - ".flipcorg/gallery/04-main-menu.png" - - ".flipcorg/gallery/05-config.png" - - ".flipcorg/gallery/06-config-genie-file.png" - - ".flipcorg/gallery/07-learn-codes.png" - - ".flipcorg/gallery/08-send-new.png" - - ".flipcorg/gallery/09-send-complete.png" diff --git a/applications/Sub-GHz/hc11_modem/README.md b/applications/Sub-GHz/hc11_modem/README.md deleted file mode 100644 index dbf708e24..000000000 --- a/applications/Sub-GHz/hc11_modem/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![hc11_modem](https://catalog.flipperzero.one/application/hc11_modem/widget)](https://catalog.flipperzero.one/application/hc11_modem/page) \ No newline at end of file diff --git a/applications/Sub-GHz/hc11_modem/manifest.yml b/applications/Sub-GHz/hc11_modem/manifest.yml deleted file mode 100644 index f00acaa1a..000000000 --- a/applications/Sub-GHz/hc11_modem/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Giraut/flipper_zero_hc11_wireless_modem - commit_sha: 043c1454c69c101162789576cd689a1325f3f970 -short_description: HC-11 wireless modem -description: "HC-11 wireless modem emulator for the Flipper Zero" -changelog: "@Changelog.md" -screenshots: - - screenshots/1-splash_version.png - - screenshots/2-usb_serial_passthrough1.png - - screenshots/3-usb_serial_passthrough2.png - - screenshots/4-app_description.png - - screenshots/5-configuration_menu.png - - screenshots/6-main_menu.png - - screenshots/7-warning.png diff --git a/applications/Sub-GHz/pocsag_pager/README.md b/applications/Sub-GHz/pocsag_pager/README.md deleted file mode 100644 index 6df78f3d1..000000000 --- a/applications/Sub-GHz/pocsag_pager/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![pocsag_pager](https://catalog.flipperzero.one/application/pocsag_pager/widget)](https://catalog.flipperzero.one/application/pocsag_pager/page) \ No newline at end of file diff --git a/applications/Sub-GHz/pocsag_pager/manifest.yml b/applications/Sub-GHz/pocsag_pager/manifest.yml deleted file mode 100644 index a7f690af2..000000000 --- a/applications/Sub-GHz/pocsag_pager/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/pocsag_pager -description: "@README.md" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Fixes for new API and improved decoder, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@xMasterX & @Shmuma & (Improved decoder by @htotoo)" -screenshots: - - "./img/1.png" - - "./img/2.png" - - "./img/3.png" diff --git a/applications/Sub-GHz/protoview/README.md b/applications/Sub-GHz/protoview/README.md deleted file mode 100644 index 6d95b2fb4..000000000 --- a/applications/Sub-GHz/protoview/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![protoview](https://catalog.flipperzero.one/application/protoview/widget)](https://catalog.flipperzero.one/application/protoview/page) \ No newline at end of file diff --git a/applications/Sub-GHz/protoview/manifest.yml b/applications/Sub-GHz/protoview/manifest.yml deleted file mode 100644 index b70a74e27..000000000 --- a/applications/Sub-GHz/protoview/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/protoview -description: "@README.md" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@antirez & (fixes by @xMasterX)" -screenshots: - - "./img/1.png" - - "./img/2.png" - - "./img/3.png" diff --git a/applications/Sub-GHz/radio_scanner/README.md b/applications/Sub-GHz/radio_scanner/README.md deleted file mode 100644 index 1691b798f..000000000 --- a/applications/Sub-GHz/radio_scanner/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![radio_scanner](https://catalog.flipperzero.one/application/radio_scanner/widget)](https://catalog.flipperzero.one/application/radio_scanner/page) \ No newline at end of file diff --git a/applications/Sub-GHz/radio_scanner/manifest.yml b/applications/Sub-GHz/radio_scanner/manifest.yml deleted file mode 100644 index 9911cf510..000000000 --- a/applications/Sub-GHz/radio_scanner/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -author: '@RocketGod-git' -category: 'Sub-GHz' -changelog: '@./docs/CHANGELOG.md' -description: '@./docs/README.md' -icon: 'icons/radio_scanner.png' -id: 'radio_scanner' -name: 'Radio Scanner' -screenshots: - - 'screenshots/Screenshot1.png' -short_description: 'Sub-GHz Radio Scanner with audio output to internal speaker' -sourcecode: - location: - commit_sha: 238513c477789caf43e361424fbf1b8768986637 - origin: https://github.com/RocketGod-git/Flipper-Zero-Radio-Scanner.git - subdir: - type: git -version: 0.2 diff --git a/applications/Sub-GHz/spectrum_analyzer/README.md b/applications/Sub-GHz/spectrum_analyzer/README.md deleted file mode 100644 index 6a143c7cd..000000000 --- a/applications/Sub-GHz/spectrum_analyzer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![spectrum_analyzer](https://catalog.flipperzero.one/application/spectrum_analyzer/widget)](https://catalog.flipperzero.one/application/spectrum_analyzer/page) \ No newline at end of file diff --git a/applications/Sub-GHz/spectrum_analyzer/manifest.yml b/applications/Sub-GHz/spectrum_analyzer/manifest.yml deleted file mode 100644 index c539e4052..000000000 --- a/applications/Sub-GHz/spectrum_analyzer/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/spectrum_analyzer -description: "@README.md" -changelog: "v1.0 - Initial release, v1.1 - Fixes, v1.2 - Sync Updates, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@xMasterX & @theY4Kman & @ALEEF02 (original by @jolcese)" -screenshots: - - "./img/1.png" - - "./img/2.png" - - "./img/3.png" diff --git a/applications/Sub-GHz/sub_analyzer/README.md b/applications/Sub-GHz/sub_analyzer/README.md deleted file mode 100644 index 3208e925b..000000000 --- a/applications/Sub-GHz/sub_analyzer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![sub_analyzer](https://catalog.flipperzero.one/application/sub_analyzer/widget)](https://catalog.flipperzero.one/application/sub_analyzer/page) \ No newline at end of file diff --git a/applications/Sub-GHz/sub_analyzer/manifest.yml b/applications/Sub-GHz/sub_analyzer/manifest.yml deleted file mode 100644 index 2aa1f279c..000000000 --- a/applications/Sub-GHz/sub_analyzer/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/sub_analyzer -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - - "./catalog/screenshots/2.png" - - "./catalog/screenshots/3.png" - - "./catalog/screenshots/4.png" - - "./catalog/screenshots/5.png" - - "./catalog/screenshots/6.png" - diff --git a/applications/Sub-GHz/subghz_remote_ofw/README.md b/applications/Sub-GHz/subghz_remote_ofw/README.md deleted file mode 100644 index 6a529898c..000000000 --- a/applications/Sub-GHz/subghz_remote_ofw/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![subghz_remote_ofw](https://catalog.flipperzero.one/application/subghz_remote_ofw/widget)](https://catalog.flipperzero.one/application/subghz_remote_ofw/page) \ No newline at end of file diff --git a/applications/Sub-GHz/subghz_remote_ofw/manifest.yml b/applications/Sub-GHz/subghz_remote_ofw/manifest.yml deleted file mode 100644 index 36bc02ef0..000000000 --- a/applications/Sub-GHz/subghz_remote_ofw/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/DarkFlippers/SubGHz_Remote.git - commit_sha: 841f36b269a467a27b26d55223e1d80520e279a0 -id: "subghz_remote_ofw" -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/Remote_idle.png" - - "./catalog/screenshots/Remote_send.png" - - "./catalog/screenshots/Editor_main.png" - - "./catalog/screenshots/Editor_submenu.png" \ No newline at end of file diff --git a/applications/Sub-GHz/subghz_scheduler/README.md b/applications/Sub-GHz/subghz_scheduler/README.md deleted file mode 100644 index ce9c77524..000000000 --- a/applications/Sub-GHz/subghz_scheduler/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![subghz_scheduler](https://catalog.flipperzero.one/application/subghz_scheduler/widget)](https://catalog.flipperzero.one/application/subghz_scheduler/page) \ No newline at end of file diff --git a/applications/Sub-GHz/subghz_scheduler/manifest.yml b/applications/Sub-GHz/subghz_scheduler/manifest.yml deleted file mode 100644 index 9ff062ef6..000000000 --- a/applications/Sub-GHz/subghz_scheduler/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/shalebridge/flipper-subghz-scheduler.git - commit_sha: 3c760f122036780e80e342486afbaeec17186747 -name: "Sub-GHz Scheduler" -id: "subghz_scheduler" -version: "2.3" -description: "Individual *.sub or playlist *.txt files can be used for Sub-GHz interval transmission. Discrete intervals from 1 seconds to 24 hours are selectable, as well as repeating transmissions for individual data. See repo for description of settings and modes." -short_description: "Send a Sub-GHz signal repeatedly at a given interval." -changelog: "@CHANGELOG.md" -author: "Patrick Edwards" -targets: ['all'] -category: "Sub-GHz" -icon: "icons/icon.png" -screenshots: - - "./screenshots/v2.3/rundisplay.png" - - "./screenshots/v2.3/intervals.png" - - "./screenshots/v2.3/radio.png" - - "./screenshots/v2.3/txmode.png" diff --git a/applications/Sub-GHz/tpms/README.md b/applications/Sub-GHz/tpms/README.md deleted file mode 100644 index a886f3e89..000000000 --- a/applications/Sub-GHz/tpms/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![tpms](https://catalog.flipperzero.one/application/tpms/widget)](https://catalog.flipperzero.one/application/tpms/page) \ No newline at end of file diff --git a/applications/Sub-GHz/tpms/manifest.yml b/applications/Sub-GHz/tpms/manifest.yml deleted file mode 100644 index f02fdb782..000000000 --- a/applications/Sub-GHz/tpms/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/tpms_receiver -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - - "./catalog/screenshots/2.png" - - "./catalog/screenshots/3.png" - - "./catalog/screenshots/4.png" - - "./catalog/screenshots/5.png" - diff --git a/applications/Sub-GHz/weather_station/README.md b/applications/Sub-GHz/weather_station/README.md deleted file mode 100644 index 730ad1934..000000000 --- a/applications/Sub-GHz/weather_station/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![weather_station](https://catalog.flipperzero.one/application/weather_station/widget)](https://catalog.flipperzero.one/application/weather_station/page) \ No newline at end of file diff --git a/applications/Sub-GHz/weather_station/manifest.yml b/applications/Sub-GHz/weather_station/manifest.yml deleted file mode 100644 index 48a79a2ac..000000000 --- a/applications/Sub-GHz/weather_station/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: e1311a6da20491b20c32bfc7c00c6b6da5c7a9a7 - subdir: weather_station -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@Skorpionm" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" diff --git a/applications/Tools/.gitkeep b/applications/Tools/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/Tools/analog_clock/README.md b/applications/Tools/analog_clock/README.md deleted file mode 100644 index bd2d7db94..000000000 --- a/applications/Tools/analog_clock/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![analog_clock](https://catalog.flipperzero.one/application/analog_clock/widget)](https://catalog.flipperzero.one/application/analog_clock/page) \ No newline at end of file diff --git a/applications/Tools/analog_clock/manifest.yml b/applications/Tools/analog_clock/manifest.yml deleted file mode 100644 index a80fb948d..000000000 --- a/applications/Tools/analog_clock/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipper_analog_clock -description: "Shows analog clock on Flipper screen" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Fixes for latest API, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@scrolltex" -screenshots: - - "./img/1.png" diff --git a/applications/Tools/animation_switcher/README.md b/applications/Tools/animation_switcher/README.md deleted file mode 100644 index 9bbb22143..000000000 --- a/applications/Tools/animation_switcher/README.md +++ /dev/null @@ -1,14 +0,0 @@ -# What does this app do? - -The background animations for the Flipper are controlled by a single manifest.txt file. However, it does not provide the user with the ability to truly switch between different animations (or presets of animations) at will. This app aims to solve that, allowing you to create and apply new manifest.txt files on the fly! Just select the animations you want, configure their butthurt, level and weight parameters, name the playlist and apply it. - -# How do I use it? - -The app is pretty intuitive, arrow buttons are used to navigate the menus, OK button is used to select options, back button is used to return. For additional help, please check the README file in the [official Animation Switcher repository](https://github.com/lsalik2/FlipperAnimationSwitcher) - -# What's next? - -- Manual manifest.txt import as a playlist -- Automatic backup of the previous manifest.txt before applying a new playlist -- Animation previewer screen -- Increase maximum animation count beyond 128 \ No newline at end of file diff --git a/applications/Tools/animation_switcher/manifest.yml b/applications/Tools/animation_switcher/manifest.yml deleted file mode 100644 index b1715ebd2..000000000 --- a/applications/Tools/animation_switcher/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/lsalik2/FlipperAnimationSwitcher.git - commit_sha: dcc225ccbac031c91659dd2f0175f27a3816ac85 -short_description: Change your background animations on the fly! -description: "@README.md" -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/1_menu.png - - screenshots/2_playlist_create.png - - screenshots/3_playlist_name.png - - screenshots/4_playlist_preview.png - - screenshots/5_playlist_apply.png - - screenshots/6_settings.png - - screenshots/7_about.png \ No newline at end of file diff --git a/applications/Tools/barcode_app/README.md b/applications/Tools/barcode_app/README.md deleted file mode 100644 index 946af7878..000000000 --- a/applications/Tools/barcode_app/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![barcode_app](https://catalog.flipperzero.one/application/barcode_app/widget)](https://catalog.flipperzero.one/application/barcode_app/page) \ No newline at end of file diff --git a/applications/Tools/barcode_app/manifest.yml b/applications/Tools/barcode_app/manifest.yml deleted file mode 100644 index 0c24ab100..000000000 --- a/applications/Tools/barcode_app/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/barcode_gen -description: "App allows you to display various barcodes on flipper screen" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Various fixes, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@Kingal1337" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Tools/blinker/README.md b/applications/Tools/blinker/README.md deleted file mode 100644 index fe5d5a426..000000000 --- a/applications/Tools/blinker/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# Blinker - -A Flipper Zero application that blinks LEDs with a decreasing frequency over time. Unlike traditional Pomodoro timers, it provides visual feedback through LED blinks that gradually slow down. - -# Application Features - -## Main screen -* **Menu:** available options - * **Int.** - configuration of max and min intervals using the number picker screen - * **Dur.** - configuration of duration of execution using the number picker screen - * **Flash** - start blinking the LED light and move to execution screen - -## Number picker screen -* **Header:** name of selected mode selected mode and unit. - * Available modes are max interval, min interval and duration. - * Units: Beats per minute or BPM for intervals, minutes for duration. -* **Number picker:** keyboard with buffer to choose a number in correct constrains. 1 - 200 for intervals and 1-60 for duration. - -## Execution screen -* **Text:** showing current tempo of blinking in beats per minute. \ No newline at end of file diff --git a/applications/Tools/blinker/manifest.yml b/applications/Tools/blinker/manifest.yml deleted file mode 100644 index 49e154c1f..000000000 --- a/applications/Tools/blinker/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Cupprum/Blinker.git - commit_sha: c88d25be55ee83ffe5309312d0d73dcd90f3ffe6 -short_description: "App that blinks LEDs with a decreasing frequency over time" -description: "@catalog/README.md" -changelog: "@catalog/changelog.md" -author: "@Cupprum" -screenshots: - - "screenshots/blinker_blinking.png" - - "screenshots/blinker_menu.png" - - "screenshots/blinker_number_menu.png" \ No newline at end of file diff --git a/applications/Tools/brainfuck/README.md b/applications/Tools/brainfuck/README.md deleted file mode 100644 index 14f329d2b..000000000 --- a/applications/Tools/brainfuck/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![brainfuck](https://catalog.flipperzero.one/application/brainfuck/widget)](https://catalog.flipperzero.one/application/brainfuck/page) \ No newline at end of file diff --git a/applications/Tools/brainfuck/manifest.yml b/applications/Tools/brainfuck/manifest.yml deleted file mode 100644 index 3f91d7c14..000000000 --- a/applications/Tools/brainfuck/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/brainfuck -description: "Brainfuck language interpreter" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Fixes for new API, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@nymda" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Tools/caesar_cipher/README.md b/applications/Tools/caesar_cipher/README.md deleted file mode 100644 index ed8e9f3f6..000000000 --- a/applications/Tools/caesar_cipher/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![caesar_cipher](https://catalog.flipperzero.one/application/caesar_cipher/widget)](https://catalog.flipperzero.one/application/caesar_cipher/page) \ No newline at end of file diff --git a/applications/Tools/caesar_cipher/manifest.yml b/applications/Tools/caesar_cipher/manifest.yml deleted file mode 100644 index e92c9f98f..000000000 --- a/applications/Tools/caesar_cipher/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/caesarcipher -description: "Encrypt and decrypt text using Caesar Cipher" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@panki27" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Tools/calculator/README.md b/applications/Tools/calculator/README.md deleted file mode 100644 index 966e4fe40..000000000 --- a/applications/Tools/calculator/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![calculator](https://catalog.flipperzero.one/application/calculator/widget)](https://catalog.flipperzero.one/application/calculator/page) \ No newline at end of file diff --git a/applications/Tools/calculator/manifest.yml b/applications/Tools/calculator/manifest.yml deleted file mode 100644 index ea45c305d..000000000 --- a/applications/Tools/calculator/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/calculator -description: "Calculator, that can calculate simple expressions" -changelog: "v1.0 - Initial release, v1.1 - Sync Updates, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@n-o-T-I-n-s-a-n-e" -screenshots: - - "./img/1.png" diff --git a/applications/Tools/can_tools/manifest.yml b/applications/Tools/can_tools/manifest.yml deleted file mode 100644 index b91ff94b5..000000000 --- a/applications/Tools/can_tools/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/MatthewKuKanich/FlipperCANTools.git - commit_sha: 8fa1fcf043c308921be4818f7e4e80bfe062a438 - subdir: can_tools -description: "./README.md" -changelog: "./changelog.md" -author: "@MatthewKuKanich" -screenshots: - - "./screenshots/1.png" - - "./screenshots/2.png" - - "./screenshots/3.png" - - "./screenshots/4.png" - diff --git a/applications/Tools/clock/README.md b/applications/Tools/clock/README.md deleted file mode 100644 index 5a22f699f..000000000 --- a/applications/Tools/clock/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![clock](https://catalog.flipperzero.one/application/clock/widget)](https://catalog.flipperzero.one/application/clock/page) \ No newline at end of file diff --git a/applications/Tools/clock/manifest.yml b/applications/Tools/clock/manifest.yml deleted file mode 100644 index b3049ceb8..000000000 --- a/applications/Tools/clock/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: ace22647f5f466804340821debdc19b723535487 - subdir: clock -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@kowalski7cc" -screenshots: - - ".catalog/screenshots/1.png" diff --git a/applications/Tools/cntdown_tim/README.md b/applications/Tools/cntdown_tim/README.md deleted file mode 100644 index c9788ae21..000000000 --- a/applications/Tools/cntdown_tim/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![cntdown_tim](https://catalog.flipperzero.one/application/cntdown_tim/widget)](https://catalog.flipperzero.one/application/cntdown_tim/page) \ No newline at end of file diff --git a/applications/Tools/cntdown_tim/manifest.yml b/applications/Tools/cntdown_tim/manifest.yml deleted file mode 100644 index 4786f170d..000000000 --- a/applications/Tools/cntdown_tim/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/fpz_cntdown_timer-main -description: "Simple count down timer" -changelog: "v1.0 - Initial release, v1.1 - Fixed exit issues, v1.2 - Sync Updates, v1.3 - Various fixes, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@0w0mewo" -screenshots: - - "./img/1.png" diff --git a/applications/Tools/combo_cracker/manifest.yml b/applications/Tools/combo_cracker/manifest.yml deleted file mode 100644 index 275b0e265..000000000 --- a/applications/Tools/combo_cracker/manifest.yml +++ /dev/null @@ -1,21 +0,0 @@ -author: '@CharlesTheGreat77' -category: 'Tools' -description: '@./docs/README.md' -changelog: '@./docs/CHANGELOG.md' -icon: 'icons/app10x10.png' -id: 'combo_cracker' -name: 'Combo Cracker' -screenshots: - - 'screenshots/screenshot1.png' - - 'screenshots/screenshot2.png' - - 'screenshots/screenshot3.png' - - 'screenshots/screenshot4.png' - - 'screenshots/screenshot5.png' -short_description: 'Crack combo locks in 8 attempts or less' -sourcecode: - location: - commit_sha: a1325a583d5e34320f567e87100f87dd4a0e5c6a - origin: https://github.com/CharlesTheGreat77/ComboCracker-FZ.git - subdir: - type: git -version: 0.5 diff --git a/applications/Tools/counter/README.md b/applications/Tools/counter/README.md deleted file mode 100644 index e73e462b4..000000000 --- a/applications/Tools/counter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![counter](https://catalog.flipperzero.one/application/counter/widget)](https://catalog.flipperzero.one/application/counter/page) \ No newline at end of file diff --git a/applications/Tools/counter/manifest.yml b/applications/Tools/counter/manifest.yml deleted file mode 100644 index 64c49ec4e..000000000 --- a/applications/Tools/counter/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/counter -description: "Simple counter" -changelog: "v1.0 - Initial release, v1.1 - Icon fixes, v1.2 - Sync Updates, v1.3 - Various fixes, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@Krulknul" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Tools/dcf77/README.md b/applications/Tools/dcf77/README.md deleted file mode 100644 index b411fefd1..000000000 --- a/applications/Tools/dcf77/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![dcf77](https://catalog.flipperzero.one/application/dcf77/widget)](https://catalog.flipperzero.one/application/dcf77/page) \ No newline at end of file diff --git a/applications/Tools/dcf77/manifest.yml b/applications/Tools/dcf77/manifest.yml deleted file mode 100644 index e8733a84c..000000000 --- a/applications/Tools/dcf77/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipper-dcf77 -description: "Sends the DCF77 time signal (badly) on the 125khz LFRFID antenna and on GPIO C3 pin" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Fixes for latest API, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@arha & @xMasterX" -screenshots: - - "./img/1.png" diff --git a/applications/Tools/dcf77_clock_spoof/README.md b/applications/Tools/dcf77_clock_spoof/README.md deleted file mode 100644 index 012d8ddf7..000000000 --- a/applications/Tools/dcf77_clock_spoof/README.md +++ /dev/null @@ -1,41 +0,0 @@ -# Flipper-Zero DCF77 Clock Spoof - -Spoofs a [DCF77](https://en.wikipedia.org/wiki/DCF77) time signal of a selectable time on the RFID antenna and on GPIO A4 pin. - -Uses PWM with frequency of 77.5 kHz on the GPIO pin to simulate the signal. - -## Roadmap - -> I will probably working on this very soon - -- Add the option to also change the date. Currently the date can only implicitable be changed by overflow (constantly move hour up until in the next day and vice versa) -- Add the option to also send "fake" signals that the DCF77 protocol does allow to mess with clocks who don't check that. For example the DCF77 protocol allows to send 25:63 as a "valid" time - -## Usage - -Normally a nearby clock listening to the DCF77 signal gets synchronized in two to five minutes depending on the signal strength. - -Default mode controls: -- Press OK to toggle the LED blinking -- Press up/down to toggle between CEST (dst) and CET time -- Press right/left to enter edit mode - -Edit mode controls: -- Press right/left to select hours, minutes or seconds to edit -- Press up/down to edit the selected part of the time (there us overfolow, so e.g. going below 12AM will lead to being at 11AM and subtracting one day from the date) -- Press OK to save the changes and exit edit mode -- Press back to discard the changes and exit edit mode - -## Antenna - -> Disclaimer: For research purposes only. Sending DCF77 is probably illegal in your country, so use this app responsible and only in a small range (therefore you will probably not need an antenna) - -The RFID antenna works best at distances of up to 50cm. The signal gets recognized in few seconds. - -When using the GPIO, best results are achieved if you connect a ferrite antenna over 330 ohm resistor and a capactior to ground. - -It also works with analog beeper or small in-ear headphone connected to the GPIO pin. - -## Note - -This is a fork of https://github.com/mdaskalov/dcf77-clock-sync. Thanks to @mdaskalov for doing the initial work! diff --git a/applications/Tools/dcf77_clock_spoof/manifest.yml b/applications/Tools/dcf77_clock_spoof/manifest.yml deleted file mode 100644 index 4ff40feab..000000000 --- a/applications/Tools/dcf77_clock_spoof/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/molodos/dcf77-clock-spoof.git - commit_sha: b7adfdcc22b38fb5608ef8923e3769ef2e42b269 -short_description: "Spoof a DCF77 time signal with a selectable time on the RFID antenna and the A4 GPIO pin" -description: "@README.md" -changelog: "@.catalog/changelog.md" -author: "Molodos" -screenshots: - - ".catalog/screens/1.png" - - ".catalog/screens/2.png" diff --git a/applications/Tools/dcf77_clock_sync/README.md b/applications/Tools/dcf77_clock_sync/README.md deleted file mode 100644 index df1a0d785..000000000 --- a/applications/Tools/dcf77_clock_sync/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# DCF77 Clock Sync -Emulates the [DCF77](https://en.wikipedia.org/wiki/DCF77) time signal on the RFID antenna and on GPIO A4 pin. - -Uses PWM with frequency of 77.5 kHz on the GPIO pin to simulate the signal. - -# Usage - -Normally the clock gets syncrhonized in two to five minutes depending on the signal strength. - -The OK button changes the transmitted signal between CET and CEST (dst) time. - -# Antenna -The RFID antenna wokrs best at distances of up to 50cm. The signal gets recognized in few seconds. - -When using the GPIO, best results are achieved if you connect a ferrite antenna over 330 ohm resistor and a capactior to ground. - -It also works with analog beeper or small in-ear headphone connected to the GPIO pin. diff --git a/applications/Tools/dcf77_clock_sync/manifest.yml b/applications/Tools/dcf77_clock_sync/manifest.yml deleted file mode 100644 index 06c2ae8fd..000000000 --- a/applications/Tools/dcf77_clock_sync/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/mdaskalov/dcf77-clock-sync.git - commit_sha: 51846ed5071bebda1f499e25df3e00942cdc2c30 -short_description: "Emulate DCF77 time signal on the RFID antenna and the A4 GPIO pin" -description: "@README.md" -changelog: "v1.3 - Use DateTime format, improved UI refresh" -author: "mdaskalov" -screenshots: - - "./img/1.png" diff --git a/applications/Tools/dtmf_dolphin/README.md b/applications/Tools/dtmf_dolphin/README.md deleted file mode 100644 index 240e1f683..000000000 --- a/applications/Tools/dtmf_dolphin/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![dtmf_dolphin](https://catalog.flipperzero.one/application/dtmf_dolphin/widget)](https://catalog.flipperzero.one/application/dtmf_dolphin/page) \ No newline at end of file diff --git a/applications/Tools/dtmf_dolphin/manifest.yml b/applications/Tools/dtmf_dolphin/manifest.yml deleted file mode 100644 index 480fe37d7..000000000 --- a/applications/Tools/dtmf_dolphin/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/dtmf_dolphin -description: "DTMF (Dual-Tone Multi-Frequency) dialer, Bluebox, and Redbox." -changelog: "v1.0 - Initial release, v1.1 - Icon fixes, v1.2 - Sync Updates, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@litui & @xMasterX" -screenshots: - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Tools/enigma/README.md b/applications/Tools/enigma/README.md deleted file mode 100644 index cbc47c0e6..000000000 --- a/applications/Tools/enigma/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![enigma](https://catalog.flipperzero.one/application/enigma/widget)](https://catalog.flipperzero.one/application/enigma/page) \ No newline at end of file diff --git a/applications/Tools/enigma/manifest.yml b/applications/Tools/enigma/manifest.yml deleted file mode 100644 index ebe25efa4..000000000 --- a/applications/Tools/enigma/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xtruan/flipper-enigma.git - commit_sha: d29abc555a889c643edd0ee3ad2fda3ad9f57cf6 -description: "Enigma cipher machine simulator" -changelog: "v1.1 - Added more rotors (VI, VII, VIII)" -author: "@xtruan" -screenshots: - - "./catalog/startscreen.png" - - "./catalog/menu.png" - - "./catalog/rotor11.png" - - "./catalog/plaintext1.png" - - "./catalog/ciphertext1.png" - - "./catalog/plugtext2.png" - - "./catalog/plugboard2.png" diff --git a/applications/Tools/eye_saver/README.md b/applications/Tools/eye_saver/README.md deleted file mode 100644 index 1bab937f8..000000000 --- a/applications/Tools/eye_saver/README.md +++ /dev/null @@ -1,21 +0,0 @@ -# What does this app do? - -This app is designed to prevent eye strain when looking at a screen for extended periods of time. 69 percent of Americans have reported eye strain at least once a week, and this app is designed to minimize eye fatigue and discomfort. - -# Features: - -* Repeating 20 minute timer with haptic feedback -* 20 second break in between timers with haptic feedback -* Message to look outside during break -* About screen for additional info - -# How to use? - -The timer will begin when the app is opened. Once the timer ends a reminder will be displayed for 20 seconds to look outside (preferrably 20 feet away). Once the break ends the timer will repeat. Press **OK** to open the about screen, and **BACK** to both exit the about screen and exit the app. - -# To be added: - -* Adjustable break length -* Adjustable timer length -* Custom break message -* Haptic feedback on and off switch \ No newline at end of file diff --git a/applications/Tools/eye_saver/manifest.yml b/applications/Tools/eye_saver/manifest.yml deleted file mode 100644 index 1b5c4dd73..000000000 --- a/applications/Tools/eye_saver/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -author: '@paul-sopin' -category: 'Tools' -description: '@README.md' -changelog: '@changelog.md' -icon: 'eye_saver.png' -id: 'eye_saver' -name: 'Eye Saver' -screenshots: - - 'screenshots/screenshot_1.png' - - 'screenshots/screenshot_2.png' - - 'screenshots/screenshot_3.png' - - 'screenshots/screenshot_4.png' -short_description: 'Simple eye strain prevention tool using the 20-20-20 rule.' -sourcecode: - location: - commit_sha: f67ad0ae9a173ec0683ac1a570b7d1d4dc8bc689 - origin: https://github.com/paul-sopin/flipper-eye-saver.git - subdir: - type: git -version: 0.1 diff --git a/applications/Tools/fast_js_app/README.md b/applications/Tools/fast_js_app/README.md deleted file mode 100644 index b4b52b219..000000000 --- a/applications/Tools/fast_js_app/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fast_js_app](https://catalog.flipperzero.one/application/fast_js_app/widget)](https://catalog.flipperzero.one/application/fast_js_app/page) \ No newline at end of file diff --git a/applications/Tools/fast_js_app/manifest.yml b/applications/Tools/fast_js_app/manifest.yml deleted file mode 100644 index 1d48887a4..000000000 --- a/applications/Tools/fast_js_app/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/jblanked/FastJS-FlipperZero.git - commit_sha: f3c1156640a8b3ff41c9e155b90d7baceff6bbb1 -short_description: "Pre-save your JavaScript files for quick execution." -description: "@./gallery/README.md" -changelog: "@./gallery/CHANGELOG.md" -author: "JBlanked" -name: "FastJS" -version: "1.3" -id: "fast_js_app" -category: "Tools" -targets: ['all'] -icon: "app.png" -screenshots: - - "gallery/03-config.png" - - "gallery/01-home.png" - - "gallery/02-About.png" \ No newline at end of file diff --git a/applications/Tools/financial_calc/README.md b/applications/Tools/financial_calc/README.md deleted file mode 100644 index 8bb2370ed..000000000 --- a/applications/Tools/financial_calc/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![financial_calc](https://catalog.flipperzero.one/application/financial_calc/widget)](https://catalog.flipperzero.one/application/financial_calc/page) \ No newline at end of file diff --git a/applications/Tools/financial_calc/manifest.yml b/applications/Tools/financial_calc/manifest.yml deleted file mode 100644 index c48527290..000000000 --- a/applications/Tools/financial_calc/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/schaene/Flipper-Financial-Calculator.git - commit_sha: 4e901fda4784b6bcbc4444fe9d580aa07559b768 -description: "A simple TVM Calculator" -changelog: "v1.0 - Initial release" -author: "schaene" -screenshots: - - "screenshot.png" \ No newline at end of file diff --git a/applications/Tools/fire_string/manifest.yml b/applications/Tools/fire_string/manifest.yml deleted file mode 100644 index a71ab93c3..000000000 --- a/applications/Tools/fire_string/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/RyanAboueljoud/Fire-String.git - commit_sha: e26bfe8e6cbc4afb36492e51bcf2614498260a28 -description: "@./.catalog/README.md" -changelog: "@./.catalog/CHANGELOG.md" -screenshots: - - "./.catalog/screens/screen0.png" - - "./.catalog/screens/screen1.png" - - "./.catalog/screens/screen2.png" - - "./.catalog/screens/screen3.png" diff --git a/applications/Tools/flip_crypt/manifest.yml b/applications/Tools/flip_crypt/manifest.yml deleted file mode 100644 index bb0acae2c..000000000 --- a/applications/Tools/flip_crypt/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Tyl3rA/FlipCrypt.git - commit_sha: 3b87663616c5322173f4ee2212bc4ab99d424530 -description: "@README.md" -changelog: "@docs/CHANGELOG.md" -author: "@Tyl3rA" -screenshots: - - "./screenshots/screenshot1.png" - - "./screenshots/screenshot2.png" - - "./screenshots/screenshot3.png" - - "./screenshots/screenshot4.png" - - "./screenshots/screenshot5.png" - - "./screenshots/screenshot6.png" - - "./screenshots/screenshot7.png" - - "./screenshots/screenshot8.png" - - "./screenshots/screenshot9.png" - - "./screenshots/screenshot10.png" - - "./screenshots/screenshot11.png" diff --git a/applications/Tools/flipbip/README.md b/applications/Tools/flipbip/README.md deleted file mode 100644 index 699af547f..000000000 --- a/applications/Tools/flipbip/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipbip](https://catalog.flipperzero.one/application/flipbip/widget)](https://catalog.flipperzero.one/application/flipbip/page) \ No newline at end of file diff --git a/applications/Tools/flipbip/manifest.yml b/applications/Tools/flipbip/manifest.yml deleted file mode 100644 index dd52bc180..000000000 --- a/applications/Tools/flipbip/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xtruan/FlipBIP.git - commit_sha: 62ef09fc3eede4494571d55f3d9340695482781a -description: "Cryptocurrency wallet with support for BTC, ETH, DOGE, and ZEC (t-addr)" -changelog: "v1.17" -author: "@xtruan" -screenshots: - - "./catalog/menu1.png" - - "./catalog/menu2.png" - - "./catalog/input_mnemonic.png" - - "./catalog/btc_loading.png" - - "./catalog/wallet_info.png" - - "./catalog/wallet_mnemonic.png" - - "./catalog/btc_receive.png" - - "./catalog/settings.png" diff --git a/applications/Tools/flipp_pomodoro/README.md b/applications/Tools/flipp_pomodoro/README.md deleted file mode 100644 index 3153b24f2..000000000 --- a/applications/Tools/flipp_pomodoro/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipp_pomodoro](https://catalog.flipperzero.one/application/flipp_pomodoro/widget)](https://catalog.flipperzero.one/application/flipp_pomodoro/page) \ No newline at end of file diff --git a/applications/Tools/flipp_pomodoro/manifest.yml b/applications/Tools/flipp_pomodoro/manifest.yml deleted file mode 100644 index 346b83252..000000000 --- a/applications/Tools/flipp_pomodoro/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipp_pomodoro -description: "Boost Your Productivity with the Pomodoro Timer" -changelog: "v1.0 - Initial release, v1.1 - Updated from main repo, v1.2 - Updated from main repo, v1.3 - Sync Updates, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@Th3Un1q3" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Tools/flipper95/README.md b/applications/Tools/flipper95/README.md deleted file mode 100644 index 34bc019fa..000000000 --- a/applications/Tools/flipper95/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipper95](https://catalog.flipperzero.one/application/flipper95/widget)](https://catalog.flipperzero.one/application/flipper95/page) \ No newline at end of file diff --git a/applications/Tools/flipper95/manifest.yml b/applications/Tools/flipper95/manifest.yml deleted file mode 100644 index 688b6695c..000000000 --- a/applications/Tools/flipper95/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/CookiePLMonster/flipper-bakery.git - commit_sha: 08533bfcd5cc676af5b168d72e4a9381308bbf56 - subdir: flipper95 -description: "@./.catalog/README.md" -changelog: "@./.catalog/CHANGELOG.md" -screenshots: - - "./.catalog/screens/screen0.png" - - "./.catalog/screens/screen1.png" diff --git a/applications/Tools/flipper_wedge/README.md b/applications/Tools/flipper_wedge/README.md deleted file mode 100644 index e7600fd5d..000000000 --- a/applications/Tools/flipper_wedge/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flipper_wedge](https://catalog.flipperzero.one/application/flipper_wedge/widget)](https://catalog.flipperzero.one/application/flipper_wedge/page) diff --git a/applications/Tools/flipper_wedge/manifest.yml b/applications/Tools/flipper_wedge/manifest.yml deleted file mode 100644 index 67cb0ea82..000000000 --- a/applications/Tools/flipper_wedge/manifest.yml +++ /dev/null @@ -1,28 +0,0 @@ -id: flipper_wedge -name: "Flipper Wedge" -version: "1.1" -category: "Tools" - -short_description: "Read RFID/NFC tags and type UIDs as HID keyboard input via USB or Bluetooth. Supports NDEF text records. Inspired by the Dangerous Things KBR1" - -description: "@README_CATALOG.md" - -changelog: "@CHANGELOG_CATALOG.md" - -author: "Dangerous Things" - -sourcecode: - type: git - location: - origin: https://github.com/DangerousThings/flipper-wedge.git - commit_sha: ac2ee356d6ad1d21e31591697684f8cd835f7310 - -icon: "icons/flipper_wedge_10px.png" - -screenshots: - - './screenshots/01_nfc_scanning.png' - - './screenshots/02_rfid_scanning.png' - - './screenshots/03_ndef_mode.png' - - './screenshots/04_rfid+nfc.png' - - './screenshots/05_nfc+rfid.png' - - './screenshots/06_settings.png' diff --git a/applications/Tools/flipperzero_clock/README.md b/applications/Tools/flipperzero_clock/README.md deleted file mode 100644 index 7afbc68bb..000000000 --- a/applications/Tools/flipperzero_clock/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![dcf77](https://catalog.flipperzero.one/application/flipperzero_clock/widget)](https://catalog.flipperzero.one/application/flipperzero_clock/page) \ No newline at end of file diff --git a/applications/Tools/flipperzero_clock/manifest.yml b/applications/Tools/flipperzero_clock/manifest.yml deleted file mode 100644 index 78465fd3a..000000000 --- a/applications/Tools/flipperzero_clock/manifest.yml +++ /dev/null @@ -1,16 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/mdaskalov/flipperzero-clock.git - commit_sha: 63bb18a07d577f183d25c633ab120327cb4a0fa3 -short_description: "FlipperZero Customizable Clock" -description: "@README.md" -changelog: "v1.2 - Drawing optimizations, v1.3 - fixed weekday" -author: "mdaskalov" -screenshots: - - "./img/1.png" - - "./img/2.png" - - "./img/3.png" - - "./img/4.png" - - "./img/5.png" - - "./img/6.png" diff --git a/applications/Tools/fmatrix/README.md b/applications/Tools/fmatrix/README.md deleted file mode 100644 index 92af59a8a..000000000 --- a/applications/Tools/fmatrix/README.md +++ /dev/null @@ -1,53 +0,0 @@ -# fmatrix v0.3.5 -fmatrix is a simple Flipper Zero app that displays the famous "matrix rain" effect. -(suggestions appreciated and welcome!) - -## Menu breakdown - -Main menu: - -Make it rain! - Makes it rain (Displays the matrix effect.) -Configure fmatrix - Configuration menu for tweaking fmatrix. -Exit - Does exactly what you think it does; exits the app. - -Options menu: - -UPPERCASE: Toggle whether or not uppercase letters are displayed when characters are randomly chosen. - (default YES) - -lowercase: Toggle whether or not lowercase letters are displayed when characters are randomly chosen. - (default NO) - -Numbers: Toggle whether or not numbers are displayed when characters are randomly chosen. - (default NO) - -Symbols: Toggle whether or not symbols are displayed when characters are randomly chosen. - (default NO) - -Inverted Mode: Toggle whether or not the app makes the text and menu content white and the background black (makes everything inverted!) - (default NO) - -Max Speed: The fastest possible matrix rain can go. - (1-20, default 3) - -Min Speed: The slowest possible matrix rain can go. - (1-20, default 1) - -Spawn Rate: The rate that matrix rain spawns in on the screen. - (1-10, default 5) - -Max Length: The most longest possible matrix rain can become/spawn as. - (1-10, default 10) - -Min Length: The smallest possible matrix rain can become/spawn as. - (1-10, default 3) - -## How can I install fmatrix? - -There's lot's of ways, but i'll just list three: - -1: You can install fmatrix from the Flipper Lab above, or for those who are on the Github, here: https://lab.flipper.net/apps/fmatrix - -2: Compile it in a .fap file format using ufbt (https://github.com/flipperdevices/flipperzero-ufbt) and move it to your Flipper Zero using qFlipper (https://flipperzero.one/update) - -3: On the GitHub repo (repo link below if on the Flipper Lab), download **the .fap file** from the Releases section and move it to your Flipper Zero using qFlipper (https://flipperzero.one/update), however it may be more up-to-date or farther behind. diff --git a/applications/Tools/fmatrix/manifest.yml b/applications/Tools/fmatrix/manifest.yml deleted file mode 100644 index c0fde2b90..000000000 --- a/applications/Tools/fmatrix/manifest.yml +++ /dev/null @@ -1,40 +0,0 @@ ---- - sourcecode: - type: git - location: - origin: https://github.com/misterwaztaken/fmatrix.git - commit_sha: 1a54a13dbd50be98574035ada9616c6327ac297b - short_description: The 'matrix rain' effect for the Flipper Zero. - version: 0.3.5 - description: "@README.md" - changelog: > - - v0.3.5: - - - added inverted mode; inverts the background and the text such that the background is all-black and the letters are white - - v0.3: - - - added menu for fmatrix - - added a submenu for options (for configuring fmatrix) - - added options for lowercase letters, numbers, and symbols - - added options to control spawn rate, max/min speed, and max/min character trail length - - - v0.2: - - - added screenshots in preparation to upload to application catalog - - wrote and committed final edits to manifest.yml - - - v0.1: - - - initialized repository (woo!) - - moved project to a github repo, started changelog - screenshots: - - screenshots/ss1.png - - screenshots/ss2.png - - screenshots/ss3.png - - screenshots/ss4.png - - screenshots/ss5.png - diff --git a/applications/Tools/fordradiocode/README.md b/applications/Tools/fordradiocode/README.md deleted file mode 100644 index 41926c8b9..000000000 --- a/applications/Tools/fordradiocode/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fordradiocode](https://catalog.flipperzero.one/application/fordradiocode/widget)](https://catalog.flipperzero.one/application/fordradiocode/page) \ No newline at end of file diff --git a/applications/Tools/fordradiocode/changelog.md b/applications/Tools/fordradiocode/changelog.md deleted file mode 100644 index a563b31f0..000000000 --- a/applications/Tools/fordradiocode/changelog.md +++ /dev/null @@ -1,2 +0,0 @@ -v0.1: -Initial Release diff --git a/applications/Tools/fordradiocode/manifest.yml b/applications/Tools/fordradiocode/manifest.yml deleted file mode 100644 index 56e84211e..000000000 --- a/applications/Tools/fordradiocode/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - name: Ford Radio Codes - id: fordradiocode - category: Tools - version: 0.1 - type: git - location: - origin: https://github.com/DavidB445/fz_fordradiocodes.git - commit_sha: c3e3aa7d8282515d5ddd7dc3cd738e68462a0e5e -short_description: Ford Radio 'M' & 'V' Unlock Code Generator! -description: | - Instantly generate unlock codes for for 'M' and 'V' series radios directly on your Flipper Zero! - Simply enter the radio's serial number using the UP and DOWN buttons and the 4-digit unlock code will be shown. -changelog: "@changelog.md" -author: '@DavidB445' -screenshots: - - screenshots/mainscreen.png diff --git a/applications/Tools/hex_editor/README.md b/applications/Tools/hex_editor/README.md deleted file mode 100644 index 06cc86782..000000000 --- a/applications/Tools/hex_editor/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![hex_editor](https://catalog.flipperzero.one/application/hex_editor/widget)](https://catalog.flipperzero.one/application/hex_editor/page) \ No newline at end of file diff --git a/applications/Tools/hex_editor/manifest.yml b/applications/Tools/hex_editor/manifest.yml deleted file mode 100644 index 4240d9afb..000000000 --- a/applications/Tools/hex_editor/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/hex_editor -description: "@README-catalog.md" -changelog: "v1.0 - Initial release, v1.1 - Description update, v1.2 - Sync Updates, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "@dunaevai135" -screenshots: - - "./img/1.png" diff --git a/applications/Tools/hex_viewer/README.md b/applications/Tools/hex_viewer/README.md deleted file mode 100644 index 2d34aa2d4..000000000 --- a/applications/Tools/hex_viewer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![hex_viewer](https://catalog.flipperzero.one/application/hex_viewer/widget)](https://catalog.flipperzero.one/application/hex_viewer/page) \ No newline at end of file diff --git a/applications/Tools/hex_viewer/manifest.yml b/applications/Tools/hex_viewer/manifest.yml deleted file mode 100644 index 22dc8d058..000000000 --- a/applications/Tools/hex_viewer/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/QtRoS/flipper-zero-hex-viewer.git - commit_sha: 868d25451684cc55ff918526df4562fe07e58c66 -description: "App allows to view various files as HEX." -changelog: "v2.0 - Scrolling to any % and interal refactoring, v1.1 - Various important fixes, v1.0 - Initial release" -author: "@QtRoS" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Tools/iconedit/manifest.yml b/applications/Tools/iconedit/manifest.yml deleted file mode 100644 index 0d5ed6346..000000000 --- a/applications/Tools/iconedit/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/rdefeo/iconedit.git - commit_sha: 82fda63fd980f651e7e2ff678c129221200bac7b -changelog: "@./CHANGELOG.md" -description: "@./README_flipperlab.md" -author: "Roberto De Feo" -screenshots: - - "./screenshots/iconedit_screenshot_1.png" - - "./screenshots/iconedit_screenshot_2.png" - - "./screenshots/iconedit_screenshot_3.png" - - "./screenshots/iconedit_screenshot_4.png" diff --git a/applications/Tools/key_copier/README.md b/applications/Tools/key_copier/README.md deleted file mode 100644 index d7af96c45..000000000 --- a/applications/Tools/key_copier/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![key_copier](https://catalog.flipperzero.one/application/key_copier/widget)](https://catalog.flipperzero.one/application/key_copier/page) \ No newline at end of file diff --git a/applications/Tools/key_copier/manifest.yml b/applications/Tools/key_copier/manifest.yml deleted file mode 100644 index 42ff1cb9b..000000000 --- a/applications/Tools/key_copier/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/zinongli/KeyCopier.git - commit_sha: ec2c7b46b8be8e1e667055421c543f1380b32d9a -description: "To measure your key:\n\n1. Place it on top of the screen.\n\n2. Use the contour to align your key.\n\n3. Adjust each pin's depth until they match. It's easier if you look with one eye closed." -changelog: "@CHANGELOG.md" -author: "Torron" -screenshots: - - "screenshots/kw1.png" - - "screenshots/main_menu.png" - - "screenshots/config.png" - - "screenshots/load.png" \ No newline at end of file diff --git a/applications/Tools/knit_counter/README.md b/applications/Tools/knit_counter/README.md deleted file mode 100644 index a59c17c6d..000000000 --- a/applications/Tools/knit_counter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![knit_counter](https://catalog.flipperzero.one/application/knit_counter/widget)](https://catalog.flipperzero.one/application/knit_counter/page) \ No newline at end of file diff --git a/applications/Tools/knit_counter/manifest.yml b/applications/Tools/knit_counter/manifest.yml deleted file mode 100644 index 366351b59..000000000 --- a/applications/Tools/knit_counter/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/fridgepoet/knit-counter.git - commit_sha: 77d9b5084a9328f6edd95d5bd880f09a02ce0239 -short_description: Counter that saves after exiting -description: | - # Knit Counter - This counter saves the count after exiting the app or restarting the Flipper. - - This can be useful for knitting, since a knit counter is a tally counter for counting pattern repetitions in a stitch pattern, typically rows. -changelog: "@CHANGELOG.md" -screenshots: - - ./screenshots/1.png diff --git a/applications/Tools/lishi/README.md b/applications/Tools/lishi/README.md deleted file mode 100644 index f2fb94cd2..000000000 --- a/applications/Tools/lishi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![lishi](https://catalog.flipperzero.one/application/lishi/widget)](https://catalog.flipperzero.one/application/lishi/page) \ No newline at end of file diff --git a/applications/Tools/lishi/manifest.yml b/applications/Tools/lishi/manifest.yml deleted file mode 100644 index 3d9c5d08d..000000000 --- a/applications/Tools/lishi/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/evillero/lishi - commit_sha: 7a7e33091549271777f0842bf01f726eff805096 -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@evillero" -screenshots: - - ".catalog/screenshots/screenshot1.png" - - ".catalog/screenshots/screenshot2.png" - - ".catalog/screenshots/screenshot3.png" diff --git a/applications/Tools/moon_phases/manifest.yml b/applications/Tools/moon_phases/manifest.yml deleted file mode 100644 index e2958c206..000000000 --- a/applications/Tools/moon_phases/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/w84death/moon-phases.git - commit_sha: 5d6380dccf5a7fa56abac6593a6d90c3e6777b95 -description: "A simple application to display the current phase of the moon along with additional lunar information." -version: 1.1 -changelog: "@CHANGELOG.md" -author: "Krzysztof Krystian Jankowski" -screenshots: - - "screenshots/screen1.png" - - "screenshots/screen2.png" diff --git a/applications/Tools/multi_converter/README.md b/applications/Tools/multi_converter/README.md deleted file mode 100644 index fd50039b5..000000000 --- a/applications/Tools/multi_converter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![multi_converter](https://catalog.flipperzero.one/application/multi_converter/widget)](https://catalog.flipperzero.one/application/multi_converter/page) \ No newline at end of file diff --git a/applications/Tools/multi_converter/manifest.yml b/applications/Tools/multi_converter/manifest.yml deleted file mode 100644 index bdda44292..000000000 --- a/applications/Tools/multi_converter/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/multi_converter -description: "A multi-unit converter written with an easy and expandable system for adding new units and conversion methods" -changelog: "v1.0 - Initial release, v1.1 - Various important fixes, v1.2 - Sync updates and latest API support, v1.3 - Sync with latest version" -author: "@theisolinearchip" -screenshots: - - "./img/4.png" - - "./img/2.png" - - "./img/3.png" - - "./img/1.png" diff --git a/applications/Tools/multi_counter/README.md b/applications/Tools/multi_counter/README.md deleted file mode 100644 index 3ead835cc..000000000 --- a/applications/Tools/multi_counter/README.md +++ /dev/null @@ -1,12 +0,0 @@ -## Status - -[![multi_counter](https://catalog.flipperzero.one/application/multi_counter/widget)](https://catalog.flipperzero.one/application/multi_counter/page) - -# Flipper Multi Counter -This is a simple external application for the Flipper Zero modified from [VS Counter](https://github.com/JadePossible/Flipper-Versus-Counter) version. -The app give you access to up to 4 counters to count your scores for tabletop games for example. - -# How To Use ? -The UP and DOWN buttons are for adding or subbing one from the selected player -And LEFT and RIGHT to switch between players -You can also (un)toggle the sound with the OK key diff --git a/applications/Tools/multi_counter/manifest.yml b/applications/Tools/multi_counter/manifest.yml deleted file mode 100644 index 0a5c55d7c..000000000 --- a/applications/Tools/multi_counter/manifest.yml +++ /dev/null @@ -1,18 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/JadePossible/Flipper-Multi-Counter - commit_sha: d1199a11c614af8cb5e21c0842b46cb0ef9cd0fe -description: | - # Flipper Multi Counter - This is a simple external application for the Flipper Zero modified from [VS Counter](https://github.com/JadePossible/Flipper-Versus-Counter) version. - The app give you access to up to 4 counters to count your scores for tabletop games for example. - - # How To Use ? - The UP and DOWN buttons are for adding or subbing one from the selected player - And LEFT and RIGHT to switch between players - You can also (un)toggle the sound with the OK key -changelog: "v1.0 - Initial release" -author: "@JadePossible & Roro" -screenshots: - - "./media/1.png" diff --git a/applications/Tools/nfc_rfid_detector/README.md b/applications/Tools/nfc_rfid_detector/README.md deleted file mode 100644 index 4b2258a51..000000000 --- a/applications/Tools/nfc_rfid_detector/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![nfc_rfid_detector](https://catalog.flipperzero.one/application/nfc_rfid_detector/widget)](https://catalog.flipperzero.one/application/nfc_rfid_detector/page) \ No newline at end of file diff --git a/applications/Tools/nfc_rfid_detector/manifest.yml b/applications/Tools/nfc_rfid_detector/manifest.yml deleted file mode 100644 index 22b0e2340..000000000 --- a/applications/Tools/nfc_rfid_detector/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: b791dea234f855155027bb46215dc60f3ddeb243 - subdir: nfc_rfid_detector -description: "@.catalog/README.md" -changelog: "@.catalog/changelog.md" -author: "@SkorP" -screenshots: - - ".catalog/gallery/nfc-rfid-both-detected.png" - - ".catalog/gallery/nfc-rfid-detection.png" - - ".catalog/gallery/nfc-rfid-nfc-detected.png" - - ".catalog/gallery/nfc-rfid-rfid-detected.png" diff --git a/applications/Tools/orgasmotron/README.md b/applications/Tools/orgasmotron/README.md deleted file mode 100644 index d6b6f1054..000000000 --- a/applications/Tools/orgasmotron/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![orgasmotron](https://catalog.flipperzero.one/application/orgasmotron/widget)](https://catalog.flipperzero.one/application/orgasmotron/page) \ No newline at end of file diff --git a/applications/Tools/orgasmotron/manifest.yml b/applications/Tools/orgasmotron/manifest.yml deleted file mode 100644 index 8167e9631..000000000 --- a/applications/Tools/orgasmotron/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/leedave/Leeds-Flipper-Zero-Applications - commit_sha: 0876a7da9af1824cd3eed2bfb9954f333fa8a762 - subdir: Misc/orgasmotron -description: "@./docs/README.md" -changelog: "@./docs/changelog.md" -author: "Leedave" -screenshots: - - "./screenshots/orgasmotron-1.png" diff --git a/applications/Tools/passgen/README.md b/applications/Tools/passgen/README.md deleted file mode 100644 index 23d513701..000000000 --- a/applications/Tools/passgen/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![passgen](https://catalog.flipperzero.one/application/passgen/widget)](https://catalog.flipperzero.one/application/passgen/page) \ No newline at end of file diff --git a/applications/Tools/passgen/manifest.yml b/applications/Tools/passgen/manifest.yml deleted file mode 100644 index 99cdf9281..000000000 --- a/applications/Tools/passgen/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/flipper_passgen -description: "Password Generator" -changelog: "v1.0 - Initial release, v1.1 - Updates, v1.2 - Sync Updates, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -name: "Password Generator" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Tools/password_manager/manifest.yml b/applications/Tools/password_manager/manifest.yml deleted file mode 100644 index 02319140a..000000000 --- a/applications/Tools/password_manager/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Rrycbarm/flipperZeroPasswordManager - commit_sha: 8d02154358a2ba583268353a24cedabe9485c43f -short_description: This app stores your usernames and password and can write them on your PC acting as a keyboard -description: "@README_catalog.md" -changelog: "@CHANGELOG.md" -author: "Rrycbarm" -screenshots: - - img/01-menu.png - - img/02-saved.png - - img/03-insert.png - - img/04-insert.png - - img/05-insert.png - - img/06-delete.png - - img/07-delete.png \ No newline at end of file diff --git a/applications/Tools/pet_your_dolphin/README.md b/applications/Tools/pet_your_dolphin/README.md deleted file mode 100644 index 2f2199f65..000000000 --- a/applications/Tools/pet_your_dolphin/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![pet_your_dolphin](https://catalog.flipperzero.one/application/pet_your_dolphin/widget)](https://catalog.flipperzero.one/application/pet_your_dolphin/page) \ No newline at end of file diff --git a/applications/Tools/pet_your_dolphin/manifest.yml b/applications/Tools/pet_your_dolphin/manifest.yml deleted file mode 100644 index 4a1f882bd..000000000 --- a/applications/Tools/pet_your_dolphin/manifest.yml +++ /dev/null @@ -1,9 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/dwight9339/pet_your_dolphin - commit_sha: 517a2c279b2aad6de8ff6015aa836676ab0d6f19 -description: "The Pet Your Dolphin app let's you check in on your little dolphin buddy! Stop by daily to give it some pets to improve its mood and earn XP!" -changelog: "@./docs/changelog.md" -screenshots: - - screenshots/petting_dolphin_2.png \ No newline at end of file diff --git a/applications/Tools/pomodoro_timer/README.md b/applications/Tools/pomodoro_timer/README.md deleted file mode 100644 index 164d0a1b8..000000000 --- a/applications/Tools/pomodoro_timer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![pomodoro_timer](https://catalog.flipperzero.one/application/pomodoro_timer/widget)](https://catalog.flipperzero.one/application/pomodoro_timer/page) \ No newline at end of file diff --git a/applications/Tools/pomodoro_timer/manifest.yml b/applications/Tools/pomodoro_timer/manifest.yml deleted file mode 100644 index eefad18e8..000000000 --- a/applications/Tools/pomodoro_timer/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/pomodoro -description: "@README-catalog.md" -changelog: "v1.0 - Initial release, v1.1 - Description update, v1.2 - Sync Updates, v1.3 - Fixes for latest API, v1.4 - Sync updates and latest API support, v1.5 - Sync with latest version" -author: "@sbrin" -screenshots: - - "./img/2.png" diff --git a/applications/Tools/programmercalc/README.md b/applications/Tools/programmercalc/README.md deleted file mode 100644 index 1e7b1fc79..000000000 --- a/applications/Tools/programmercalc/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![programmercalc](https://catalog.flipperzero.one/application/programmercalc/widget)](https://catalog.flipperzero.one/application/programmercalc/page) \ No newline at end of file diff --git a/applications/Tools/programmercalc/manifest.yml b/applications/Tools/programmercalc/manifest.yml deleted file mode 100644 index 6ce4f9fbe..000000000 --- a/applications/Tools/programmercalc/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/armixz/Flipper-Zero-Programmer-Calculator.git - commit_sha: 4f42d7ad99f46a14e372040c0a310fb3ccbd62d9 -description: "@docs/README_catalog.md" -changelog: "@docs/changelog.md" -author: "@armixz" -screenshots: - - "./img/1.png" - - "./img/2.png" - - "./img/3.png" - - "./img/4.png" - - "./img/5.png" - - "./img/6.png" - - "./img/7.png" - - "./img/8.png" \ No newline at end of file diff --git a/applications/Tools/qrcode/README.md b/applications/Tools/qrcode/README.md deleted file mode 100644 index 15c212bce..000000000 --- a/applications/Tools/qrcode/README.md +++ /dev/null @@ -1,204 +0,0 @@ -[![qrcode](https://catalog.flipperzero.one/application/qrcode/widget)](https://catalog.flipperzero.one/application/qrcode/page) - -# flipperzero-qrcode -Display qrcodes on the [Flipper Zero] - -![qrcode screenshot](https://github.com/bmatcuk/flipperzero-qrcode/blob/main/ss2.png?raw=true) - -## Github -Additional information about this project can be found in the [qrcode repo] on -github. - -## Creating QR Codes -qrcode files are simple text files with the extension `.qrcode`. This app will -expect them to live in a top-level directory on your sd card called `qrcodes`. -They should have the following content: - -``` -Filetype: QRCode -Version: 0 -Message: your content here -``` - -qrcode v2 supports a newer format as well (the old format still works for -backward compatibility, or, if you don't need the newer features, the app will -read version "0" files faster): - -``` -Filetype: QRCode -Version: 1 -QRMode: B -QRVersion: 6 -QRECC: L -Message: your content here -Message: multi-line content is possible -``` - -In a version "1" file, the `QRMode`, `QRVersion`, and `QRECC` are optional -(though, must be in that order if more than one are specified). The app will -attempt to use the specified mode, version, and/or ECC, if the content will -fit. Otherwise, it may select a different mode, version, and/or ECC. Keep -reading to learn about the meaning of `QRMode`, `QRVersion`, and `QRECC`. - -Version "1" files also support multi-line content. Each line starting with -`Message:` will be concatenated together with newline characters. - -My recommendation is to allow the app to select a mode, version, and ECC level -for you and, then, if you find that your qrcode reader prefers specific -settings, update the file appropriately. - -### Message Format -qrcodes support 4 formats called "modes": numeric, alpha-numeric, binary, and -kanji. Because of the limited screen real-estate on the [Flipper Zero], you'll -want to pick the best mode for the data you are trying to display. - -If unspecified in the `.qrcode` file, the app will automatically detect the -best mode to use based on the message content. - -#### Numeric Mode (QRMode: N) -Consists of only numbers, nothing else. This mode can encode the most data and -is useful for things like phone numbers. To use this mode, your message must -_not_ contain non-numeric characters. For example, a message content of "(xxx) -xxx-xxxx" can _not_ use numeric mode (it would require "binary" mode, in fact). -Instead, your message should just be "xxxxxxxxxx". - -#### Alpha-Numeric Mode (QRMode: A) -This mode can encode numbers, uppercase letters *only*, spaces, and the -following symbols: `$%*+-./:`. This format _may_ be appropriate for urls, as -long as you're only encoding the domain name and you remember to use uppercase -letters (ex: `HTTP://EXAMPLE.COM`). If your url includes some path after the -domain, you'll likely need to use binary mode because the paths are usually -case-sensitive. - -A qrcode in alpha-numeric mode can encode ~40% less data than numeric mode. - -#### Binary Mode (QRMode: B) -This mode is a little bit of a misnomer: binary mode simply means that the -message will be encoded as 8-bit bytes. The qrcode standard stipulates that -text will use ISO-8859-1 (also known as Latin-1) encoding, _not_ utf8 as would -be the standard these days. However, _some_ readers _may_ automatically detect -utf8. To be standard-compliant, that basically means you can only use Latin -letters, numbers, and symbols. - -Multi-line messages will always be in binary mode, since the other modes cannot -encode a newline character. - -A qrcode in binary mode can encode ~60% less data than numeric mode, and ~30% -less than alpha-numeric. - -#### Kanji Mode (QRMode: K) -This mode is unsupported, so I won't go into detail. A limitation of the -underlying qrcode library that I'm using, unfortunately. If there's interest, -perhaps I'll hack in support sometime. - -### QRVersion -A qrcode's version specifies how "big" it is. Higher versions contain more -"modules" (ie, the "pixels" that make up qrcodes) and, thus, can encode more -data. A version 1 qrcode contains 21x21 modules, whereas a version 11 code (the -largest the Flipper Zero can display) contains 61x61 modules. The modules of a -version 1 code will be 3x3 pixels on the Flipper Zero screen; version 2 and 3 -qrcodes will each have 2x2 pixel modules; and version 4 through 11 qrcodes will -have single pixel modules. - -If unspecified in the `.qrcode` file, the app will automatically select the -lowest version that can contain all of the message content, given the mode -selected in the previous step. - -### QRECC -A qrcode's ECC level determines the qrcode's resilience to "damage". In the -case of the Flipper Zero, "damage" might be a dirty screen, dead pixels, or -even screen glare. Higher ECC modes are more resilient, but can contain less -data. The ECC modes are Low, Medium, Quartile, and High and can be specified in -the `.qrcode` file using the first letter (L, M, Q, and H). - -qrcode readers may have an easier time reading qrcodes with higher ECC levels, -so, if unspecified in the `.qrcode` file, the app will select the highest ECC -level that can contain all of the message content, given the qrcode mode and -version selected in the previous steps. - -## Using the App -The app is fairly straightforward. When it first starts, the file browser will -automatically open to the `qrcodes` directory and display any `.qrcode` files. -Select one using the arrow keys and the center button. The qrcode will display. -If you push the right arrow, some stats will display: the qrcode "Version"; the -ECC level; and the qrcode Mode (Numeric, Alpha-Numeric, Binary, or Kanji). - -While viewing the stats, you can select Version or ECC using the up and down -arrows and the center button. You can then increase or decrease the Version or -ECC using up and down and save your choice using the center buttton. This -feature was mostly added for my own amusement and testing, but, theoretically, -it may help a reader that's having trouble if the default ECC is less than the -highest value ("H"): you can increase the Version by 1 and then set the ECC to -"H". Whether or not this helps depends on the reader. - -You can hide the stats by pressing the left arrow. - -When you're done viewing the qrcode, press the back button to return to the -file browser. If you push the back button in the file browser, the app will -exit. - -I will ask that you temper your expectations: the Flipper Zero screen is small -and many readers may have difficulty reading the qrcodes, especially if they -are encoding a lot of data. However, I have successfully got my iPhone to read -qrcodes encoding phone numbers, wifi info, and a url, all the way up to a -version 11 qrcode (ie, the largest size the screen will fit). - -## Example: Wifi QRCodes -Most phones can automatically connect to wifi networks from a qrcode. If you -should like to encode your wifi's connection info into a qrcode, here's how -you'd do it: - -``` -Filetype: QRCode -Version: 0 -Message: WIFI:S:;P:;T:; -``` - -Replace `` with the name of your wifi, `` with the password. -`` would be "WPA" or "WEP". If your wifi is open (no password), -this can be "None" and you can remove `P:;` from the message. If your -wifi is hidden (ie, does not broadcast the ssid), you can add `H:true;` to the -end. - -Note that if your ssid or password contain any of these characters: `\";,:`, -you'll need to "escape" it by placing a backslash (`\`) before it. - -For example, if my ssid was "wifiball" and not broadcast, and the password was -"pa$$:word" with WPA encryption, the message would be: - -``` -Message: WIFI:S:wifiball;P:pa$$\:word;T:WPA;H:true; -``` - -## Example: vCard -Phones can scan [vCard] qrcodes to automatically add a contact to their address -book. Starting with qrcode v2, multi-line qrcodes can be created, allowing you -to create vCards! - -``` -Filetype: QRCode -Version: 1 -Message: BEGIN:VCARD -Message: VERSION:3.0 -Message: N:Smith;John -Message: FN:John Smith -Message: ADR;TYPE=dom,home,postal,parcel:;;123 Example St;Exampleton;CA;90210; -Message: BDAY:1970-01-01 -Message: TEL;TYPE=pref,voice,msg,cell:+18005551212 -Message: END:VCARD -``` - -Check the [vCard] specification to learn about all of the fields and their -values. - -## qrcode library -This application uses the [QRCode] library by ricmoo. This is the same library -that is in the lib directory of the flipper-firmware repo (which was originally -included for a [now-removed demo app]), but modified slightly to fix some -compiler errors and allow the explicit selection of the qrcode mode. - -[now-removed demo app]: https://github.com/flipperdevices/flipperzero-firmware/pull/160/files -[Flipper Zero]: https://flipperzero.one/ -[QRCode]: https://github.com/ricmoo/QRCode -[vCard]: https://www.evenx.com/vcard-3-0-format-specification -[qrcode repo]: https://github.com/bmatcuk/flipperzero-qrcode diff --git a/applications/Tools/qrcode/manifest.yml b/applications/Tools/qrcode/manifest.yml deleted file mode 100644 index fe6392f1b..000000000 --- a/applications/Tools/qrcode/manifest.yml +++ /dev/null @@ -1,17 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/bmatcuk/flipperzero-qrcode.git - commit_sha: 64135f4d511be1b4acf633da08f2447758aa00a4 -short_description: Display qrcodes -description: | - # qrcode - Display qrcodes on the Flipper Zero - - See the documentation in the qrcode repo: https://github.com/bmatcuk/flipperzero-qrcode -changelog: | - v2: Multi-line qrcodes, manual mode selection, may set mode, version, and ecc in file. - v1: First release; may manually change qrcode version and ecc level. -screenshots: - - ss1.png - - ss2.png diff --git a/applications/Tools/qrcode_generator/README.md b/applications/Tools/qrcode_generator/README.md deleted file mode 100644 index 0da0228b2..000000000 --- a/applications/Tools/qrcode_generator/README.md +++ /dev/null @@ -1,49 +0,0 @@ -# Flipper Zero: QRCode Generator -Generates and displays QRCodes on the flipper zero. - -## Download -Grab the `qrcode_generator.fap` from the latest release. - -## Installation -After the download copy the `.fap` file onto your flipper in the folder -`apps/Tools`. Then create in the `apps_data` folder the subfolder -`qrcode_generator` to open existing QRCodes or to save it on the sdcard. - -## Features -- Generating QRCodes based on the entered input -- Open QRCodes which are saved on the sdcard - -## Future Features -- [ ] Save newly generated QRCodes on the sdcard -- [ ] Export generated QRCodes as bitmap (.pbm image) - -## Data format -To generate newly QRCodes, you can just enter the data you want to stored -in the QRCode. - -To open saved QRCodes you need on a regular basis, just create a `.txt` file -in the `apps_data/qrcode_generator/` folder on the sdcard with just the -data in it. The app reads the content of the file and creates an QRCode with -it. You need no further specific format or something else. - -**Examples:** -```text -# Open new mail: -mailto:example@example.com - -# Open link: -https://github.com/qw3rtty - -# Connect to a WIFI: -WIFI:S:;P:;T:; -``` - -## Using the App -The app is acutally straightforward. If you start it, you have three menu -options. One to generate a new QRCode, one to open existing ones from the -sdcard and one to get the basic information about this app. - -## qrcode library -The application uses the awesome C library from [nayuki](https://github.com/nayuki/QR-Code-generator) -to generate and display the QRCodes. - diff --git a/applications/Tools/qrcode_generator/manifest.yml b/applications/Tools/qrcode_generator/manifest.yml deleted file mode 100644 index 540525840..000000000 --- a/applications/Tools/qrcode_generator/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/qw3rtty/flipperzero-qrcode-generator.git - commit_sha: c1d2591ef69e93eef5dc681ac3b5c1370c70a5d4 -description: "@./.catalog/README.md" -changelog: "@./.catalog/CHANGELOG.md" -screenshots: - - screenshots/Screenshot-menu.png - - screenshots/Screenshot-entered-text.png - - screenshots/Screenshot-saved-qrcodes.png - - screenshots/Screenshot-open-saved-qrcode.png diff --git a/applications/Tools/quac/README.md b/applications/Tools/quac/README.md deleted file mode 100644 index 43054e202..000000000 --- a/applications/Tools/quac/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![quac](https://catalog.flipperzero.one/application/quac/widget)](https://catalog.flipperzero.one/application/quac/page) \ No newline at end of file diff --git a/applications/Tools/quac/manifest.yml b/applications/Tools/quac/manifest.yml deleted file mode 100644 index 01d6ed04f..000000000 --- a/applications/Tools/quac/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/rdefeo/quac.git - commit_sha: 5d7289aba21e5e74ce60d92490b7cb1ea053cd05 -changelog: "@./CHANGELOG.md" -description: "@./README_flipperlab.md" -author: "Roberto De Feo" -screenshots: - - "./screenshots/screenshot_1_orig.png" - - "./screenshots/screenshot_3_orig.png" - - "./screenshots/screenshot_2_orig.png" - - "./screenshots/screenshot_4_orig.png" diff --git a/applications/Tools/quadratic_solver/README.md b/applications/Tools/quadratic_solver/README.md deleted file mode 100644 index 2397b5498..000000000 --- a/applications/Tools/quadratic_solver/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# What does this app do? - -This app takes a, b, and c values from a quadratic equation in form "ax^2 + bx + c = 0" - -# How to use? - -Select a number when hovering over a, b, or c with **LEFT** to decrease number, and **RIGHT** to increase. Press **OK** when selected values to solve the equation. Hover over "About" and press **RIGHT** to view additional information. diff --git a/applications/Tools/quadratic_solver/manifest.yml b/applications/Tools/quadratic_solver/manifest.yml deleted file mode 100644 index ea1aa89e4..000000000 --- a/applications/Tools/quadratic_solver/manifest.yml +++ /dev/null @@ -1,19 +0,0 @@ -author: '@paul-sopin' -category: 'Tools' -description: '@README.md' -changelog: '@changelog.md' -icon: 'quadratic_solver.png' -id: 'quadratic_solver' -name: 'Quadratic Solver' -screenshots: - - 'screenshots/screenshot_1.png' - - 'screenshots/screenshot_2.png' - - 'screenshots/screenshot_3.png' -short_description: 'A simple quadratic equation solver app' -sourcecode: - location: - commit_sha: 6bb4b232bdaaa5a4ad0e3ec775b418b5a4cb7291 - origin: https://github.com/paul-sopin/flipper-quadratic-solver.git - subdir: - type: git -version: 0.1 diff --git a/applications/Tools/resistors/README.md b/applications/Tools/resistors/README.md deleted file mode 100644 index 7eea62094..000000000 --- a/applications/Tools/resistors/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![resistors](https://catalog.flipperzero.one/application/resistors/widget)](https://catalog.flipperzero.one/application/resistors/page) \ No newline at end of file diff --git a/applications/Tools/resistors/manifest.yml b/applications/Tools/resistors/manifest.yml deleted file mode 100644 index 0d70af25c..000000000 --- a/applications/Tools/resistors/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: apps_source_code/resistors -description: "Resistor calculations" -changelog: "v1.1 - Initial release, v1.2 - Sync Updates, v1.3 - Sync updates and latest API support, v1.4 - Sync with latest version" -author: "Lewis Westbury" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Tools/roman_decoder/README.md b/applications/Tools/roman_decoder/README.md deleted file mode 100644 index 8f5075935..000000000 --- a/applications/Tools/roman_decoder/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![roman_decoder](https://catalog.flipperzero.one/application/roman_decoder/widget)](https://catalog.flipperzero.one/application/roman_decoder/page) \ No newline at end of file diff --git a/applications/Tools/roman_decoder/manifest.yml b/applications/Tools/roman_decoder/manifest.yml deleted file mode 100644 index 965801250..000000000 --- a/applications/Tools/roman_decoder/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/evillero/roman_decoder - commit_sha: b83e96e71a8db5d5fb5bbb8bb173444d75661ad3 -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@evillero" -screenshots: - - ".catalog/screenshots/screenshot1.png" - - ".catalog/screenshots/screenshot2.png" diff --git a/applications/Tools/rot13_app/README.md b/applications/Tools/rot13_app/README.md deleted file mode 100644 index 291ad1351..000000000 --- a/applications/Tools/rot13_app/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![rot13_app](https://catalog.flipperzero.one/application/rot13_app/widget)](https://catalog.flipperzero.one/application/rot13_app/page) \ No newline at end of file diff --git a/applications/Tools/rot13_app/manifest.yml b/applications/Tools/rot13_app/manifest.yml deleted file mode 100644 index 0f7938b67..000000000 --- a/applications/Tools/rot13_app/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/nothingbutlucas/flipperzero_rot13.git - commit_sha: ec52397333d61d4f35fe53801731e0dd832d5db5 -short_description: Cipher text with ROT13 -description: "@README.md" -changelog: "@./docs/CHANGELOG.md" -screenshots: - - screenshots/screenshot_00.png - - screenshots/screenshot_01.png - - screenshots/screenshot_02.png - - screenshots/screenshot_03.png - - screenshots/screenshot_04.png - - screenshots/screenshot_05.png diff --git a/applications/Tools/segment_clock/README.md b/applications/Tools/segment_clock/README.md deleted file mode 100644 index 1dfb17bda..000000000 --- a/applications/Tools/segment_clock/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![segment_clock](https://catalog.flipperzero.one/application/segment_clock/widget)](https://catalog.flipperzero.one/application/segment_clock/page) \ No newline at end of file diff --git a/applications/Tools/segment_clock/manifest.yml b/applications/Tools/segment_clock/manifest.yml deleted file mode 100644 index 373f66f2b..000000000 --- a/applications/Tools/segment_clock/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/segment_clock -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - diff --git a/applications/Tools/smack_my_dolphin_up/README.md b/applications/Tools/smack_my_dolphin_up/README.md deleted file mode 100644 index 3d07104f5..000000000 --- a/applications/Tools/smack_my_dolphin_up/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![smack_my_dolphin_up](https://catalog.flipperzero.one/application/smack_my_dolphin_up/widget)](https://catalog.flipperzero.one/application/smack_my_dolphin_up/page) \ No newline at end of file diff --git a/applications/Tools/smack_my_dolphin_up/manifest.yml b/applications/Tools/smack_my_dolphin_up/manifest.yml deleted file mode 100644 index 12578446e..000000000 --- a/applications/Tools/smack_my_dolphin_up/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/siberianbot/smack-my-dolphin-up.git - commit_sha: 71400765c08407d6a51072eab1d48359e2f0bafd -description: "@README.md" -changelog: "v1.0 - Initial release" -author: "siberianbot" -screenshots: - - "screenshot.png" \ No newline at end of file diff --git a/applications/Tools/tasks/README.md b/applications/Tools/tasks/README.md deleted file mode 100644 index cf3267bf6..000000000 --- a/applications/Tools/tasks/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![tasks](https://catalog.flipperzero.one/application/tasks/widget)](https://catalog.flipperzero.one/application/tasks/page) \ No newline at end of file diff --git a/applications/Tools/tasks/manifest.yml b/applications/Tools/tasks/manifest.yml deleted file mode 100644 index de205df17..000000000 --- a/applications/Tools/tasks/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: "https://github.com/MadLadSquad/FlipperTasks.git" - commit_sha: "78d77f953757c23edbdf5c68ee8487e479610fcc" -description: "A simple to-do application." -changelog: "v1.0 - Initial release, v1.1 - Minor refactor, v1.2 - Bump framework version" -screenshots: - - "showcase/flipper1.png" - - "showcase/flipper2.png" - - "showcase/flipper3.png" - - "showcase/flipper4.png" diff --git a/applications/Tools/techart_calendar/README.md b/applications/Tools/techart_calendar/README.md deleted file mode 100644 index fd86c687d..000000000 --- a/applications/Tools/techart_calendar/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![techart_calendar](https://catalog.flipperzero.one/application/techart_calendar/widget)](https://catalog.flipperzero.one/application/techart_calendar/page) \ No newline at end of file diff --git a/applications/Tools/techart_calendar/manifest.yml b/applications/Tools/techart_calendar/manifest.yml deleted file mode 100644 index c2d03d348..000000000 --- a/applications/Tools/techart_calendar/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/techartdev/Calendar - commit_sha: 3f29994837002986dbf9afc117338d5ee633c1ee -short_description: Calendar application -description: "Simple Calendar App for Flipper Zero" -changelog: "v1.0 - Initial Release, v1.1 - Framework update" -screenshots: - - screenshots/ss0.png diff --git a/applications/Tools/text_viewer/README.md b/applications/Tools/text_viewer/README.md deleted file mode 100644 index a92764a3f..000000000 --- a/applications/Tools/text_viewer/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![text_viewer](https://catalog.flipperzero.one/application/text_viewer/widget)](https://catalog.flipperzero.one/application/text_viewer/page) \ No newline at end of file diff --git a/applications/Tools/text_viewer/manifest.yml b/applications/Tools/text_viewer/manifest.yml deleted file mode 100644 index 336699f24..000000000 --- a/applications/Tools/text_viewer/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: 1066d17ad1e8fbf75cea5c6612d79ba539ec8a33 - subdir: base_pack/text_viewer -description: "Text viewer application (Update!)" -changelog: "v1.0 - New Initial release, v1.5 - Sync Updates, v1.6 - Sync updates and latest API support, v1.7 - Sync with latest version" -author: "@Willy-JL (Original by @kowalski7cc & @kyhwana)" -screenshots: - - "./img/2.png" - - "./img/1.png" diff --git a/applications/Tools/theme_manager/manifest.yml b/applications/Tools/theme_manager/manifest.yml deleted file mode 100644 index f5ff4f58f..000000000 --- a/applications/Tools/theme_manager/manifest.yml +++ /dev/null @@ -1,20 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Hoasker/flipper-theme-manager.git - commit_sha: 3587d19e064f93c691f3ba185f3b3321fd40116a -short_description: Manage dolphin animation themes from SD card -description: "@description.md" -changelog: "@changelog.md" -screenshots: - - screenshots/1.png - - screenshots/2.png - - screenshots/3.png - - screenshots/4.png - - screenshots/5.png - - screenshots/6.png - - screenshots/7.png - - screenshots/8.png - - screenshots/9.png - - screenshots/10.png - - screenshots/11.png \ No newline at end of file diff --git a/applications/Tools/tone_gen/README.md b/applications/Tools/tone_gen/README.md deleted file mode 100644 index 90a7a6f38..000000000 --- a/applications/Tools/tone_gen/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![tone_gen](https://catalog.flipperzero.one/application/tone_gen/widget)](https://catalog.flipperzero.one/application/tone_gen/page) \ No newline at end of file diff --git a/applications/Tools/tone_gen/manifest.yml b/applications/Tools/tone_gen/manifest.yml deleted file mode 100644 index d3bfcf83b..000000000 --- a/applications/Tools/tone_gen/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/GEMISIS/tone_gen.git - commit_sha: 6dc1a236fe0c395261b9edbfb594d61352355c16 -description: "Generate simple tones on your Flipper Zero" -changelog: "v1.0 - Initial release" -author: "@gemisis" -screenshots: - - "./screenshots/menu.png" - - "./screenshots/settings.png" - - "./screenshots/playback.png" diff --git a/applications/Tools/totp/README.md b/applications/Tools/totp/README.md deleted file mode 100644 index 0d04d70db..000000000 --- a/applications/Tools/totp/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![totp](https://catalog.flipperzero.one/application/totp/widget)](https://catalog.flipperzero.one/application/totp/page) \ No newline at end of file diff --git a/applications/Tools/totp/manifest.yml b/applications/Tools/totp/manifest.yml deleted file mode 100644 index e72c095a5..000000000 --- a/applications/Tools/totp/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/akopachov/flipper-zero_authenticator.git - commit_sha: 56227a6378b709a1d9f6778d66a40bb9a35a1f73 - subdir: totp -description: "@.ofwcatalog/DESCRIPTION.md" -changelog: "@.ofwcatalog/CHANGELOG.md" -screenshots: - - ".ofwcatalog/screenshot_1.png" - - ".ofwcatalog/screenshot_2.png" - - ".ofwcatalog/screenshot_3.png" - - ".ofwcatalog/screenshot_4.png" - - ".ofwcatalog/screenshot_5.png" \ No newline at end of file diff --git a/applications/Tools/trackerflipx/README.md b/applications/Tools/trackerflipx/README.md deleted file mode 100644 index a3e26d59d..000000000 --- a/applications/Tools/trackerflipx/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![trackerflipx](https://catalog.flipperzero.one/application/trackerflipx/widget)](https://catalog.flipperzero.one/application/trackerflipx/page) \ No newline at end of file diff --git a/applications/Tools/trackerflipx/manifest.yml b/applications/Tools/trackerflipx/manifest.yml deleted file mode 100644 index 81718dc93..000000000 --- a/applications/Tools/trackerflipx/manifest.yml +++ /dev/null @@ -1,29 +0,0 @@ -## This is a sample manifest file for the Flipper Zero app catalog. -## Create one for your app in a corresponding directory in the 'applications' folder. - -sourcecode: - type: git - location: - ## Specify the git URL of your repository here - origin: https://github.com/MassivDash/flipper-tracker.git - ## Put the fill commit SHA of the commit with the app's code you want to submit - commit_sha: fdd6b7d4ec6aabb71cef6e919061a59c88d29844 - ## If your app is located in a subdirectory of the repository, specify it here - # subdir: . -## If applicaion.fam contains 'fap_descriptiopn', it will be used as a short description -# short_description: A short app description. -## For description and changelog you can use limited markdown syntax. -## you can also specify a file from your app's repository as a source with @ -version: 1.1 -description: | - Flipper Time Tracker is an application for flipperzero device that allows the user to track multiple tasks at the same time. -author: "@MassivDash (https://spaceout.pl)" -changelog: "@CHANGELOG.md" -## Unmodified screenshots from qFlipper -screenshots: - - screenshots/flipper-time-tracker-screenshot-1.png - - screenshots/flipper-time-tracker-screenshot-2.png - - screenshots/flipper-time-tracker-screenshot-3.png - - screenshots/flipper-time-tracker-screenshot-4.png - - screenshots/flipper-time-tracker-screenshot-5.png - - screenshots/flipper-time-tracker-screenshot-6.png diff --git a/applications/Tools/tree_ident/manifest.yml b/applications/Tools/tree_ident/manifest.yml deleted file mode 100644 index 51b4733fd..000000000 --- a/applications/Tools/tree_ident/manifest.yml +++ /dev/null @@ -1,24 +0,0 @@ -sourcecode: - type: git - location: - ## Specify the git URL of your repository - origin: https://github.com/fgreil/mitzi-tree-ident.git - ## Put the full commit SHA of the commit with the app's code you want to submit - commit_sha: 85c5631f4650b4d5f7690a109f7d9eb6f8845b08 - ## (Optional) If your app is located in a subdirectory of the repository, specify it here - # subdir: . -## My application.fam contains 'fap_description', hope it will be used as a short description -# short_description: A short app description. -## For 'description' and 'changelog', you can use limited markdown syntax -## You can also specify a file from your app's repository as a source with @ -description: | - The app helps users identify trees through a series of guided questions. - It uses a decision-tree approach to narrow down possible tree species based on observable features. -changelog: "@changelog.md" -## Unmodified screenshots from qFlipper -screenshots: - - screenshots/SplashScreen.png - - screenshots/QuestionL1.png - - screenshots/QuestionL2Leaves.png - - screenshots/QuestionL3Leaflets.png - - screenshots/AnswerOddPinnateLeaves.png diff --git a/applications/Tools/upython/README.md b/applications/Tools/upython/README.md deleted file mode 100644 index 0861bcaae..000000000 --- a/applications/Tools/upython/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# uPython - -MicroPython support for the Flipper Zero. See [repository on GitHub](https://github.com/ofabel/mp-flipper) for details. diff --git a/applications/Tools/upython/manifest.yml b/applications/Tools/upython/manifest.yml deleted file mode 100644 index 569a43eb0..000000000 --- a/applications/Tools/upython/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/ofabel/mp-flipper.git - commit_sha: 602080eca907cad035f570541384137d786ad52a -description: "@./docs/README.md" -changelog: "@./docs/CHANGELOG.md" -screenshots: - - docs/welcome.png - - docs/file-browser.png - - docs/tic-tac-toe.png diff --git a/applications/Tools/video_game_module_tool/README.md b/applications/Tools/video_game_module_tool/README.md deleted file mode 100644 index e93c62935..000000000 --- a/applications/Tools/video_game_module_tool/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![video_game_module_tool](https://catalog.flipperzero.one/application/video_game_module_tool/widget)](https://catalog.flipperzero.one/application/video_game_module_tool/page) diff --git a/applications/Tools/video_game_module_tool/manifest.yml b/applications/Tools/video_game_module_tool/manifest.yml deleted file mode 100644 index 73558c16e..000000000 --- a/applications/Tools/video_game_module_tool/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: b791dea234f855155027bb46215dc60f3ddeb243 - subdir: video_game_module_tool -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@gsurkov" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" diff --git a/applications/Tools/vin_decoder/README.md b/applications/Tools/vin_decoder/README.md deleted file mode 100644 index c4ecf90ec..000000000 --- a/applications/Tools/vin_decoder/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![vin_decoder](https://catalog.flipperzero.one/application/vin_decoder/widget)](https://catalog.flipperzero.one/application/vin_decoder/page) \ No newline at end of file diff --git a/applications/Tools/vin_decoder/manifest.yml b/applications/Tools/vin_decoder/manifest.yml deleted file mode 100644 index 5785e9d45..000000000 --- a/applications/Tools/vin_decoder/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/evillero/vin_decoder - commit_sha: d0dbc90176e053185d89fab771e5ca754e4db12a -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@evillero" -screenshots: - - ".catalog/screenshots/Screenshot1.png" - - ".catalog/screenshots/Screenshot2.png" - diff --git a/applications/Tools/voltcalc_app/README.md b/applications/Tools/voltcalc_app/README.md deleted file mode 100644 index f38a57188..000000000 --- a/applications/Tools/voltcalc_app/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![voltcalc_app](https://catalog.flipperzero.one/application/voltcalc_app/widget)](https://catalog.flipperzero.one/application/voltcalc_app/page) \ No newline at end of file diff --git a/applications/Tools/voltcalc_app/manifest.yml b/applications/Tools/voltcalc_app/manifest.yml deleted file mode 100644 index 34e8799d2..000000000 --- a/applications/Tools/voltcalc_app/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/HappyAmos/Flipper_FAPS.git - commit_sha: 258177423e97997a72c794d591613cc2c5b27330 - subdir: voltcalc_app -description: "@README-catalog.md" -short_description: "A simple Ohms Law calculator" -changelog: "@changelog.md" -author: "@HappyAmos" -screenshots: - - "./screenshots/vri1.png" - - "./screenshots/vri2.png" - - "./screenshots/vri3.png" - - "./screenshots/vri4.png" diff --git a/applications/Tools/wch_swio_flasher/README.md b/applications/Tools/wch_swio_flasher/README.md deleted file mode 100644 index 0cb6b79f4..000000000 --- a/applications/Tools/wch_swio_flasher/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![wch_swio_flasher](https://catalog.flipperzero.one/application/wch_swio_flasher/widget)](https://catalog.flipperzero.one/application/wch_swio_flasher/page) \ No newline at end of file diff --git a/applications/Tools/wch_swio_flasher/manifest.yml b/applications/Tools/wch_swio_flasher/manifest.yml deleted file mode 100644 index 9e839e881..000000000 --- a/applications/Tools/wch_swio_flasher/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/sukvojte/wch_swio_flasher.git - commit_sha: 75266a7da1ceb3283321827cea8666421bf3a075 -description: "Flipper Zero WCH SWIO Flasher and debugger" -changelog: "v1.1 - Main app release" -author: "Vojtech Suk" -screenshots: - - "./screenshots/wchf_debug.png" - - "./screenshots/wchf_get_chip_info.png" - - "./screenshots/wchf_wiring.png" diff --git a/applications/USB/.gitkeep b/applications/USB/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/USB/bc_scanner/README.md b/applications/USB/bc_scanner/README.md deleted file mode 100644 index 68fcc383e..000000000 --- a/applications/USB/bc_scanner/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![bc_scanner](https://catalog.flipperzero.one/application/bc_scanner/widget)](https://catalog.flipperzero.one/application/bc_scanner/page) \ No newline at end of file diff --git a/applications/USB/bc_scanner/manifest.yml b/applications/USB/bc_scanner/manifest.yml deleted file mode 100644 index 5cab5e582..000000000 --- a/applications/USB/bc_scanner/manifest.yml +++ /dev/null @@ -1,14 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/polarikus/flipper-zero_bc_scanner_emulator.git - commit_sha: 94a401bbe3d5d8c60ac25c5b7ab71c843f35945e -short_description: "Emulates a barcode scanner for testing cash registers. Why buy a scanner when you have a flipper?" -description: "@./.catalog/README.md" -changelog: "@./.catalog/CHANGELOG.md" -screenshots: - - "./.catalog/screenshots/AppIcon.png" - - "./.catalog/screenshots/BcFilemanage.png" - - "./.catalog/screenshots/BcRun.png" - - "./.catalog/screenshots/ScreeenBC.png" - - "./.catalog/screenshots/BcDone.png" diff --git a/applications/USB/flip_tdi/README.md b/applications/USB/flip_tdi/README.md deleted file mode 100644 index cfca5b2d6..000000000 --- a/applications/USB/flip_tdi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![flip_tdi](https://catalog.flipperzero.one/application/flip_tdi/widget)](https://catalog.flipperzero.one/application/flip_tdi/page) \ No newline at end of file diff --git a/applications/USB/flip_tdi/manifest.yml b/applications/USB/flip_tdi/manifest.yml deleted file mode 100644 index af31ffd95..000000000 --- a/applications/USB/flip_tdi/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -author: 'SkorP' -category: 'USB' -changelog: "@.catalog/changelog.md" -description: "@.catalog/README.md" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" - - ".catalog/screenshots/3.png" -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: be5b1036d69fbdd1c0c1edb05e14f1e3aee9653c - subdir: flip_tdi -version: 1.0 diff --git a/applications/USB/hid_usb/README.md b/applications/USB/hid_usb/README.md deleted file mode 100644 index 7ef3dc243..000000000 --- a/applications/USB/hid_usb/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# HID App - -This is a standalone version of the HID app Momentum. Thankfully, that project is GPL, so this one is as well. - -## Functionality - -* Keynote - Remote for presentations -* Keynote Vertical - Alternate remote for presentations -* Keyboard - A functional keyboard, including modifier keys -* Numpad - Number pad -* Media - Media controls -* Apple Music macOS - Alternate music controls -* Movie - Media controls for watching a movie -* Mouse - Move the cursor and send clicks -* TikTok / YT Shorts - Specialized controls for short-form videos -* Mouse Clicker - Repeatedly click the mouse after a delay -* Mouse Jiggler - Moves the mouse every few seconds -* Mouse Jiggler Stealth - Moves the mouse a random direction and distance after a random time period -* PushToTalk - Controls to unmute your microphone with various services diff --git a/applications/USB/hid_usb/manifest.yml b/applications/USB/hid_usb/manifest.yml deleted file mode 100644 index 18d140bcb..000000000 --- a/applications/USB/hid_usb/manifest.yml +++ /dev/null @@ -1,24 +0,0 @@ -id: hid_usb -author: Momentum Team -sourcecode: - type: git - location: - origin: https://github.com/fidian/flipper-hid-app.git - ## Put the full commit SHA of the commit with the app's code you want to submit - commit_sha: f4a4c3e663838a2f1363f638b3366d4e03b78d79 -description: "@README.md" -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/main-menu.png - - screenshots/keynote.png - - screenshots/keyboard.png - - screenshots/media.png - - screenshots/apple-music-macos.png - - screenshots/movie.png - - screenshots/mouse.png - - screenshots/tiktoc-yt-shorts.png - - screenshots/mouse-clicker.png - - screenshots/mouse-jiggler.png - - screenshots/mouse-jiggler-stealth.png - - screenshots/push-to-talk-1.png - - screenshots/push-to-talk-2.png diff --git a/applications/USB/ldtoypad/README.md b/applications/USB/ldtoypad/README.md deleted file mode 100644 index 99ce4edaa..000000000 --- a/applications/USB/ldtoypad/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![ldtoypad](https://catalog.flipperzero.one/application/ldtoypad/widget)](https://catalog.flipperzero.one/application/ldtoypad/page) \ No newline at end of file diff --git a/applications/USB/ldtoypad/manifest.yml b/applications/USB/ldtoypad/manifest.yml deleted file mode 100644 index d0ff61f47..000000000 --- a/applications/USB/ldtoypad/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/SegerEnd/Flipper-Zero-LD-Toypad-Emulator.git - commit_sha: 96b59320271db9f92c86d3e0954b53369dd72b0a -short_description: Toy Pad emulator for Lego Dimensions via USB -description: | - Use your Flipper as a ToyPad!! - This app emulates the behavior of the original USB ToyPad. - Allowing you to place characters, vehicles all directly from your Flipper! -changelog: "@CHANGELOG.md" -screenshots: - - screenshots/toypad.png - - screenshots/selectionmenu.png - - screenshots/minfigs.png diff --git a/applications/USB/mass_storage/README.md b/applications/USB/mass_storage/README.md deleted file mode 100644 index 466505ce8..000000000 --- a/applications/USB/mass_storage/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![mass_storage](https://catalog.flipperzero.one/application/mass_storage/widget)](https://catalog.flipperzero.one/application/mass_storage/page) \ No newline at end of file diff --git a/applications/USB/mass_storage/manifest.yml b/applications/USB/mass_storage/manifest.yml deleted file mode 100644 index 32782db1b..000000000 --- a/applications/USB/mass_storage/manifest.yml +++ /dev/null @@ -1,12 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/flipperdevices/flipperzero-good-faps.git - commit_sha: b791dea234f855155027bb46215dc60f3ddeb243 - subdir: mass_storage -description: "@.catalog/README.md" -changelog: "@.catalog/CHANGELOG.md" -author: "@nminaylov @kevinwallace" -screenshots: - - ".catalog/screenshots/1.png" - - ".catalog/screenshots/2.png" diff --git a/applications/USB/mouse_jiggler/README.md b/applications/USB/mouse_jiggler/README.md deleted file mode 100644 index 74327592a..000000000 --- a/applications/USB/mouse_jiggler/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# Mouse Jiggler for Flipper Zero -This simple application is a fork of Matthew Willard's [flipper-mouse-jiggler](https://github.com/matthewwwillard/flipper-mouse-jiggler). Unlike other mouse jiggler implementations for the Flipper Zero, this one introduces an element of randomness to the movement patterns instead of performing a simple back-and-forth cycle. - -**WARNING: Do not use this application to interact with a system that you do not own unless you have explicitly been granted permission to do so. If you choose to use this application in an unauthorized manner, I am not responsible for the consequences you may face.** - -## Installing -1. Download the FAP file from the [release page](https://github.com/DavidBerdik/flipper-mouse-jiggler/releases). -2. Copy the FAP file to your Flipper. The easiest way to do this is by using the [qFlipper desktop application](https://flipperzero.one/downloads). The recommended storage location for this application is 'SD Card/apps/USB/'. -3. On your Flipper, navigate to 'Apps > USB > Mouse Jiggler' and launch the application. -4. Plug your Flipper in to a computer using a USB cable. While the application is running, the Flipper will present itself to the computer as a mouse and send arbitrary movement instructions to the system. - -## Building -1. Clone this repository. -2. [Install uFBT.](https://github.com/flipperdevices/flipperzero-ufbt) -3. Using a command line, navigate to this repository's directory and execute the following command: 'ufbt faps' -4. Once the build completes, a 'dist' folder will be created. This folder will contain the compiled FAP file. -5. You can run the compiled FAP file by manually copying it to your Flipper as described above or by executing the following command: 'ufbt launch' diff --git a/applications/USB/mouse_jiggler/manifest.yml b/applications/USB/mouse_jiggler/manifest.yml deleted file mode 100644 index f9806bd20..000000000 --- a/applications/USB/mouse_jiggler/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/DavidBerdik/flipper-mouse-jiggler.git - commit_sha: 17d839dae86be76d073dadff5121b7412c175132 -short_description: A simple mouse jiggler for the Flipper Zero -description: "@README.md" -changelog: "@CHANGELOG.md" -screenshots: - - images/screenshot.png diff --git a/applications/USB/pc_monitor_usb/manifest.yml b/applications/USB/pc_monitor_usb/manifest.yml deleted file mode 100644 index 7d3381fd0..000000000 --- a/applications/USB/pc_monitor_usb/manifest.yml +++ /dev/null @@ -1,15 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/DonJulve/Flipper-Zero-PC-Monitor-USB - commit_sha: "66100de81ee8baed0d77ade915df2b9b4dc979e3" -short_description: "Application for monitoring PC resources via USB" -description: | - Flipper Application for monitoring PC resources via USB (Virtual COM Port). - This is a ported version of the original (https://github.com/TheSainEyereg/flipper-pc-monitor) application to work over USB instead of Bluetooth. - - See full readme: https://github.com/DonJulve/Networking_NFC_QR_Flipper_Zero/blob/main/README_en.md -changelog: "@.catalog/changelog.md" -screenshots: - - .catalog/screenshots/bars.png - - .catalog/screenshots/QR.png diff --git a/applications/USB/portal_of_flipper/README.md b/applications/USB/portal_of_flipper/README.md deleted file mode 100644 index 371c38b05..000000000 --- a/applications/USB/portal_of_flipper/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![portal_of_flipper](https://catalog.flipperzero.one/application/portal_of_flipper/widget)](https://catalog.flipperzero.one/application/portal_of_flipper/page) \ No newline at end of file diff --git a/applications/USB/portal_of_flipper/manifest.yml b/applications/USB/portal_of_flipper/manifest.yml deleted file mode 100644 index 772125606..000000000 --- a/applications/USB/portal_of_flipper/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -changelog: "@CHANGELOG.md" -description: "@README.md" -screenshots: - - ".catalog/screenshots/empty.png" - - ".catalog/screenshots/figure.png" -sourcecode: - type: git - location: - origin: https://github.com/sanjay900/portal_of_flipper.git - commit_sha: cfc775efe510e0a4e8b259c35514f0a584a4c005 diff --git a/applications/USB/usb_ccb/README.md b/applications/USB/usb_ccb/README.md deleted file mode 100644 index 6d7f4c24c..000000000 --- a/applications/USB/usb_ccb/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![usb_ccb](https://catalog.flipperzero.one/application/usb_ccb/widget)](https://catalog.flipperzero.one/application/usb_ccb/page) \ No newline at end of file diff --git a/applications/USB/usb_ccb/manifest.yml b/applications/USB/usb_ccb/manifest.yml deleted file mode 100644 index ea4cab28f..000000000 --- a/applications/USB/usb_ccb/manifest.yml +++ /dev/null @@ -1,10 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/WithSecureLabs/usb-consumer-control - commit_sha: a8f46f7af6d1563243f3f847d2aa933524a17636 -description: "@README.md" -changelog: "@./docs/changelog.md" -screenshots: - - "./screenshots/1.png" - - "./screenshots/2.png" diff --git a/applications/USB/usb_hid_autofire/README.md b/applications/USB/usb_hid_autofire/README.md deleted file mode 100644 index 63be11ede..000000000 --- a/applications/USB/usb_hid_autofire/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![usb_hid_autofire](https://catalog.flipperzero.one/application/usb_hid_autofire/widget)](https://catalog.flipperzero.one/application/usb_hid_autofire/page) \ No newline at end of file diff --git a/applications/USB/usb_hid_autofire/manifest.yml b/applications/USB/usb_hid_autofire/manifest.yml deleted file mode 100644 index b35467e75..000000000 --- a/applications/USB/usb_hid_autofire/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/xMasterX/all-the-plugins.git - commit_sha: a2004a3539c50ced20f6f24e61ba17c1dd86460b - subdir: apps_source_code/usb_hid_autofire -description: "@./catalog/docs/Readme.md" -changelog: "@./catalog/docs/Changelog.md" -screenshots: - - "./catalog/screenshots/1.png" - diff --git a/applications/USB/xinput_controller/README.md b/applications/USB/xinput_controller/README.md deleted file mode 100644 index f14432c4d..000000000 --- a/applications/USB/xinput_controller/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![xinput_controller](https://catalog.flipperzero.one/application/xinput_controller/widget)](https://catalog.flipperzero.one/application/xinput_controller/page) \ No newline at end of file diff --git a/applications/USB/xinput_controller/manifest.yml b/applications/USB/xinput_controller/manifest.yml deleted file mode 100644 index d2cc77968..000000000 --- a/applications/USB/xinput_controller/manifest.yml +++ /dev/null @@ -1,11 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/expected-ingot/flipper-xinput.git - commit_sha: 48b3b146edc0de2f0e6cf0b0f23463fc3f3f8b3f -short_description: An app that emulates XInput controllers -description: "@README.md" -changelog: "@./docs/changelog.md" -screenshots: - - screenshots/ss0.png - - screenshots/ss1.png \ No newline at end of file diff --git a/applications/iButton/.gitkeep b/applications/iButton/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/applications/iButton/fuzzer_ibtn/README.md b/applications/iButton/fuzzer_ibtn/README.md deleted file mode 100644 index e9c11c3e2..000000000 --- a/applications/iButton/fuzzer_ibtn/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Status - -[![fuzzer_ibtn](https://catalog.flipperzero.one/application/fuzzer_ibtn/widget)](https://catalog.flipperzero.one/application/fuzzer_ibtn/page) \ No newline at end of file diff --git a/applications/iButton/fuzzer_ibtn/manifest.yml b/applications/iButton/fuzzer_ibtn/manifest.yml deleted file mode 100644 index 302207222..000000000 --- a/applications/iButton/fuzzer_ibtn/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/DarkFlippers/Multi_Fuzzer.git - commit_sha: 2ecfcd857da54b7a08014d14d7b46eb235b72695 -id: "fuzzer_ibtn" -description: "@./catalog/docs/ibtn/README.md" -changelog: "@./catalog/docs/ibtn/Changelog.md" -screenshots: - - "./catalog/screenshots/Main_menu.png" - - "./catalog/screenshots/Attack_screen.png" - - "./catalog/screenshots/Pause.png" - - "./catalog/screenshots/Field_editor.png" \ No newline at end of file diff --git a/applications/iButton/ibutton_converter/manifest.yml b/applications/iButton/ibutton_converter/manifest.yml deleted file mode 100644 index cc0b73cf8..000000000 --- a/applications/iButton/ibutton_converter/manifest.yml +++ /dev/null @@ -1,13 +0,0 @@ -sourcecode: - type: git - location: - origin: https://github.com/Leptopt1los/ibutton_converter.git - commit_sha: 9d191d71f2811d928625900de36de914071b3d6d -description: "@README.md" -changelog: "@.catalog/CHANGELOG.md" -screenshots: - - ".catalog/screenshots/main_menu_options.png" - - ".catalog/screenshots/key_select.png" - - ".catalog/screenshots/metakom_convert_options.png" - - ".catalog/screenshots/cyfral_convert_options.png" - - ".catalog/screenshots/save_success.png" diff --git a/documentation/Contributing.md b/documentation/Contributing.md deleted file mode 100644 index 82938cb88..000000000 --- a/documentation/Contributing.md +++ /dev/null @@ -1,81 +0,0 @@ -# Apps Catalog: Contribution Guide - -Thank you for your interest in contributing to the Flipper Apps Catalog, a place where people can discover, download, and share community developed apps for Flipper Zero. - -In this guide, you will learn how to use this repository to publish and update your apps in the Apps Catalog. - -## General terms and requirements - - 1. **Open Source License**. Apps submitted to this repository must be licensed under an Open Source License of your choice, permitting building and distribution of the app in binary form by the Flipper Apps Catalog's infrastructure. - 2. **No infringement on rights or trademarks**. Apps and data they produce or process must not infringe on any third-party rights or trademarks. - 3. **No malicious code**. Submitted apps must not contain any malicious code or code that may cause harm to the user's device or data. - 4. **No illegal activity**. Apps must not bypass Flipper Zero's intentional limits. Sharing links, instructions, or encouragement for firmware forks with illegal features or illegal activities is prohibited. - 5. **Compliance with UGC Policies**. Apps must comply with the User-Generated Content Policies of [Play Store](https://support.google.com/googleplay/android-developer/answer/9876937) and [App Store](https://developer.apple.com/app-store/review/guidelines/#user-generated-content). We reserve the right to reject and remove apps that do not comply with these policies. - 6. **App metadata or source code updates**. If any changes to the app metadata or source code are required, we will contact the app author, as specified in the submitted pull request or using the contact information provided in the manifest file. If we do not receive a response within 14 days, the app will be removed from the Catalog. - 7. **Emergency app updates**. If immediate changes are required to address a security vulnerability, copyright or any other critical issue, we reserve the right to unpublish the app from the Catalog before contacting the author. - 8. **Reserved right to unpublish apps**. We reserve the right to reject and unpublish apps that do not comply with these terms and requirements, or for any other reason at any time. - - -## Publishing your app to the Apps Catalog - -The Flipper Apps Catalog repository doesn't host the app source code. It **only hosts** `manifest.yml` files with a link to the app source code repository and the app metadata. - -> [!NOTE] -> The app source code must be hosted in a public Git repository. We currently only accept apps hosted on GitHub. - -To publish your app to the Apps Catalog: -1. Prepare the app source code repository -2. Prepare metadata files and fill in the metadata fields -3. Create a pull request with the Apps Catalog Manifest file `manifest.yml` file in the Apps Catalog repository -4. Wait until your pull request is approved and merged - -Below, we discuss each step in more detail. - -### Step 1. Preparing the app source code repository - - 1. Ensure your app is buildable with [uFBT](https://pypi.org/project/ufbt/) and compatible with the latest Release or Release Candidate firmware version. - 2. Add an app icon to the repository (10x10px 1-bit .png file). - 3. Add app screenshots to the repository (take them using qFlipper and do not change their resolution or format). These screenshots will be displayed in the Apps Catalog, and the first screenshot will be shown in the App preview. - 4. Create a Markdown-formatted file `README.md` with additional information about your app. There, you can include instructions on how to use the app, necessary hardware add-ons, etc. This information will be displayed in the detailed description on the app page in the Apps Catalog. - 5. Create a Markdown-formatted file `changelog.md`. In it, describe changes with each new version of the app in the following format: - -``` -v0.2: -added images - -v0.1: -added changelog -``` - -### Step 2. Preparing metadata files - -1. Create `application.fam` (in your app's source code repo). You need to edit this manifest to specify several fields, such as `appid` (must be unique), `name`, `fap_category`, `fap_version`, etc. See [Flipper App Manifests (.fam)](https://developer.flipper.net/flipperzero/doxygen/app_manifests.html) for details and examples. -2. Commit the `application.fam` to your repository. -3. Create `manifest.yml` (you later need to add it to the Apps Catalog repo via pull request, see step 3). Fill in text files in it, including paths to additional files. In the `commit_sha` field of manifest.yml, specify commit ID from the source repository (after committing all files to the source repository). See [Manifest](./Manifest.md) for details. See also the [`manifest.yml` sample file](../example/manifest.yml). - -> [!NOTE] -> Please make sure your `manifest.yml` is valid as described [here](Manifest.md#validating-manifest). - -Info from these fields will later be shown in the Apps Catalog after your app is published. Here is what it's going to look like in the catalog interface: - -

App manifest fields shown in the catalog interface

- -### Step 3. Sending the pull request with manifest.yml to the Apps Catalog - - 1. Fork this repository and clone your fork to the local path. - 2. Create a new branch. The recommended naming scheme for your branch is the following: `/_`, where `username` is your GitHub username, `appid` is your app ID, and `appversion` is your app's version. - 3. In the new branch, add your `manifest.yml` file to the directory: `applications///`. Before adding it, remember to check its validity as described [here](./Manifest.md#validating-manifest). - 4. (Optional) Add a Markdown-formatted `README.md` file with additional information about your app to the same directory as `manifest.yml`. When the user clicks on the Manifest link on your published app page, they will access your app folder in the Apps Catalog repository, and this readme will be shown. - 5. Create a pull request from your local branch, filling in the pull request template. - -To learn more about contributing and forking on GitHub, see [Contributing to projects](https://docs.github.com/en/get-started/quickstart/contributing-to-projects). - -### Step 4. App moderation - -Once you submit your pull request, it will be moderated. Check out your GitHub notifications to follow the review process. If you receive any error notifications, please go to your PR page and find the review step that caused the issue for more details. If everything is formatted correctly and your app runs without errors, we'll usually accept your pull request within 1-2 business days. - -In a few minutes after your pull request is accepted, your app will be available in the Apps Catalog in [mobile apps](https://flpr.app/?ref=blog.flipper.net) and in [Flipper Lab](https://lab.flipper.net/apps). - -## Updating your app - -Updating an app is done in the same way as publishing your app to the Apps Catalog. Note that each submission must have a unique version. If you want to update an app, increment the version number in the `application.fam` file in the source code repo. See [Manifest format description](./Manifest.md#app-version) for details. \ No newline at end of file diff --git a/documentation/Manifest.md b/documentation/Manifest.md deleted file mode 100644 index f34a253fe..000000000 --- a/documentation/Manifest.md +++ /dev/null @@ -1,154 +0,0 @@ -# App manifest - -Each app submitted to this catalog is defined by an app manifest file called `manifest.yml`. The app manifest is used by the bundler script to build the app package. The app package is then automatically uploaded to Flipper Application Archivarius, which manages app builds for various SDKs and devices. - -The app manifest must be placed in a corresponding subdirectory of the `applications` directory. The full path consists of the `applications` directory, [category name](#categories), app ID, and `manifest.yml` file. - -## Minimal manifest example - -Here is a minimal example of an app manifest. It is expected that some of the fields are specified in the `application.fam` file in the app's source code repository. Namely, `application.fam` should contain `name`, `appid` (set to "example_subghz_app"), `fap_category` (set to "Sub-GHz"), `fap_version`, `fap_author`, and `fap_icon` fields. - -The repositofy should also contain `README.md`, `docs/changelog.md` files , and `screenshots/ss0.png` files. - -See [Manifest structure](#manifest-structure) for more details on those fields. - -```yaml -sourcecode: - type: git - location: - origin: https://github.com/example/test.git - commit_sha: bf7019d16d7b50f6a98cc3abdac38c53952a4f30 -short_description: Test app -description: "@README.md" -changelog: "@./docs/changelog.md" -screenshots: - - screenshots/ss0.png -``` - -This manifest must be placed in the `applications/Sub-GHz/example_subghz_app/manifest.yml` file. - - -## Categories - -Your app must be placed in one of the following categories: - - - **Sub-GHz**: Apps that use Sub-GHz radio. - - **RFID**: Apps built for low-frequency RFID subsystem. - - **NFC**: Apps for NFC subsystem. - - **Infrared**: Infrared-related apps. - - **GPIO**: Apps utilizing GPIO pins. - - **iButton**: Apps that use iButton/OneWire subsystem. - - **USB**: USB-related apps. - - **Games**: Games. - - **Media**: Media apps. - - **Tools**: Utility apps. - - **Bluetooth**: Bluetooth LE apps. - - -## Manifest structure - -An app manifest is a YAML file that points to the app's source code and provides additional information about the app. Note that Required fields that are not specified in the manifest file must be specified in the `application.fam` file in the app's source code repository. - -| Field | Required? | Description | Corresponding field in `application.fam` | -| --- | --- | --- | --- | -| `sourcecode` | Yes | Source code location. See [Source code location](#source-code-location). | None | -| `screenshots` | Yes | A list of paths to screenshot images in app's source code repo. See [Screenshots](#screenshots). | None | -| `changelog` | Yes | App changelog. Supports Markdown formatting and file inclusion. [Details](#loading-values-from-files). | None | -| `short_description` | Yes | Short app description, plain text. | `fap_description` | -| `description` | Yes | App description. Supports limited Markdown. [Details](#loading-values-from-files). | None | -| `name` | Yes | App name. | `name` | -| `id` | Yes | App ID. A lowercase string with no spaces. Must be globally unique. | `appid` | -| `category` | Yes | App category. Must match manifest location within this repo. | `fap_category` | -| `version` | Yes | App version, in format "major.minor". | `fap_version` | -| `author` | No | App author. | `fap_author` | -| `icon` | No | App icon. Must be 10x10px 1-bit .png file. | `fap_icon` | -| `targets` | No | A list of targets this app supports. See [documentation on FAM App Manifests](https://developer.flipper.net/flipperzero/doxygen/app_manifests.html) for more. By default - includes all targets. | `targets` | - -**It is recommended to specify as many fields as possible in `application.fam` and not in `manifest.yml`, to avoid duplication and keep the manifest file short.** - -If your `application.fam` defines multiple apps, you can specify the app ID in `manifest.yml` using the `id` field. - -The most important field is `sourcecode`. It points to the app's source code repository. The repository must be public. See [Source code location](#source-code-location) for details. - -Some fields support loading their values from files in the app's source code repository. See [Loading values from files](#loading-values-from-files). - -### Source code location - -The source code origin is specified in the `sourcecode` section. It contains the `type` field, which must be set to `git`. It must also contain the `location` section, which specifies the source code repository location. - -For the `location` object, fields `origin` and `commit_sha` are required. - * `origin` is the git URL of the repository. - * `commit_sha` is the commit SHA of the commit that contains the app's source code being submitted. - * `subdir` is optional and specifies the subdirectory within the repository where the app is located. If `subdir` is not specified, the root of the repository is used. This is useful if the repository contains multiple apps. - -Example: - -```yaml -sourcecode: - type: git - location: - origin: https://github.com/example/test.git - commit_sha: 520d9f1f04a5fcc67d20c759509ba7fe3d3f9091 - subdir: metronome -``` - -### App version - -The app version is used to determine whether a new version of the app is available for installation on the device. All submitted app updates must use a higher version number than the previous version, otherwise the update will be rejected. - -The app version is specified in the `version` field. It must be in format `major.minor`. For example, `1.0` or `2.3`. If not specified in the YAML manifest, the version is taken from `application.fam` file in the app's source code repository. That version is also embedded into the app binary, so to avoid confusion and build errors, it is recommended to specify the version in `application.fam` and not in `manifest.yml`. - -### Loading values from files - -Some fields support loading their values from files in the app's source code repository. This is useful for fields that contain large amounts of text, such as `description` or `changelog`. - -To load a value from a file, specify the field value as a string starting with `@` followed by the path to the file in the app's repository. The path is relative to the app's source code folder, which may be specified in the `location.subdir` field. Example: - -```yaml -... -description: "@README.md" -changelog: "@./docs/changelog.md" -... -``` - -### Markdown support - -For fields that support loading values from files, Markdown formatting is supported. However, only a subset of Markdown features is allowed: - - - Headers of levels 1-2 - - **Bold** and _italic_ text - - Lists - - Links - automatic and inline - -## Screenshots - -Apps submitted to the Flipper Apps Catalog must contain at least one screenshot. Screenshots are used to showcase the app in the Apps Catalog. Screenshots are specified in the `screenshots` section of the manifest as a list of screenshot paths. - -**Screenshots must be created using the qFlipper screenshot feature.** Please don't change their resolution or format. - -## Validating manifest - -You can check your manifest file for validity. To do so, set up a virtual Python environment with the required dependencies: - -```bash -python3 -m venv venv -source venv/bin/activate -pip install -r tools/requirements.txt -``` -*Hint 1.* Above is the Linux-way of doing it. For instance in Windows Power-shell, activating the phython-environment is done with `.\venv\Scripts\Activate.ps1`. -*Hint 2.* The `tools/requirements.txt` is obviously located in your local repo `flipper-application-catalog`. - -If you haven't yet installed the SDK for `ufbt` for your current user, you can install one within the virtual environment. - -```bash -export UFBT_HOME=`realpath venv/ufbt` -ufbt update -``` - -Then run the validation script, passing it the path to your manifest file: - -```bash -python3 tools/bundle.py --nolint applications/CATEGORY/APPID/manifest.yml bundle.zip -``` - -If there are any errors, the script will print them and exit with non-zero exit code. **Be sure to fix all errors before submitting your app.** diff --git a/documentation/manifest-fields.png b/documentation/manifest-fields.png deleted file mode 100644 index b8c62adfc..000000000 Binary files a/documentation/manifest-fields.png and /dev/null differ diff --git a/example/manifest.yml b/example/manifest.yml deleted file mode 100644 index 1605cbf50..000000000 --- a/example/manifest.yml +++ /dev/null @@ -1,26 +0,0 @@ -## This is a sample manifest file for the Flipper Apps Catalog. -## Create one for your app in a corresponding directory in the 'applications' folder. - -sourcecode: - type: git - location: - ## Specify the git URL of your repository - origin: https://github.com/flipperdevices/flipperzero-catalog-sample-app.git - ## Put the full commit SHA of the commit with the app's code you want to submit - commit_sha: a614af3979876fdc1e9f7d2f6c93b4c8f32b1d03 - ## (Optional) If your app is located in a subdirectory of the repository, specify it here - # subdir: . -## If application.fam contains 'fap_description', it will be used as a short description -short_description: A short app description. -## For 'description' and 'changelog', you can use limited markdown syntax -## You can also specify a file from your app's repository as a source with @ -description: | - A long app description. - Very long. - Spanning multiple lines. -changelog: "@CHANGELOG.md" -## Unmodified screenshots from qFlipper -screenshots: - - screenshots/flp0.png - - screenshots/flp1.png - - screenshots/flp2.png diff --git a/tools/build.py b/tools/build.py deleted file mode 100644 index 48d3cf414..000000000 --- a/tools/build.py +++ /dev/null @@ -1,274 +0,0 @@ -import argparse -import hashlib -import io -import logging -import pathlib -import subprocess -import sys -import tempfile -import zipfile -from typing import Optional - -import requests -from flipp_catalog.manifest import ApplicationManifest - - -class GithubOutputHandler(logging.Handler): - def __init__(self, gh_output: Optional[str]): - super().__init__() - self.gh_output = gh_output - - def emit(self, record): - logging.info( - f"Adding log to Github output: {self.format(record)} to {self.gh_output}" - ) - with open(self.gh_output, "a") as f: - f.write(f"{self.format(record)}\n") - - -github_logger = logging.getLogger("github") -github_logger.setLevel(logging.INFO) - - -class UploadError(Exception): - def __init__(self, http_error: requests.HTTPError): - self.http_error = http_error - - def __str__(self): - return f"Upload failed: code {self.http_error}, message {self.http_error.response.text}" - - -class ArtifactUploader: - FAILURE_URL_SUFFIX = "/status/fail" - - def __init__(self, upload_url: str, token: str, github_run_id: int = 0): - self.upload_url = upload_url - self.token = token - self.github_run_id = github_run_id - - def _get_headers(self): - return { - "Authorization": f"Bearer {self.token}", - } - - def _get_params(self): - params = {} - if self.github_run_id: - params["github_run_id"] = (None, self.github_run_id) - return params - - def process_response(self, response: requests.Response): - try: - response.raise_for_status() - except requests.HTTPError as e: - raise UploadError(e) - - def upload(self, artifact: pathlib.Path): - # Create a ZIP file with the artifact - sha256 = hashlib.sha256() - with open(artifact, "rb") as f: - sha256.update(f.read()) - sha256_hash = sha256.hexdigest() - - github_logger.info(f"SHA256 for {artifact.name} = `{sha256_hash}`") - - artifact_zip = artifact.with_suffix(".zip") - with zipfile.ZipFile(artifact_zip, "w") as zip_ref: - zip_ref.write(artifact, artifact.name) - - # Upload it - with artifact_zip.open("rb") as zip_fin: - params = self._get_params() - params.update( - { - "build_checksum": (None, sha256_hash), - "build": zip_fin, - } - ) - response = requests.post( - self.upload_url, - headers=self._get_headers(), - files=params, - ) - self.process_response(response) - - def report_error(self, error_log: str): - headers = self._get_headers() - params = self._get_params() - params.update({"logs": io.BytesIO(error_log.encode("utf-8"))}) - - response = requests.post( - self.upload_url + self.FAILURE_URL_SUFFIX, - headers=headers, - files=params, - ) - self.process_response(response) - - -class BundleBuildError(Exception): - def __init__(self, stdout: str, stderr: str): - self.stdout = stdout - self.stderr = stderr - - -class BundleBuilder: - def __init__(self, bundle_zip_url: str): - self.bundle_zip_url = bundle_zip_url - self.tmp_dir = tempfile.TemporaryDirectory() - self.tmp_path = pathlib.Path(self.tmp_dir.name) - - def __del__(self): - logging.info("Cleaning up") - self.tmp_dir.cleanup() - - def build(self): - logging.info(f"Building bundle from {self.bundle_zip_url}") - response = requests.get(self.bundle_zip_url) - response.raise_for_status() - - # subprocess.call(["open", self.tmp_path]) - - zip_file = self.tmp_path / "bundle.zip" - - with open(zip_file, "wb") as f: - f.write(response.content) - - logging.info(f"Bundle saved to {zip_file}") - - # Unzip the bundle - logging.info("Unzipping bundle") - - with zipfile.ZipFile(zip_file, "r") as zip_ref: - zip_ref.extractall(self.tmp_path) - - logging.info("Bundle unzipped") - - manifest_file = self.tmp_path / "manifest.yml" - manifest = ApplicationManifest.from_yaml_file(manifest_file) - logging.info(f"Manifest: {manifest}") - - code_dir = self.tmp_path / "code" - - # Build the bundle - logging.info("Building bundle") - - p = subprocess.run( - [ - "ufbt", - "faps", - ], - cwd=code_dir, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - logging.info(p.stdout.decode("utf-8")) - if p.stderr: - logging.error(p.stderr.decode("utf-8")) - - if p.returncode != 0: - raise BundleBuildError(p.stdout.decode("utf-8"), p.stderr.decode("utf-8")) - - logging.info(f"Bundle built in {code_dir}") - - artifact = code_dir / "dist" / f"{manifest.id}.fap" - - if not artifact.exists(): - raise FileNotFoundError(f"Artifact not found: {artifact}") - else: - logging.info(f"Artifact built: {artifact}") - - return artifact - - -class Main: - def __init__(self): - self.parser = argparse.ArgumentParser(description="Build source code bundle") - self.parser.add_argument( - "-d", - "--debug", - action="store_true", - help="Enable debug mode", - ) - - self.parser.add_argument( - "--api", - type=str, - help="API URL", - required=True, - ) - - self.parser.add_argument( - "--bundle-path", - type=str, - help="Path to zip file with source code bundle, relative to API root", - required=True, - ) - - self.parser.add_argument( - "--upload-path", - type=str, - help="Path to upload zip file with artifact, relative to API root", - required=True, - ) - - self.parser.add_argument( - "--token", - type=str, - help="API token", - required=True, - ) - - self.parser.add_argument( - "--gh-summary", - type=str, - help="Github summary output file", - default="", - ) - - self.parser.add_argument( - "--gh-run-id", - type=int, - help="Github run ID", - default=0, - ) - - def main(self): - args = self.parser.parse_args() - - if args.debug: - logging.getLogger().setLevel(logging.DEBUG) - - if args.gh_summary: - logging.info(f"Also logging to Github output file {args.gh_summary}") - github_logger.addHandler(GithubOutputHandler(args.gh_summary)) - - builder = BundleBuilder(f"{args.api}{args.bundle_path}") - uploader = ArtifactUploader( - f"{args.api}{args.upload_path}", - token=args.token, - github_run_id=args.gh_run_id, - ) - - try: - fap_path = builder.build() - uploader.upload(fap_path) - return 0 - except BundleBuildError as e: - logging.error(f"Bundle build failed: {e.stderr}") - uploader.report_error(f"Stdout: {e.stdout}\n\n\nStderr: {e.stderr}\n") - except UploadError as e: - logging.error(f"Upload failed: {e}") - except Exception as e: - logging.error(f"Bundle build failed: {e}") - uploader.report_error(str(e)) - return 1 - - -if __name__ == "__main__": - logging.basicConfig( - format="%(asctime)s.%(msecs)03d [%(levelname).1s] %(message)s", - level=logging.INFO, - datefmt="%H:%M:%S", - ) - - sys.exit(Main().main()) diff --git a/tools/bundle.py b/tools/bundle.py deleted file mode 100644 index c230bee3e..000000000 --- a/tools/bundle.py +++ /dev/null @@ -1,548 +0,0 @@ -import argparse -import json -import logging -import os -import re -import shutil -import subprocess -import sys -import zipfile -from pathlib import Path -from tempfile import TemporaryDirectory -from typing import Dict, List - -import yaml -from dataclass_wizard.dumpers import asdict -from flipp_catalog import BundlerException -from flipp_catalog.manifest import ApplicationManifest -from flipp_catalog.markdown_filter import BasicFormattingEnforcingExtension -from markdown import Markdown -from PIL import Image - -# Temporary hack -try: - import SCons - import SCons.Node -except ImportError: - import sys - - class _fbt_util_stub: - @staticmethod - def resolve_real_dir_node(node): - return node - - sys.modules["fbt.util"] = _fbt_util_stub - - - -class AppBundler: - MANIFEST_YAML_NAME = "manifest.yml" - UFBT_COMMAND = "ufbt" - APP_ID_REGEX = re.compile(r"^[a-z0-9_]+$") - FLIPPER_SCREEN_SIZE = (128, 64) - APP_SCREENSHOT_DOWNSCALE_FACTORS = (4, 8) - FLIPPER_ICON_SIZE = (10, 10) - BLACK_THRESHOLD = (15, 15, 15) - PIXEL_BLACK = (0, 0, 0, 255) - PIXEL_TRANSPARENT = (255, 255, 255, 0) - - def __init__(self, manifest_yaml_path: str, bundle_path: str): - self._log = logging.getLogger(self.__class__.__name__) - self._manifest_yaml_path = manifest_yaml_path - self._bundle_path = bundle_path - self._tmp_dir = TemporaryDirectory() - self._tmp_path = Path(self._tmp_dir.name).resolve() - self._tmp_code_dir = TemporaryDirectory() - self._tmp_code_path = Path(self._tmp_code_dir.name).resolve() - self._code_dir = self._tmp_path / "code" - self._assets_dir = self._tmp_path / "assets" - self._assets_dir.mkdir() - self._fam_manifest = None - self._log.info(f"Working in '{self._tmp_path}'") - self._load() - - def bundle( - self, - *, - skip_lint: bool = False, - skip_build: bool = False, - skip_source_code: bool = False, - ): - self._fetch_sources() - if not skip_lint: - self._lint_sources() - if not skip_build: - self._build_sources() - self._update_manifest_from_fap() - self._check_manifest_path() - self._process_includes() - self._process_assets() - self._check_manifest_values() - self._build_package(skip_source_code) - - def __enter__(self): - return self - - def __exit__(self, type, value, traceback): - self.cleanup() - - def cleanup(self): - self._tmp_dir.cleanup() - self._tmp_code_dir.cleanup() - - def _load(self): - try: - self._manifest = ApplicationManifest.from_yaml_file( - self._manifest_yaml_path - ) - except FileNotFoundError: - raise BundlerException(f"File '{self._manifest_yaml_path}' not found") - except yaml.YAMLError as e: - raise BundlerException(f"YAML error: {e}") - self._log.info(f"Loaded app manifest from {self._manifest_yaml_path}") - self._log.debug(self._manifest) - - def _validate_path(self, path: Path): - self._log.debug(f"Validating path: {path} vs {self._tmp_path}") - if not path.exists(): - raise BundlerException(f"Path not found: {path}") - if not path.resolve().is_relative_to(self._tmp_path): - raise BundlerException(f"Path traversal detected: {path}") - - def _rel_path(self, path: Path): - self._validate_path(path) - return path.relative_to(self._tmp_path).as_posix() - - def __exec_git(self, *args, **kwargs): - return subprocess.check_output( - ["git", *args], cwd=self._tmp_code_path, **kwargs - ) - - def _fetch_sources(self): - if self._manifest.sourcecode.type != "git": - raise BundlerException( - f"Unknown sourcecode type: {self._manifest.sourcecode.type}" - ) - - location_data = self._manifest.sourcecode.location - repo_origin = location_data["origin"] - - if not (commit_sha := location_data.get("commit_sha")): - raise BundlerException( - f"Commit SHA (sourcecode.location.commit_sha) not specified for {repo_origin}" - ) - - if len(commit_sha) != 40: - raise BundlerException( - f"Commit SHA (sourcecode.location.commit_sha) for {repo_origin} is not 40 characters long" - ) - - self._log.info(f"Cloning {repo_origin} to {self._tmp_code_path}") - self.__exec_git( - "clone", repo_origin, self._tmp_code_path, "--recurse-submodules" - ) - - self._log.info(f"Cloned. Checking out commit {commit_sha}") - self.__exec_git("-c", "advice.detachedHead=false", "checkout", commit_sha) - - self._log.info(f"Checked out. Updating submodules") - self.__exec_git("submodule", "update", "--init", "--recursive") - - repo_code = self._tmp_code_path - if sub_dir := location_data.get("subdir"): - repo_code = repo_code / sub_dir - - if not repo_code.resolve().is_relative_to(self._tmp_code_path): - raise BundlerException( - f"Code path traversal detected: {repo_code} vs {self._tmp_code_path}" - ) - - self._log.info(f"Moving {repo_code} to {self._code_dir}") - shutil.move(repo_code, self._code_dir) - - def _lint_sources(self): - try: - self._log.info("Linting") - subprocess.check_output([self.UFBT_COMMAND, "lint"], cwd=self._code_dir) - except subprocess.CalledProcessError as e: - raise BundlerException(f"Code checks failed: {str(e.output, 'utf-8')}") - - def _build_sources(self): - try: - self._log.info("Building") - subprocess.check_output([self.UFBT_COMMAND], cwd=self._code_dir) - except subprocess.CalledProcessError as e: - raise BundlerException(f"Code checks failed: {str(e.output, 'utf-8')}") - - def _update_manifest_from_fap(self): - app_manifest_path = self._code_dir / "application.fam" - if not os.path.exists(app_manifest_path): - raise BundlerException("Application manifest not found") - - from fbt.appmanifest import AppManager, FlipperAppType - - app_manager = AppManager() - app_manager.load_manifest(app_manifest_path, self._code_dir) - - known_ext_apps = list( - filter( - lambda app: app.apptype == FlipperAppType.EXTERNAL, - app_manager.known_apps.values(), - ) - ) - - if len(known_ext_apps) == 0: - raise BundlerException("No external applications found") - elif len(known_ext_apps) == 1: - self._fam_manifest = known_ext_apps[0] - else: - if app := next( - filter(lambda app: app.appid == self._manifest.id, known_ext_apps), - None, - ): - self._log.info(f"Selected application {app.name}") - self._fam_manifest = app - else: - raise BundlerException( - f"Multiple external applications found, specify 'id' in the manifest.yml ({[app.appid for app in known_ext_apps]})" - ) - - self._manifest.sync_from(self._fam_manifest) - - def _process_includes(self): - for attr_name in ("changelog", "description"): - if attr_value := getattr(self._manifest, attr_name): - if attr_value.startswith("@"): - file_path = self._code_dir / attr_value[1:] - self._validate_path(file_path) - self._log.info(f"Including {attr_name} from file {file_path}") - with open(file_path, "r") as f: - setattr(self._manifest, attr_name, f.read()) - - self._log.debug(f"Updated: {self._manifest}") - - def __convert_image_pixels(self, img: Image): - # Set all pixels above threshold to transparent - img.putdata( - tuple( - ( - self.PIXEL_TRANSPARENT - if pixel[:3] > self.BLACK_THRESHOLD - else self.PIXEL_BLACK - ) - for pixel in img.getdata() - ) - ) - - def __process_screenshot( - self, screenshot_src_path: Path, screenshot_dst_path: Path - ): - self._validate_path(screenshot_src_path) - # Check image type / downsize x4 and convert to transparent png - img = Image.open(screenshot_src_path) - if img.mode != "RGBA": - img = img.convert("RGBA") - - if img.width < img.height: - raise BundlerException( - f"Screenshot {screenshot_src_path} is in portrait orientation. Only landscape screenshots are allowed." - ) - - # TODO: guess downsize ratio? - downscale_factors = ( - img.width // self.FLIPPER_SCREEN_SIZE[0], - img.height // self.FLIPPER_SCREEN_SIZE[1], - ) - if ( - downscale_factors[0] != downscale_factors[1] - or downscale_factors[0] not in self.APP_SCREENSHOT_DOWNSCALE_FACTORS - ): - raise BundlerException( - f"Screenshot {screenshot_src_path} has resolution {img.width}x{img.height}, " - f"downscaled to {downscale_factors[0]}x{downscale_factors[1]}, " - f"expected {self.FLIPPER_SCREEN_SIZE[0]}x{self.FLIPPER_SCREEN_SIZE[1]}" - ) - - downscaled_resolution = ( - img.width // downscale_factors[0], - img.height // downscale_factors[1], - ) - if downscaled_resolution != self.FLIPPER_SCREEN_SIZE: - raise BundlerException( - f"Screenshot {screenshot_src_path} has resolution {img.width}x{img.height}, " - f"downscaled to {downscaled_resolution[0]}x{downscaled_resolution[1]}, " - f"expected {self.FLIPPER_SCREEN_SIZE[0]}x{self.FLIPPER_SCREEN_SIZE[1]}" - ) - - img = img.resize(downscaled_resolution, resample=Image.Resampling.NEAREST) - self.__convert_image_pixels(img) - img.save(screenshot_dst_path, "PNG") - - def __process_icon(self, icon_src_path: Path, icon_dst_path: Path): - self._validate_path(icon_src_path) - # Check image type and size and convert to transparent png - img = Image.open(icon_src_path) - if img.mode != "RGBA": - img = img.convert("RGBA") - if img.size != self.FLIPPER_ICON_SIZE: - raise BundlerException( - f"Icon {icon_src_path} has resolution {img.width}x{img.height}, " - f"expected {self.FLIPPER_ICON_SIZE[0]}x{self.FLIPPER_ICON_SIZE[1]}" - ) - - if any( - map( - lambda pixel: pixel[:3] != self.PIXEL_TRANSPARENT[:3] - and pixel[:3] != self.PIXEL_BLACK[:3], - img.getdata(), - ) - ): - raise BundlerException( - f"Icon {os.path.basename(icon_src_path)} is not black and white" - ) - self.__convert_image_pixels(img) - img.save(icon_dst_path, "PNG") - - def _process_assets(self): - icon_path = self._assets_dir / "icon.png" - src_icon_path = self._code_dir / self._fam_manifest.fap_icon - self._validate_path(src_icon_path) - self.__process_icon(src_icon_path, icon_path) - self._manifest.icon = self._rel_path(icon_path) - - screenshot_dir = self._assets_dir / "screenshots" - screenshot_dir.mkdir(parents=True, exist_ok=True) - new_screenshot_paths = [] - for i, screenshot in enumerate(self._manifest.screenshots): - new_screenshot_path = ( - screenshot_dir / f"{i}{os.path.splitext(screenshot)[1]}" - ) - self.__process_screenshot(self._code_dir / screenshot, new_screenshot_path) - new_screenshot_paths.append(self._rel_path(new_screenshot_path)) - - if len(new_screenshot_paths) == 0: - raise BundlerException("No screenshots found") - - self._manifest.screenshots = new_screenshot_paths - - def _check_manifest_path(self): - # Extract path components from self._manifest_yaml_path - manifest_path_components = Path(self._manifest_yaml_path).parts - # Find next to component called "applications", if there is one - try: - app_folder_index = manifest_path_components.index("applications") - except ValueError: - app_folder_index = -1 - self._log.info("Skipping category check, no 'applications' folder found") - # If there is one, check that it matches the one in the manifest - if app_folder_index != -1: - try: - path_category = manifest_path_components[app_folder_index + 1] - path_app_id = manifest_path_components[app_folder_index + 2] - manifest_name = manifest_path_components[app_folder_index + 3] - except IndexError: - raise BundlerException( - f"Invalid path to manifest: {self._manifest_yaml_path}" - ) - - if manifest_name != self.MANIFEST_YAML_NAME: - raise BundlerException( - f"Manifest file name '{manifest_name}' does not match " - f"expected name '{self.MANIFEST_YAML_NAME}'" - ) - if self._manifest.id != path_app_id: - raise BundlerException( - f"App ID '{self._manifest.id}' in manifest does not match " - f"app ID '{path_app_id}' from path '{self._manifest_yaml_path}'" - ) - if self._manifest.category != path_category: - raise BundlerException( - f"App category '{self._manifest.category}' in manifest does not match " - f"category '{path_category}' from path '{self._manifest_yaml_path}'" - ) - - def _check_manifest_values(self): - errors = [] - - if not self.APP_ID_REGEX.match(self._manifest.id): - errors.append( - f"App ID '{self._manifest.id}' does not match regex " - f"{self.APP_ID_REGEX.pattern}" - ) - - if not self._manifest.changelog: - errors.append(f"Changelog is empty") - - if not self._manifest.short_description: - errors.append(f"Short description is empty") - - if not self._manifest.description: - errors.append(f"Description is empty") - - if errors: - raise BundlerException("\n".join(errors)) - - self.__check_markdown(self._manifest.changelog) - self.__check_markdown(self._manifest.description) - - def __check_markdown(self, markdown: str): - try: - mk = Markdown(extensions=[BasicFormattingEnforcingExtension()]) - mk.convert(markdown) - - except Exception as e: - raise BundlerException(f"Markdown error: {e}") - - def _build_package(self, skip_source_code: bool = False): - self._log.info(f"Saving updated manifest with {skip_source_code=}") - self._manifest.to_yaml_file(self._tmp_path / self.MANIFEST_YAML_NAME) - - with zipfile.ZipFile( - self._bundle_path, mode="w", compression=zipfile.ZIP_DEFLATED - ) as new_zip: - for folder, subfolders, filenames in os.walk(self._tmp_path): - # Exclude hidden folders and "dist" folder with build artifacts - for folder_name in subfolders.copy(): - if folder_name.startswith(".") or folder_name == "dist": - self._log.debug(f"Skipping folder {filename}") - subfolders.remove(folder_name) - # Exclude source code folder if requested - if skip_source_code and self._code_dir == Path(folder, folder_name): - self._log.debug(f"Skipping source code folder {folder}") - subfolders.remove(folder_name) - - for filename in filenames: - if filename.startswith("."): - self._log.debug(f"Skipping hidden file {filename}") - continue - file_path = Path(os.path.join(folder, filename)) - self._log.debug(f"Adding {file_path}") - new_zip.write(file_path, self._rel_path(file_path)) - - self._log.info(f"Bundle created: {self._bundle_path}") - - def write_manifest_json(self, manifest_path: Path): - self._log.info(f"Writing JSON manifest: {manifest_path}") - with open(manifest_path, "w") as f: - json.dump(asdict(self._manifest), f, indent=4) - - def package_artifacts(self, artifacts_path: Path): - self._log.info(f"Packaging artifacts: {artifacts_path}") - dist_dir = self._code_dir / "dist" - with zipfile.ZipFile( - artifacts_path, mode="w", compression=zipfile.ZIP_DEFLATED - ) as new_zip: - # Package "dist" folder with build artifacts - for folder, subfolders, filenames in os.walk(dist_dir): - for filename in filenames: - file_path = Path(os.path.join(folder, filename)) - self._log.info(f"Adding {file_path}") - new_zip.write(file_path, file_path.relative_to(dist_dir)) - - -class Main: - def __init__(self): - # Argument Parser - # Logging - self.logger = logging.getLogger() - self.parser = argparse.ArgumentParser() - self.parser.add_argument( - "-d", - "--debug", - action="store_true", - help="Debug", - ) - self.parser.add_argument( - "manifest_path", - type=Path, - help="Path to the manifest file", - ) - self.parser.add_argument( - "bundle_zip_path", - type=Path, - help="Path to the bundle file", - ) - self.parser.add_argument( - "--nobuild", - action="store_true", - default=False, - help="Skip building the application", - ) - self.parser.add_argument( - "--nolint", - action="store_true", - default=False, - help="Skip linting the application", - ) - self.parser.add_argument( - "--nosourcecode", - action="store_true", - default=False, - help="Skip source code of the application", - ) - self.parser.add_argument( - "--json-manifest", - dest="json", - default="", - help="File to write extra manifest copy in JSON format to", - ) - self.parser.add_argument( - "--artifacts", - default=None, - help="ZIP file to write build artifacts to", - ) - - def main(self): - return self.process(self.parser.parse_args()) - - def _setup_imports(self): - try: - subprocess.check_output( - [AppBundler.UFBT_COMMAND, "update"], encoding="utf-8" - ) - except subprocess.CalledProcessError as e: - raise BundlerException(f"Could not update ufbt: {e}") - - try: - ufbt_state_dir = subprocess.check_output( - [AppBundler.UFBT_COMMAND, "status", "sdk_dir"], encoding="utf-8" - ).strip() - except subprocess.CalledProcessError as e: - raise BundlerException(f"Could not find ufbt state dir: {e}") - - fbt_scripts_dir = Path(ufbt_state_dir) / "scripts" - if not fbt_scripts_dir.exists(): - raise BundlerException(f"Could not find fbt scripts dir: {fbt_scripts_dir}") - - self.logger.debug(f"Using fbt scripts dir: {fbt_scripts_dir}") - sys.path.insert(0, str(fbt_scripts_dir)) - - def process(self, args): - try: - self._setup_imports() - with AppBundler(args.manifest_path, args.bundle_zip_path) as bundler: - bundler.bundle( - skip_lint=args.nolint, - skip_build=args.nobuild, - skip_source_code=args.nosourcecode, - ) - if args.json: - bundler.write_manifest_json(args.json) - if args.artifacts: - bundler.package_artifacts(Path(args.artifacts)) - return 0 - except BundlerException as e: - self.logger.error(e) - if args.debug: - self.logger.exception(e) - return 1 - - -if __name__ == "__main__": - logging.basicConfig( - format="%(asctime)s.%(msecs)03d [%(levelname).1s] %(message)s", - level=logging.INFO, - datefmt="%H:%M:%S", - ) - - sys.exit(Main().main()) diff --git a/tools/flipp_catalog/__init__.py b/tools/flipp_catalog/__init__.py deleted file mode 100644 index cbae4e806..000000000 --- a/tools/flipp_catalog/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -class BundlerException(Exception): - pass - diff --git a/tools/flipp_catalog/manifest.py b/tools/flipp_catalog/manifest.py deleted file mode 100644 index 4743c0376..000000000 --- a/tools/flipp_catalog/manifest.py +++ /dev/null @@ -1,74 +0,0 @@ -import os -from dataclasses import dataclass, field -from typing import Dict, List -import logging - -from dataclass_wizard import YAMLWizard -from . import BundlerException - - -@dataclass -class CodeLocation: - type: str - location: Dict[str, str] - - -@dataclass -class ApplicationManifest(YAMLWizard, key_transform="SNAKE"): - sourcecode: CodeLocation - name: str = "" - id: str = "" - author: str = "" - version: str = "" - icon: str = "" - category: str = "" - short_description: str = "" - description: str = "" - changelog: str = "" - screenshots: List[str] = field(default_factory=list) - targets: List[str] = field(default_factory=list) - - def sync_from(self, app: "FlipperApplication"): - field_map = { - # yaml_field, (app_field, converter, must_match) - "name": ("name", None, True), - "id": ("appid", None, True), - "author": ("fap_author", None, False), - "category": ("fap_category", None, False), - "icon": ("fap_icon", None, False), - "short_description": ("fap_description", None, False), - "targets": ("targets", None, False), - # Version matcher error flag must be set to "True" on release - "version": ( - "fap_version", - lambda v: ".".join(map(str, v)), - os.environ.get("BUNDLE_ALLOW_VERSION_MISMATCH", "0") == "0", - ), - } - - for yaml_field, (app_field, converter, must_match) in field_map.items(): - current_value = getattr(self, yaml_field) - fam_value = getattr(app, app_field) - if converter: - fam_value = converter(fam_value) - - if type(current_value) != type(fam_value): - raise BundlerException( - f"Type mismatch for {yaml_field}: {type(current_value)} != {type(fam_value)}" - ) - - if current_value and fam_value and current_value != fam_value: - error_msg = f"Value in YAML for '{yaml_field}' is different from value in FAM: '{current_value}' / '{fam_value}'" - if must_match: - raise BundlerException(error_msg) - - logging.getLogger(self.__class__.__name__).warning( - f"{error_msg}. Using value from YAML." - ) - continue - - if not current_value: - logging.getLogger(self.__class__.__name__).info( - f"Value for '{yaml_field}' is empty in YAML. Using value '{fam_value}' from FAM." - ) - setattr(self, yaml_field, fam_value) diff --git a/tools/flipp_catalog/markdown_filter.py b/tools/flipp_catalog/markdown_filter.py deleted file mode 100644 index 5bdbc68ec..000000000 --- a/tools/flipp_catalog/markdown_filter.py +++ /dev/null @@ -1,111 +0,0 @@ -from markdown.extensions import Extension -from markdown.preprocessors import HtmlBlockPreprocessor - - -# A Markdown extension that removes all but basic text formatting -class BasicFormattingEnforcingExtension(Extension): - ERROR_MESSAGE = "Markdown element '{}' is not allowed" - MAX_HEADER_DEPTH = 2 - - def __init__(self, **kwargs): - # override the html preprocessor to avoid html text conversion so as not to be skipped by HtmlInlineProcessor - HtmlBlockPreprocessor.run = lambda _self, lines: lines - super().__init__(**kwargs) - - @staticmethod - def handleMatch(element_type): - def wrapper(instance, m): - raise Exception( - BasicFormattingEnforcingExtension.ERROR_MESSAGE.format(element_type) - ) - - return wrapper - - @staticmethod - def not_supported_reference_processor_wrapper(instance, method): - def wrapper(parent, block): - res = method(parent, block) - - if res: - raise Exception( - BasicFormattingEnforcingExtension.ERROR_MESSAGE.format("Reference") - ) - - return False - - return wrapper - - @staticmethod - def not_supported_block_processor_wrapper(instance, name=None): - def wrapper(parent, block): - raise Exception( - BasicFormattingEnforcingExtension.ERROR_MESSAGE.format( - name or instance.__class__.__name__ - ) - ) - - return wrapper - - @staticmethod - def not_supported_header_depth_processor_wrapper(instance): - orig_run = instance.run - - def wrapper(parent, blocks): - if m := instance.RE.match(blocks[0]): - header_depth = len(m.group("level")) - if header_depth > BasicFormattingEnforcingExtension.MAX_HEADER_DEPTH: - raise Exception( - f"Markdown element 'Header Depth' max level {BasicFormattingEnforcingExtension.MAX_HEADER_DEPTH} exceeded" - ) - - return orig_run(parent, blocks) - - return wrapper - - def extendMarkdown(self, md): - for md_element in ( - "backtick", - # "reference", - # "link", - "image_link", - "image_reference", - "short_reference", - "short_image_ref", - # "autolink", - "automail", - "html", - "entity", - ): - md.inlinePatterns[md_element].handleMatch = self.handleMatch( - md_element.capitalize() - ) - - hash_header_processor = md.parser.blockprocessors["hashheader"] - hash_header_processor.run = self.not_supported_header_depth_processor_wrapper( - instance=hash_header_processor - ) - - setext_header_processor = md.parser.blockprocessors["setextheader"] - setext_header_processor.run = self.not_supported_block_processor_wrapper( - instance=setext_header_processor, name="Setext Header" - ) - - code_block_processor = md.parser.blockprocessors["code"] - code_block_processor.run = self.not_supported_block_processor_wrapper( - instance=code_block_processor, name="Code Block" - ) - - hr_processor = md.parser.blockprocessors["hr"] - hr_processor.run = self.not_supported_block_processor_wrapper( - instance=hr_processor, name="Horizontal Line" - ) - - quote_processor = md.parser.blockprocessors["quote"] - quote_processor.run = self.not_supported_block_processor_wrapper( - instance=quote_processor, name="Quote" - ) - - reference_processor = md.parser.blockprocessors["reference"] - reference_processor.run = self.not_supported_reference_processor_wrapper( - instance=reference_processor, method=reference_processor.run - ) diff --git a/tools/requirements.txt b/tools/requirements.txt deleted file mode 100644 index b14083ab1..000000000 --- a/tools/requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -dataclass-wizard==0.26.0 -Pillow==10.4.0 -PyYAML==6.0.2 -Markdown==3.7 -ufbt>=0.2.5 -requests==2.32.3 diff --git a/tools/test_markdown_sanitizer.py b/tools/test_markdown_sanitizer.py deleted file mode 100644 index db484d866..000000000 --- a/tools/test_markdown_sanitizer.py +++ /dev/null @@ -1,126 +0,0 @@ -import unittest - -from flipp_catalog.markdown_filter import BasicFormattingEnforcingExtension -from markdown import Markdown - - -class TestBasicTextExtension(unittest.TestCase): - def setUp(self): - self.md = Markdown(extensions=[BasicFormattingEnforcingExtension()]) - - def test_backtick_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert("`example`") - - def test_reference_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert("[example][example]") - - def test_link_not_allowed(self): - self.assertIn("href", self.md.convert("[example](http://example.com)")) - - def test_image_link_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert("![example](http://example.com/image.png)") - - def test_image_reference_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert("![example][ref]\n\n[ref]: http://example.com/image.png") - - def test_short_image_ref_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert("![example]") - - def test_autolink_not_allowed(self): - self.assertIn("href", self.md.convert("")) - - def test_automail_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert("") - - def test_html_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert("

example

") - - def test_entity_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert(" ") - - def test_hash_header_not_allowed(self): - self.md.convert("#example") - self.md.convert("##example") - with self.assertRaises(Exception): - self.md.convert("###example") - - with self.assertRaises(Exception): - self.md.convert("#####example") - - def test_setext_header_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert( - """ - example - ============= - """ - ) - - with self.assertRaises(Exception): - self.md.convert( - """ - example - ------------- - """ - ) - - def test_code_block_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert( - """ - example - """ - ) - - def test_horizontal_line_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert("- - -") - - with self.assertRaises(Exception): - self.md.convert("---------------------------------------") - - with self.assertRaises(Exception): - self.md.convert("*****") - - with self.assertRaises(Exception): - self.md.convert("***") - - with self.assertRaises(Exception): - self.md.convert("* * *") - - def test_quote_not_allowed(self): - with self.assertRaises(Exception): - self.md.convert("> example") - - with self.assertRaises(Exception): - self.md.convert(">> example") - - def test_list_unordered(self): - self.md.convert("* Item \n * Item") - - def test_list_ordered(self): - self.md.convert("1. Item \n 2. Item") - - def test_list_mixed(self): - self.md.convert("1. Item\n2. Item\n * Item\n - Item\n3. Item") - - def test_bold(self): - self.md.convert("**example**") - self.md.convert("__example__") - - def test_italic(self): - self.md.convert("*example*") - self.md.convert("_example_") - - def test_bold_and_italic(self): - self.md.convert("_**example**_") - self.md.convert("**_example_**") - self.md.convert("***example***") diff --git a/tools/widget.py b/tools/widget.py deleted file mode 100644 index b7d022db1..000000000 --- a/tools/widget.py +++ /dev/null @@ -1,79 +0,0 @@ -import argparse -import os - -import requests -import logging -import sys - - -class Main: - ARCHIVARIUS_URL = os.getenv("ARCHIVARIUS_URL") - - def __init__(self): - self.logger = logging.getLogger() - if self.ARCHIVARIUS_URL is None: - self.logger.error("ARCHIVARIUS_URL is not set in environment") - sys.exit(1) - - self.parser = argparse.ArgumentParser() - - self.parser.add_argument( - "application_name", - help="Application Name", - ) - self.parser.add_argument( - "application_category", - help="Application Category", - ) - - def main(self): - return self.process(self.parser.parse_args()) - - def add_widget_to_readme( - self, - readme_file_arr: list, - application_name: str, - ) -> list: - widget_template = ( - "[![{APPLICATION_NAME}]" - "({ARCHIVARIUS_URL}/application/{APPLICATION_NAME}/widget)]" - "({ARCHIVARIUS_URL}/application/{APPLICATION_NAME}/page)" - ) - readme_file_arr.append( - widget_template.format( - ARCHIVARIUS_URL=self.ARCHIVARIUS_URL, - APPLICATION_NAME=application_name, - ) - ) - return readme_file_arr - - def process(self, args): - try: - with open(f".github/WIDGET_TEMPLATE.md", "r") as reader: - readme_file_arr = reader.readlines() - readme_file_arr.append("\n") - - readme_file_arr = self.add_widget_to_readme( - readme_file_arr, application_name=args.application_name - ) - - with open( - f"applications/{args.application_category}/{args.application_name}/README.md", - "w", - ) as writer: - for line in readme_file_arr: - writer.write(line) - return 0 - except Exception as e: - self.logger.exception(e) - return 1 - - -if __name__ == "__main__": - logging.basicConfig( - format="%(asctime)s.%(msecs)03d [%(levelname).1s] %(message)s", - level=logging.INFO, - datefmt="%H:%M:%S", - ) - - sys.exit(Main().main())