From 45da60fc3e5e59c15d924490a097ec3705ca885f Mon Sep 17 00:00:00 2001 From: cTn Date: Wed, 30 Oct 2013 17:42:04 +0100 Subject: [PATCH] implemented "landing page" and changelog --- changelog.html | 13 +++++++++ js/main.js | 2 +- main.html | 1 + tabs/default.html | 69 +++++++++++++++++++++++++++++++++++++++++++++++ tabs/default.js | 6 +++++ 5 files changed, 90 insertions(+), 1 deletion(-) create mode 100644 changelog.html create mode 100644 tabs/default.html create mode 100644 tabs/default.js diff --git a/changelog.html b/changelog.html new file mode 100644 index 0000000000..0d2821c2fc --- /dev/null +++ b/changelog.html @@ -0,0 +1,13 @@ +10.30.2013 - 0.10 +

+ - AUX Configuration now shows current AUX channel state
+ - Polished couple of texts
+ - Added changelog within the app
+ - 3D view in Initial Setup now displays model type selected
+

+10.16.2013 - 0.9 +

+ - Polished Auxiliary configuration tab
+ - Polished Raw sensod data tab
+ - Updated libraries
+

\ No newline at end of file diff --git a/js/main.js b/js/main.js index 6701d23239..2d73b8e371 100644 --- a/js/main.js +++ b/js/main.js @@ -79,5 +79,5 @@ $(document).ready(function() { } }); - // temporary + tab_initialize_default(); }); \ No newline at end of file diff --git a/main.html b/main.html index 854944905c..940a8c231e 100644 --- a/main.html +++ b/main.html @@ -16,6 +16,7 @@ + diff --git a/tabs/default.html b/tabs/default.html new file mode 100644 index 0000000000..1a940cc477 --- /dev/null +++ b/tabs/default.html @@ -0,0 +1,69 @@ + +
+
+ This application is a configuration utility for baseflight, a 32 bit fork of the popular open source RC flight control firmware project MultiWii.
+
+ While this app uses the same serial protocol as MultiWii there are several features that only work with baseflight so make sure to use it with compatible hardware only.
+
+ Hardware running baseflight can be purchased from AbuseMark.
+
+ The source code can be downloaded from http://github.com/multiwii/baseflight.
+ The newest binary firmware image is available here.
+
+
+
Configurator - Changelog
+
+
+
+
\ No newline at end of file diff --git a/tabs/default.js b/tabs/default.js new file mode 100644 index 0000000000..2ff72e94be --- /dev/null +++ b/tabs/default.js @@ -0,0 +1,6 @@ +function tab_initialize_default() { + $('#content').load("./tabs/default.html", function() { + // load changelog content + $('div.changelog.configurator .wrapper').load('./changelog.html'); + }); +} \ No newline at end of file