From a2915565289749d65a621f18b64aad2c01096493 Mon Sep 17 00:00:00 2001 From: Giulio Gratta Date: Tue, 18 Dec 2018 13:28:43 -0800 Subject: [PATCH 1/2] Use a list of selectors for course tab Our course tab can be old or new format, so this is helpful. --- platformtour/default_steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformtour/default_steps.py b/platformtour/default_steps.py index d4fdd64..feaa214 100644 --- a/platformtour/default_steps.py +++ b/platformtour/default_steps.py @@ -21,7 +21,7 @@ { 'key': 'course_tab', 'title': 'Course Tab', - 'element': '.course-tabs a[href*="/course/"]', + 'element': '.course-tabs a[href*="/course/"], .course-tabs a[href*="/courseware"]', 'intro': 'You are in the Course tab, where all the materials are found.', 'position': 'right', }, From 8cf308b79607c6e407819be6ed2e8d6418472059 Mon Sep 17 00:00:00 2001 From: Giulio Gratta Date: Tue, 18 Dec 2018 13:44:31 -0800 Subject: [PATCH 2/2] Push version to 1.0.2 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f034420..f1114dd 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def package_data(pkg, roots): setup( name='xblock-platform-tour', - version='1.0.1', + version='1.0.2', description=('This xblock makes it easy for instructors to build a custom tour' ' of the platform and their specific course.'), license='AGPL v3',