Sfoglia il codice sorgente

Merge pull request #11 from luu176/dev

v0.3
Luu 1 anno fa
parent
commit
b28a9cdb03
4 ha cambiato i file con 9 aggiunte e 9 eliminazioni
  1. 0 6
      README.md
  2. 1 1
      app/README.md
  3. 1 1
      manifest.yml
  4. 7 1
      scenes/metroflip_scene_credits.c

+ 0 - 6
README.md

@@ -27,12 +27,6 @@ This is a list of metro cards and transit systems that need support or have part
   - Status: Fully supported.
 - [x] **Opal**
   - Status: Fully supported.
-- [x] **ITSO**
-  - Status: Fully supported.
-
-## 📝 To Do (Unimplemented)
-- [ ] **Tianjin Railway Transit (TRT)**  
-  - To Do: Add support for reading and analyzing Tianjin Railway Transit cards.
 
 ---
 

+ 1 - 1
app/README.md

@@ -44,4 +44,4 @@ More coming soon!
 - **Myki Parser**: gornekich
 - **Opal parser**: gornekich
 - **ITSO parser**: gsp8181, hedger, gornekich
-- **Info Slaves**: Equip, TheDingo8MyBaby
+- **Info Slaves**: Equip, TheDingo8MyBaby

+ 1 - 1
manifest.yml

@@ -17,4 +17,4 @@ sourcecode:
     origin: https://github.com/luu176/Metroflip
     subdir:
   type: git
-version: 0.2
+version: 0.3

+ 7 - 1
scenes/metroflip_scene_credits.c

@@ -17,10 +17,16 @@ void metroflip_scene_credits_on_enter(void* context) {
     furi_string_cat_printf(str, "Inspired by Metrodroid\n\n");
     furi_string_cat_printf(str, "\e#Parser Credits:\n\n");
     furi_string_cat_printf(str, "Rav-Kav Parser: luu176\n\n");
+    furi_string_cat_printf(str, "Navigo Parser: luu176\n\n");
     furi_string_cat_printf(str, "Metromoney Parser:\n Leptopt1los\n\n");
     furi_string_cat_printf(str, "Bip! Parser:\n rbasoalto, gornekich\n\n");
     furi_string_cat_printf(str, "CharlieCard Parser:\n zacharyweiss\n\n");
-    furi_string_cat_printf(str, "Info Slave: equip\n\n");
+    furi_string_cat_printf(str, "Clipper Parser:\n ke6jjj\n\n");
+    furi_string_cat_printf(str, "Troika Parser:\n gornekich\n\n");
+    furi_string_cat_printf(str, "ITSO Parser:\n gsp8181, hedger, gornekich\n\n");
+    furi_string_cat_printf(str, "Opal Parser:\n gornekich\n\n");
+    furi_string_cat_printf(str, "Myki Parser:\n gornekich\n\n");
+    furi_string_cat_printf(str, "Info Slaves:\n Equip, TheDingo8MyBaby\n\n");
 
     widget_add_text_scroll_element(widget, 0, 0, 128, 64, furi_string_get_cstr(str));