Skip to content

Commit 5a0c359

Browse files
committed
Changed altnames file extension from cfg to txt
1 parent bdc7afe commit 5a0c359

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ In addition to the predefined names, `XRemote` uses alternative button names to
6868

6969
The application stores and reads alternate names from the following file:
7070
```
71-
SD Card/apps_data/flipper_xremote/alt_names.cfg
71+
SD Card/apps_data/flipper_xremote/alt_names.txt
7272
```
7373

7474
If the `Alt-Names` option is enabled in the config and the file does not exist, it will be created automatically with default values during the application's startup. You can edit, add, or remove any button or alternate name values from this file. Button names must either have only the first uppercase or be entirely lowercase. As for alternate names, they are case-insensitive. The button can have one or several comma-separated alternate names.
7575

76-
This is the default `alt_names.cfg` file:
76+
This is the default `alt_names.txt` file:
7777

7878
```
7979
Filetype: XRemote Alt-Names

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Stop | Stop
5454
In addition to the predefined names, XRemote uses alternative button names to make it as easy as possible to interact with different types of IR dumps. That means if a button with the appropriate name is not found in the file, the application will try to find the same button with alternative names. Ensure this feature is enabled in the application settings before you use it.
5555

5656
The application stores and reads alternate names from the following file:
57-
SD_Card/apps_data/flipper_xremote/alt_names.cfg
57+
SD_Card/apps_data/flipper_xremote/alt_names.txt
5858

5959
If the Alt-Names option is enabled in the config and the file does not exist, it will be created automatically with default values during the application's startup. You can edit, add, or remove any button or alternate name values from this file. Button names must either have only the first uppercase or be entirely lowercase. As for alternate names, they are case-insensitive. The button can have one or several comma-separated alternate names.
6060

xremote_app.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
#define XREMOTE_APP_FOLDER ANY_PATH("infrared")
4040
#define XREMOTE_APP_SETTINGS APP_DATA_PATH("xremote.cfg")
41-
#define XREMOTE_ALT_NAMES APP_DATA_PATH("alt_names.cfg")
41+
#define XREMOTE_ALT_NAMES APP_DATA_PATH("alt_names.txt")
4242

4343
#define xremote_app_assert_void(cond) \
4444
if(!cond) return

0 commit comments

Comments
 (0)