From fda01a64861f3e0e8e9379a8e8ed743cb56038f7 Mon Sep 17 00:00:00 2001 From: Stefan Kremser Date: Sat, 19 Oct 2019 23:22:22 +0200 Subject: [PATCH 1/2] Create FUNDING.yml --- .github/FUNDING.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..645def0 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: spacehuhn +patreon: spacehuhn +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: spacehuhn +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: ['paypal.me/spacechicken','tindie.com/stores/Spacehuhn/'] From 0944a56cc29197284823d8ab66fdeee5b953d5f0 Mon Sep 17 00:00:00 2001 From: GlOwl Date: Sun, 5 Jan 2020 22:41:19 +0100 Subject: [PATCH 2/2] fixed printing/removing order --- esp8266_deauther/Stations.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/esp8266_deauther/Stations.cpp b/esp8266_deauther/Stations.cpp index aad6c45..a6bcc02 100644 --- a/esp8266_deauther/Stations.cpp +++ b/esp8266_deauther/Stations.cpp @@ -254,9 +254,10 @@ void Stations::deselect(int num) { void Stations::remove(int num) { if (!check(num)) return; - internal_remove(num); prnt(ST_REMOVED_STATION); prntln(num); + + internal_remove(num); changed = true; } @@ -364,4 +365,4 @@ void Stations::internal_removeAll() { free(getTime(i)); } list->clear(); -} \ No newline at end of file +}