This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 694
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V48 Release Candidate Changes (#282)
- Loading branch information
Showing
379 changed files
with
17,169 additions
and
4,575 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,17 +46,24 @@ jobs: | |
- name: "Read version tag" | ||
run: bash .github/workflow_data/version.sh | ||
|
||
- name: "Make tgz, zip and webupdater" | ||
- name: "Make tgz and zip" | ||
run: bash .github/workflow_data/package.sh | ||
env: | ||
NC_HOST: "https://cloud.cynthialabs.net/" | ||
NC_USER: "${{ secrets.NC_USER }}" | ||
NC_PASS: "${{ secrets.NC_PASS }}" | ||
|
||
- name: "Upload hotfix" | ||
run: python .github/workflow_data/hotfix.py | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
run: | | ||
python -m pip install requests | ||
python .github/workflow_data/hotfix.py | ||
- name: "Upload to webupdater" | ||
env: | ||
NC_HOST: "https://cloud.cynthialabs.net/" | ||
NC_USER: "${{ secrets.NC_USER }}" | ||
NC_PASS: "${{ secrets.NC_PASS }}" | ||
run: | | ||
python -m pip install pyncclient | ||
python .github/workflow_data/webupdater.py | ||
- name: "Merge pull request" | ||
uses: "pascalgn/[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,15 +46,20 @@ jobs: | |
- name: "Read version tag" | ||
run: bash .github/workflow_data/version.sh | ||
|
||
- name: "Make tgz, zip and webupdater" | ||
- name: "Make tgz and zip" | ||
run: bash .github/workflow_data/package.sh | ||
|
||
- name: "Update release notes" | ||
run: python .github/workflow_data/release.py | ||
|
||
- name: "Upload to webupdater" | ||
env: | ||
NC_HOST: "https://cloud.cynthialabs.net/" | ||
NC_USER: "${{ secrets.NC_USER }}" | ||
NC_PASS: "${{ secrets.NC_PASS }}" | ||
|
||
- name: "Update release notes" | ||
run: python .github/workflow_data/release.py | ||
run: | | ||
python -m pip install pyncclient | ||
python .github/workflow_data/webupdater.py | ||
- name: "Merge pull request" | ||
uses: "pascalgn/[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
App( | ||
appid="DOOM", | ||
appid="doom", | ||
name="DOOM", | ||
apptype=FlipperAppType.EXTERNAL, | ||
entry_point="doom_app", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
App( | ||
appid="MAYHEM_Camera", | ||
name="[MAYHEM] Camera", | ||
apptype=FlipperAppType.EXTERNAL, | ||
entry_point="camera_app", | ||
cdefines=["APP_CAMERA"], | ||
requires=["gui"], | ||
stack_size=8 * 1024, | ||
order=1, | ||
fap_icon="icon.png", | ||
fap_category="GPIO", | ||
fap_description="ESP32-CAM live feed and photo capture, use left/right for orientation/mode, up/down for brightness and center for saving a screenshot. [Unplug the USB cable to test with Mayhem]", | ||
fap_author="Z4urce", | ||
fap_weburl="https://github.com/Z4urce/flipper-camera", | ||
) |
Oops, something went wrong.