1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-20 17:23:46 +02:00
Commit graph

74 commits

Author SHA1 Message Date
Christophe Beyls
cb9545230c Events in progress are now displayed with a contrasted background color
for the time column in TrackScheduleListFragment.
2014-02-23 19:54:11 +01:00
Christophe Beyls
b6bc0ba77b Made date format final in Day 2014-02-23 16:03:10 +01:00
Christophe Beyls
f78b9576fc Added Android Beam support to allow sharing sessions using NFC, in all
activities showing sessions.
2014-02-22 19:09:29 +01:00
Christophe Beyls
86e69f2856 Scroll to the source event in TrackScheduleListFragment when navigating
up from EventDetailsActivity. Also select the source event by default in
dual-pane mode.
2014-02-21 00:08:02 +01:00
Christophe Beyls
6a4d86a42f Fixed search view gaining focus when going back to SearchResultActivity
in pre-ICS ActionBar.
2014-02-17 01:59:17 +01:00
Christophe Beyls
c6da6228b4 Use DateUtils.withBelgiumTimeZone utility method in Day.java too 2014-01-31 21:53:58 +01:00
Christophe Beyls
f664fde64f Added Gradle Build script.
Ensure Lint checks pass for Gradle build.
2014-01-31 21:51:31 +01:00
Christophe Beyls
55cd420395 Improved notifications with an action button allowing to show the room
map image directly.
Event subtitle in notification BigText style is now shown in white,
before the speaker(s).
2014-01-25 19:28:59 +01:00
Christophe Beyls
151a94864b Check start time and end time existence when creating the intent to add
an event to the system calendar.
2014-01-25 16:57:29 +01:00
Christophe Beyls
6ff746dd53 Make parser date format non-static to avoid cross-thread issues
(even if only one parser is effectively working at the same time with
the current code)
2014-01-25 16:38:21 +01:00
Christophe Beyls
a25b8e432f Display both start and end time in events list (including bookmarks),
along with a shorter representation of the day name.
2014-01-25 16:31:18 +01:00
Christophe Beyls
b6c5159069 Use BigText-styled notifications to show a bit more information in
expanded state.
2014-01-24 02:02:25 +01:00
Christophe Beyls
24b8dc9e2e Display a star icon to the right of starred events in lists. 2014-01-24 01:17:14 +01:00
Christophe Beyls
4db8552e48 Converted forgotten integer reference to Event id to long. 2014-01-23 23:37:15 +01:00
Christophe Beyls
f72fd5966f Load bookmark status asynchronously using a loader to ensure the UI
thread is not blocked when the database is updating. The loader is
notified of bookmarks status changes to deliver the new status
immediately.
2014-01-23 21:34:59 +01:00
Christophe Beyls
e1a7107bdb Fix: properly restore the ViewPager position when
TrackScheduleEventActivity is restored.
2014-01-23 20:53:19 +01:00
Christophe Beyls
334f299525 Only broadcast the event id and start time instead of the full event
when adding a bookmark.
2014-01-22 01:02:12 +01:00
Christophe Beyls
08a0cb66ea Update to new room naming system 2014-01-22 00:52:53 +01:00
Christophe Beyls
4be572c336 Fixed problem during menu creation in TrackScheduleEventActivity in
Android 4.0.x
2014-01-21 03:26:22 +01:00
Christophe Beyls
3aa100a2fc Replaced share ActionProvider with simple chooser Intent to ensure
compatibility with 4.0.3 and make more room for the bookmark icon.
2014-01-21 01:58:40 +01:00
Christophe Beyls
919994e0ab Fragments option menus: keep a reference to MenuItems to change their
state directly instead of recreating the whole menu (works fine with
ActionBarCompat)
2014-01-19 01:17:37 +01:00
Christophe Beyls
2e5e417742 Handle events with no speakers (Issue reported by B. Leseul) 2014-01-18 20:51:21 +01:00
Christophe Beyls
c5c7f29002 Replaced legacy search with SearchView in ActionBar for API level 8+ 2014-01-18 00:56:53 +01:00
Christophe Beyls
f4aa2a7df7 Ensure menu data is loaded before calling setHasOptionsMenu() 2014-01-17 22:08:50 +01:00
Christophe Beyls
975c870883 Improved bookmark status refresh in EventDetailsFragment 2014-01-17 22:05:53 +01:00
Christophe Beyls
e2584ccf52 Fixed crash when creating the options menu on some Android versions:
menu was created before the event was loaded. (Reported by Simon
Debaeke)
2014-01-17 21:45:08 +01:00
Christophe Beyls
3146302878 Added "Live" section to show upcoming and currently running events,
refreshed every minute.
In this section, EventsAdapter shows the event start time and end time
instead of its day and start time.
2014-01-14 02:02:56 +01:00
Christophe Beyls
8cac5003b3 Removed outdated doc 2014-01-13 00:43:59 +01:00
Christophe Beyls
3eec1f88df - Simplified the schedule download code by using an AsyncTask, a simple
ReentrantLock and local broadcasts instead of a loader and a complex
lock.
- Download error reporting is now done using a Toast instead of a
Broadcast.
- Database cache is now only cleared when the DB transaction is
successful.
2014-01-13 00:06:48 +01:00
Christophe Beyls
cff90abfec Sort tracks by name in the tracks list 2014-01-11 01:48:54 +01:00
Christophe Beyls
cd1436fef4 Remove custom sort order when retrieving the list of persons related to
an event to ensure the order is the same as in persons summary text.
2014-01-11 01:16:18 +01:00
Christophe Beyls
962d15f0e3 Added about dialog. 2014-01-11 00:52:18 +01:00
Christophe Beyls
a2d67fbb91 Notifications display change: show room name in the bottom right corner
below the time, and show the track name first in subtitle before the
speakers.
2014-01-10 01:43:54 +01:00
Christophe Beyls
a9c9c40a46 Added room images. They can be shown by clicking on the room name in
EventDetailsFragment. (+500KB apk file size)
2014-01-10 01:38:49 +01:00
Christophe Beyls
ce1fe86616 Made MessageDialogFragment more generic: accepts CharSequences and not
just Strings
2014-01-09 21:08:50 +01:00
Christophe Beyls
bae88e8dac Added Lameere room in building finder 2014-01-09 01:01:50 +01:00
Christophe Beyls
d774557526 Added MultiChoiceModeListener on bookmarks list, to be able to delete
multiple bookmarks at once.
2014-01-08 23:51:57 +01:00
Christophe Beyls
7a4be6ef5e Fixed removeBookmarks when passing multiple ids 2014-01-08 23:07:17 +01:00
Christophe Beyls
6e11286b26 Changed event id and person id to long type instead of int.
Only broadcast bookmark added/removed on success.
2014-01-08 21:19:26 +01:00
Christophe Beyls
2a3f717e92 Display the Building name next to the room name in event details 2014-01-08 02:05:16 +01:00
Christophe Beyls
6eb0f52730 Updated loader in BookmarksListFragment so that bookmarks are
automatically refreshed when the list is limited to future bookmarks and
the start time of the first bookmark is reached.
2014-01-08 01:00:18 +01:00
Christophe Beyls
aa88aad78e Added custom animation when opening settings menu.
Added settings icon and show it if there's room.
2014-01-08 00:26:10 +01:00
Christophe Beyls
2a2da59839 Added notifications system and settings screen.
+ Sorted strings
2014-01-07 02:52:01 +01:00
Christophe Beyls
8443614716 Database internal updates:
- Bookmarks are now retrieved with a min startTime
- Events are broadcast when a bookmark is added/removed
- Multiple bookmarks can now be deleted at the same time (for future
use)
2014-01-07 00:48:25 +01:00
Christophe Beyls
0845268aef Improved readability in SearchSuggestionProvider 2014-01-03 03:35:55 +01:00
Christophe Beyls
077bc3758c Improved keypad navigation when opening main menu 2014-01-03 03:30:46 +01:00
Christophe Beyls
11e6e94f75 Implement proper up navigation from Event Details to Track. 2014-01-02 03:32:43 +01:00
Christophe Beyls
ece5272361 Save and restore the current query text in SearchResultActivity. 2014-01-02 02:07:21 +01:00
Christophe Beyls
59d8db0f24 Improved String-to-Slug transformation code 2014-01-02 00:47:31 +01:00
Christophe Beyls
2edacca909 Switch to current year's database URL 2014-01-02 00:11:48 +01:00