diff --git a/LUFA.pnproj b/LUFA.pnproj index 9ffcdb9c7f..162c3f3821 100644 --- a/LUFA.pnproj +++ b/LUFA.pnproj @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt index b6ef5b9aad..ef2edbdbe3 100644 --- a/LUFA/ManPages/ChangeLog.txt +++ b/LUFA/ManPages/ChangeLog.txt @@ -24,7 +24,7 @@ * - Added new PreviousValue to the HID Report Parser report item structure, for easy monitoring of previous report item values * - Added new EVK527 board target * - Added new USB_Host_GetDeviceStringDescriptor() convenience function - * - Added new HotmailNotification project to the library, to give a visual LED notification when new email arrives + * - Added new LEDNotification project to the library, to give a visual LED notification on new events from the host * * Changed: * - Removed code in the Keyboard demos to send zeroed reports between two reports with differing numbers of keycodes diff --git a/LUFA/ManPages/LibraryApps.txt b/LUFA/ManPages/LibraryApps.txt index 91bcd2e5c0..28ece38b85 100644 --- a/LUFA/ManPages/LibraryApps.txt +++ b/LUFA/ManPages/LibraryApps.txt @@ -100,7 +100,7 @@ * - Projects * - AVRISP - AVRISP-MKII Programmer Clone project * - Benito - Benito Board Arduino Programmer project - * - HotmailNotifier - Hotmail Email LED Notification project + * - LEDNotifier - USB LED Notification project * - Magstripe - Magnetic Stripe Card Reader project * - MissileLaucher - Toy Missile Launcher Host project * - USBtoSerial - USB to USART Serial Converter project diff --git a/Projects/HotmailNotifier/Board/LEDs.h b/Projects/LEDNotifier/Board/LEDs.h similarity index 100% rename from Projects/HotmailNotifier/Board/LEDs.h rename to Projects/LEDNotifier/Board/LEDs.h diff --git a/Projects/HotmailNotifier/Descriptors.c b/Projects/LEDNotifier/Descriptors.c similarity index 100% rename from Projects/HotmailNotifier/Descriptors.c rename to Projects/LEDNotifier/Descriptors.c diff --git a/Projects/HotmailNotifier/Descriptors.h b/Projects/LEDNotifier/Descriptors.h similarity index 100% rename from Projects/HotmailNotifier/Descriptors.h rename to Projects/LEDNotifier/Descriptors.h diff --git a/Projects/HotmailNotifier/Doxygen.conf b/Projects/LEDNotifier/Doxygen.conf similarity index 100% rename from Projects/HotmailNotifier/Doxygen.conf rename to Projects/LEDNotifier/Doxygen.conf diff --git a/Projects/HotmailNotifier/HotmailNotifier.c b/Projects/LEDNotifier/HotmailNotifier.c similarity index 100% rename from Projects/HotmailNotifier/HotmailNotifier.c rename to Projects/LEDNotifier/HotmailNotifier.c diff --git a/Projects/HotmailNotifier/HotmailNotifier.h b/Projects/LEDNotifier/HotmailNotifier.h similarity index 100% rename from Projects/HotmailNotifier/HotmailNotifier.h rename to Projects/LEDNotifier/HotmailNotifier.h diff --git a/Projects/HotmailNotifier/HotmailNotifier.txt b/Projects/LEDNotifier/HotmailNotifier.txt similarity index 100% rename from Projects/HotmailNotifier/HotmailNotifier.txt rename to Projects/LEDNotifier/HotmailNotifier.txt diff --git a/Projects/HotmailNotifier/LUFA HotmailNotifier.inf b/Projects/LEDNotifier/LUFA HotmailNotifier.inf similarity index 100% rename from Projects/HotmailNotifier/LUFA HotmailNotifier.inf rename to Projects/LEDNotifier/LUFA HotmailNotifier.inf diff --git a/Projects/HotmailNotifier/WindowsApp/MailNotifier.Designer.cs b/Projects/LEDNotifier/WindowsApp/MailNotifier.Designer.cs similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/MailNotifier.Designer.cs rename to Projects/LEDNotifier/WindowsApp/MailNotifier.Designer.cs diff --git a/Projects/HotmailNotifier/WindowsApp/MailNotifier.cs b/Projects/LEDNotifier/WindowsApp/MailNotifier.cs similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/MailNotifier.cs rename to Projects/LEDNotifier/WindowsApp/MailNotifier.cs diff --git a/Projects/HotmailNotifier/WindowsApp/MailNotifier.csproj b/Projects/LEDNotifier/WindowsApp/MailNotifier.csproj similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/MailNotifier.csproj rename to Projects/LEDNotifier/WindowsApp/MailNotifier.csproj diff --git a/Projects/HotmailNotifier/WindowsApp/MailNotifier.resx b/Projects/LEDNotifier/WindowsApp/MailNotifier.resx similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/MailNotifier.resx rename to Projects/LEDNotifier/WindowsApp/MailNotifier.resx diff --git a/Projects/HotmailNotifier/WindowsApp/Program.cs b/Projects/LEDNotifier/WindowsApp/Program.cs similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/Program.cs rename to Projects/LEDNotifier/WindowsApp/Program.cs diff --git a/Projects/HotmailNotifier/WindowsApp/Properties/AssemblyInfo.cs b/Projects/LEDNotifier/WindowsApp/Properties/AssemblyInfo.cs similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/Properties/AssemblyInfo.cs rename to Projects/LEDNotifier/WindowsApp/Properties/AssemblyInfo.cs diff --git a/Projects/HotmailNotifier/WindowsApp/Properties/Resources.Designer.cs b/Projects/LEDNotifier/WindowsApp/Properties/Resources.Designer.cs similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/Properties/Resources.Designer.cs rename to Projects/LEDNotifier/WindowsApp/Properties/Resources.Designer.cs diff --git a/Projects/HotmailNotifier/WindowsApp/Properties/Resources.resx b/Projects/LEDNotifier/WindowsApp/Properties/Resources.resx similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/Properties/Resources.resx rename to Projects/LEDNotifier/WindowsApp/Properties/Resources.resx diff --git a/Projects/HotmailNotifier/WindowsApp/Properties/Settings.Designer.cs b/Projects/LEDNotifier/WindowsApp/Properties/Settings.Designer.cs similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/Properties/Settings.Designer.cs rename to Projects/LEDNotifier/WindowsApp/Properties/Settings.Designer.cs diff --git a/Projects/HotmailNotifier/WindowsApp/Properties/Settings.settings b/Projects/LEDNotifier/WindowsApp/Properties/Settings.settings similarity index 100% rename from Projects/HotmailNotifier/WindowsApp/Properties/Settings.settings rename to Projects/LEDNotifier/WindowsApp/Properties/Settings.settings diff --git a/Projects/HotmailNotifier/makefile b/Projects/LEDNotifier/makefile similarity index 100% rename from Projects/HotmailNotifier/makefile rename to Projects/LEDNotifier/makefile