Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pionaiki committed Dec 30, 2023
1 parent aa23d0c commit c333ce2
Show file tree
Hide file tree
Showing 6 changed files with 422 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "FAP: Build for multiple SDK sources"
# This will build your app for dev and release channels on GitHub.
# It will also build your app every day to make sure it's up to date with the latest SDK changes.
# See https://github.com/marketplace/actions/build-flipper-application-package-fap for more information

on:
push:
## put your main branch name under "branches"
#branches:
# - master
pull_request:
schedule:
# do a build every day
- cron: "1 1 * * *"

jobs:
ufbt-build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: dev channel
sdk-channel: dev
- name: release channel
sdk-channel: release
# You can add unofficial channels here. See ufbt action docs for more info.
name: 'ufbt: Build for ${{ matrix.name }}'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build with ufbt
uses: flipperdevices/[email protected]
id: build-app
with:
sdk-channel: ${{ matrix.sdk-channel }}
- name: Upload app artifacts
uses: actions/upload-artifact@v3
with:
# See ufbt action docs for other output variables
name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
path: ${{ steps.build-app.outputs.fap-artifacts }}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
dist/*
.vscode
.clang-format
.editorconfig
.DS_Store
15 changes: 15 additions & 0 deletions application.fam
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
App(
appid="tarot", # Must be unique
name="Tarot", # Displayed in menus
apptype=FlipperAppType.EXTERNAL,
entry_point="tarot_app",
stack_size=2 * 1024,
fap_category="Games",
# Optional values
# fap_version=(1, 0), # (major, minor)
# fap_icon="tarot.png", # 10x10 1-bit PNG
fap_description="Tarot card reader",
fap_author="pionaiki",
fap_weburl="https://github.com/pionaiki/flipper-tarot",
fap_icon_assets="images", # Image assets to compile for this application
)
Binary file added images/cursor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/major_placeholder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit c333ce2

Please sign in to comment.