diff --git a/README.md b/README.md index 90a3505..873f9fe 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,6 @@ An improved version of [nw-atom](https://github.com/M4xi1m3/nw-atom), but escher compliant. This is a Mendeleiev table for Epsilon ([numworks'](https://numworks.com) firmware). This is a WIP, and not official :p + +Corrections of typos within original atomic app (https://github.com/M4xi1m3/nw-atom). +Exceptions in the d-block and f-block have been added. diff --git a/list_controller.cpp b/list_controller.cpp index 2f60573..b7dd7d6 100644 --- a/list_controller.cpp +++ b/list_controller.cpp @@ -313,7 +313,7 @@ const ListController::Electronical::rowsSubLayers ListController::Electronical:: { true, 7, true, 5, true, 6, true, 7 }, // 6s² 4f¹⁴ 5d¹⁰ 6p⁶ }; -const ListController::Electronical::exceptionStruct ListController::Electronical::exceptions[18] = { +const ListController::Electronical::exceptionStruct ListController::Electronical::exceptions[20] = { { 24, true, 1, false, -1, true, 5, false, -1}, { 29, true, 1, false, -1, true, 10, false, -1}, @@ -321,12 +321,14 @@ const ListController::Electronical::exceptionStruct ListController::Electronical { 42, true, 1, false, -1, true, 5, false, -1}, { 44, true, 1, false, -1, true, 7, false, -1}, { 45, true, 1, false, -1, true, 8, false, -1}, - { 46, false, -1, false, -1, false, -1, false, -1}, + { 46, false, -1, false, -1, true, 10, false, -1}, { 47, true, 1, false, -1, true, 10, false, -1}, { 57, true, 2, false, -1, true, 1, false, -1}, { 58, true, 2, true, 1, true, 1, false, -1}, - { 78, true, 1, true, 14, true, 19, false, -1}, + { 64, true, 2, true, 7, true, 1, false, -1}, + { 78, true, 1, true, 14, true, 9, false, -1}, + { 79, true, 1, true, 14, true, 10, false, -1}, { 89, true, 2, false, -1, true, 1, false, -1}, { 90, true, 2, false, -1, true, 2, false, -1}, diff --git a/list_controller.h b/list_controller.h index 352d5fc..8aa295c 100644 --- a/list_controller.h +++ b/list_controller.h @@ -67,7 +67,7 @@ class ListController : public StackViewController, public ListViewDataSource, pu int pContent; }; const static rowsSubLayers rows[]; - const static exceptionStruct exceptions[18]; + const static exceptionStruct exceptions[20]; };