-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[app] | ||
# The name of your app as displayed in the menu | ||
name = "IP Address" | ||
|
||
# The submenu where your app should appear. | ||
# One of: "Badge", "Music", "Media", "Apps", "Games" | ||
category = "Badge" | ||
|
||
# OPTIONAL: Same as above, for compatibility with older firmware | ||
# versions that can't handle categories introduced afterwards. | ||
# One of: "Badge", "Music", "Apps" | ||
# menu = "Badge" | ||
|
||
# OPTIONAL: If your app prefers wifi to be off or on when entering. | ||
# Useful if you want more resources (false) or need wifi (true). | ||
# Remove if you don't want to change wifi state! | ||
wifi_preference = true | ||
|
||
[entry] | ||
# The name of your entry point `Application` class | ||
class = "DanApp" | ||
|
||
[metadata] | ||
# Your nickname. Must be at most 32 characters! | ||
author = "LGDan" | ||
|
||
# License of your app as an SPDX identifier: <https://spdx.org/licenses/> | ||
license = "LGPL-3.0-only" | ||
|
||
# URL to the repository of your app. | ||
url = "https://github.com/LGDan/Tildagon_IP_App" | ||
|
||
# Description of your app. Maximum 140 characters! | ||
description = "EMF 2024 App to get the IP of your badge." | ||
|
||
# Version number of your app. If you push a commit where this number is | ||
# increased, we interpret this as a new version being released. | ||
# | ||
# Version number must be an integer! | ||
version = "0.0.1" |