├── .editorconfig ├── .fossify └── release-marker.txt ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ ├── holiday-generator.yml │ ├── holiday-generator │ ├── .gitignore │ ├── config.js │ ├── main.js │ ├── package-lock.json │ └── package.json │ ├── image-minimizer.yml │ ├── no-response.yml │ ├── pr-labeler.yml │ ├── pr.yml │ ├── prepare-release-pr.yml │ ├── release.yml │ ├── testing-build.yml │ ├── update-lint-baselines.yml │ └── validate-fastlane-metadata.yml ├── .gitignore ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── detekt-baseline.xml ├── lint-baseline.xml ├── proguard-rules.pro ├── schemas │ └── org.fossify.calendar.databases.EventsDatabase │ │ ├── 10.json │ │ ├── 11.json │ │ ├── 8.json │ │ └── 9.json └── src │ ├── debug │ └── res │ │ └── values │ │ └── strings.xml │ ├── foss │ └── res │ │ └── values │ │ └── bools.xml │ ├── gplay │ └── res │ │ └── values │ │ └── bools.xml │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── holidays │ │ ├── AR │ │ ├── other.ics │ │ └── public.ics │ │ ├── AT │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── AU │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── BD │ │ ├── other.ics │ │ └── public.ics │ │ ├── BE │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── BG │ │ ├── other.ics │ │ └── public.ics │ │ ├── BO │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── BR │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── CA │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── CH │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── CN │ │ └── public.ics │ │ ├── CO │ │ ├── other.ics │ │ └── public.ics │ │ ├── CR │ │ ├── other.ics │ │ └── public.ics │ │ ├── CZ │ │ ├── other.ics │ │ └── public.ics │ │ ├── DE │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── DK │ │ ├── other.ics │ │ └── public.ics │ │ ├── DZ │ │ └── public.ics │ │ ├── EE │ │ ├── other.ics │ │ └── public.ics │ │ ├── ES │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── FI │ │ ├── other.ics │ │ └── public.ics │ │ ├── FR │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── GB │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── GR │ │ ├── other.ics │ │ └── public.ics │ │ ├── GT │ │ ├── other.ics │ │ └── public.ics │ │ ├── HK │ │ └── public.ics │ │ ├── HR │ │ ├── other.ics │ │ └── public.ics │ │ ├── HT │ │ ├── other.ics │ │ └── public.ics │ │ ├── HU │ │ ├── other.ics │ │ └── public.ics │ │ ├── ID │ │ └── public.ics │ │ ├── IE │ │ ├── other.ics │ │ └── public.ics │ │ ├── IL │ │ ├── other.ics │ │ └── public.ics │ │ ├── IN │ │ └── public.ics │ │ ├── IS │ │ ├── other.ics │ │ └── public.ics │ │ ├── IT │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── JP │ │ ├── other.ics │ │ └── public.ics │ │ ├── KR │ │ ├── other.ics │ │ └── public.ics │ │ ├── KZ │ │ └── public.ics │ │ ├── LI │ │ ├── other.ics │ │ └── public.ics │ │ ├── LK │ │ └── public.ics │ │ ├── LT │ │ ├── other.ics │ │ └── public.ics │ │ ├── LU │ │ ├── other.ics │ │ └── public.ics │ │ ├── LV │ │ ├── other.ics │ │ └── public.ics │ │ ├── MA │ │ └── public.ics │ │ ├── MK │ │ ├── other.ics │ │ └── public.ics │ │ ├── MX │ │ ├── other.ics │ │ └── public.ics │ │ ├── MY │ │ ├── public.ics │ │ └── regional.ics │ │ ├── NG │ │ ├── other.ics │ │ └── public.ics │ │ ├── NI │ │ ├── other.ics │ │ └── public.ics │ │ ├── NL │ │ ├── other.ics │ │ └── public.ics │ │ ├── NO │ │ ├── other.ics │ │ └── public.ics │ │ ├── PH │ │ ├── other.ics │ │ └── public.ics │ │ ├── PK │ │ └── public.ics │ │ ├── PL │ │ ├── other.ics │ │ └── public.ics │ │ ├── PT │ │ ├── other.ics │ │ └── public.ics │ │ ├── RO │ │ ├── other.ics │ │ └── public.ics │ │ ├── RS │ │ ├── other.ics │ │ └── public.ics │ │ ├── RU │ │ └── public.ics │ │ ├── SE │ │ ├── other.ics │ │ └── public.ics │ │ ├── SG │ │ └── public.ics │ │ ├── SI │ │ ├── other.ics │ │ └── public.ics │ │ ├── SK │ │ ├── other.ics │ │ └── public.ics │ │ ├── TH │ │ └── public.ics │ │ ├── TR │ │ └── public.ics │ │ ├── TW │ │ ├── other.ics │ │ └── public.ics │ │ ├── UA │ │ └── public.ics │ │ ├── US │ │ ├── other.ics │ │ ├── public.ics │ │ └── regional.ics │ │ ├── UY │ │ ├── other.ics │ │ └── public.ics │ │ ├── VN │ │ ├── other.ics │ │ └── public.ics │ │ ├── ZA │ │ ├── other.ics │ │ └── public.ics │ │ └── metadata.json │ ├── ic_launcher-playstore.png │ ├── kotlin │ └── org │ │ └── fossify │ │ └── calendar │ │ ├── App.kt │ │ ├── activities │ │ ├── EventActivity.kt │ │ ├── EventTypePickerActivity.kt │ │ ├── MainActivity.kt │ │ ├── ManageEventTypesActivity.kt │ │ ├── SelectTimeZoneActivity.kt │ │ ├── SettingsActivity.kt │ │ ├── SimpleActivity.kt │ │ ├── SnoozeReminderActivity.kt │ │ ├── SplashActivity.kt │ │ ├── TaskActivity.kt │ │ ├── WidgetDateConfigureActivity.kt │ │ ├── WidgetListConfigureActivity.kt │ │ └── WidgetMonthlyConfigureActivity.kt │ │ ├── adapters │ │ ├── AutoCompleteTextViewAdapter.kt │ │ ├── CheckableColorAdapter.kt │ │ ├── DayEventsAdapter.kt │ │ ├── EventListAdapter.kt │ │ ├── EventListWidgetAdapter.kt │ │ ├── EventListWidgetAdapterEmpty.kt │ │ ├── FilterEventTypeAdapter.kt │ │ ├── ManageEventTypesAdapter.kt │ │ ├── MyDayPagerAdapter.kt │ │ ├── MyMonthDayPagerAdapter.kt │ │ ├── MyMonthPagerAdapter.kt │ │ ├── MyWeekPagerAdapter.kt │ │ ├── MyYearPagerAdapter.kt │ │ ├── QuickFilterEventTypeAdapter.kt │ │ └── SelectTimeZoneAdapter.kt │ │ ├── databases │ │ └── EventsDatabase.kt │ │ ├── dialogs │ │ ├── CustomEventRepeatIntervalDialog.kt │ │ ├── CustomPeriodPickerDialog.kt │ │ ├── DateTimePatternInfoDialog.kt │ │ ├── DeleteEventDialog.kt │ │ ├── EditEventTypeDialog.kt │ │ ├── EditRepeatingEventDialog.kt │ │ ├── ExportEventsDialog.kt │ │ ├── ImportEventsDialog.kt │ │ ├── ManageAutomaticBackupsDialog.kt │ │ ├── ReminderWarningDialog.kt │ │ ├── RepeatLimitTypePickerDialog.kt │ │ ├── RepeatRuleWeeklyDialog.kt │ │ ├── SelectCalendarsDialog.kt │ │ ├── SelectEventCalendarDialog.kt │ │ ├── SelectEventColorDialog.kt │ │ ├── SelectEventTypeColorDialog.kt │ │ ├── SelectEventTypeDialog.kt │ │ ├── SelectEventTypesDialog.kt │ │ ├── SelectHolidayTypesDialog.kt │ │ └── SetRemindersDialog.kt │ │ ├── extensions │ │ ├── Activity.kt │ │ ├── Context.kt │ │ ├── DateTime.kt │ │ ├── Event.kt │ │ ├── Int.kt │ │ ├── ListEvent.kt │ │ ├── Long.kt │ │ ├── MonthViewEvent.kt │ │ ├── Range.kt │ │ ├── String.kt │ │ ├── TextView.kt │ │ └── View.kt │ │ ├── fragments │ │ ├── DayFragment.kt │ │ ├── DayFragmentsHolder.kt │ │ ├── EventListFragment.kt │ │ ├── MonthDayFragment.kt │ │ ├── MonthDayFragmentsHolder.kt │ │ ├── MonthFragment.kt │ │ ├── MonthFragmentsHolder.kt │ │ ├── MyFragmentHolder.kt │ │ ├── WeekFragment.kt │ │ ├── WeekFragmentsHolder.kt │ │ ├── YearFragment.kt │ │ └── YearFragmentsHolder.kt │ │ ├── helpers │ │ ├── CalDAVHelper.kt │ │ ├── Config.kt │ │ ├── Constants.kt │ │ ├── Converters.kt │ │ ├── CssColors.kt │ │ ├── EventsHelper.kt │ │ ├── Formatter.kt │ │ ├── HolidayHelper.kt │ │ ├── HsvColorComparator.kt │ │ ├── IcsExporter.kt │ │ ├── IcsImporter.kt │ │ ├── MonthlyCalendarImpl.kt │ │ ├── MyTimeZones.kt │ │ ├── MyWidgetDateProvider.kt │ │ ├── MyWidgetListProvider.kt │ │ ├── MyWidgetMonthlyProvider.kt │ │ ├── Parser.kt │ │ ├── SmartSwipeRefreshLayout.kt │ │ ├── WeeklyCalendarImpl.kt │ │ └── YearlyCalendarImpl.kt │ │ ├── interfaces │ │ ├── DeleteEventTypesListener.kt │ │ ├── EventTypesDao.kt │ │ ├── EventsDao.kt │ │ ├── MonthlyCalendar.kt │ │ ├── NavigationListener.kt │ │ ├── TasksDao.kt │ │ ├── WeekFragmentListener.kt │ │ ├── WeeklyCalendar.kt │ │ ├── WidgetsDao.kt │ │ └── YearlyCalendar.kt │ │ ├── jobs │ │ ├── AppStartupWorker.kt │ │ └── CalDAVUpdateListener.kt │ │ ├── models │ │ ├── Attendee.kt │ │ ├── CalDAVCalendar.kt │ │ ├── DayMonthly.kt │ │ ├── DayYearly.kt │ │ ├── Event.kt │ │ ├── EventRepetition.kt │ │ ├── EventType.kt │ │ ├── EventWeeklyView.kt │ │ ├── HolidayInfo.kt │ │ ├── ListEvent.kt │ │ ├── ListItem.kt │ │ ├── ListSectionDay.kt │ │ ├── ListSectionMonth.kt │ │ ├── MonthViewEvent.kt │ │ ├── MyTimeZone.kt │ │ ├── Reminder.kt │ │ ├── Task.kt │ │ └── Widget.kt │ │ ├── objects │ │ └── States.kt │ │ ├── receivers │ │ ├── AutomaticBackupReceiver.kt │ │ ├── CalDAVSyncReceiver.kt │ │ ├── DummyAlarmReceiver.kt │ │ ├── NotificationReceiver.kt │ │ └── RescheduleEventsReceiver.kt │ │ ├── services │ │ ├── MarkCompletedService.kt │ │ ├── SnoozeService.kt │ │ ├── WidgetService.kt │ │ └── WidgetServiceEmpty.kt │ │ └── views │ │ ├── AutoGridLayoutManager.kt │ │ ├── MonthView.kt │ │ ├── MonthViewWrapper.kt │ │ ├── MyScrollView.kt │ │ ├── SmallMonthView.kt │ │ └── WeeklyViewGrid.kt │ └── res │ ├── drawable-hdpi │ ├── ic_check_green.png │ ├── ic_cross_red.png │ ├── ic_question_yellow.png │ └── weekly_now.9.png │ ├── drawable-nodpi │ ├── img_widget_date_preview.png │ ├── img_widget_list_preview.png │ └── img_widget_monthly_preview.png │ ├── drawable-xhdpi │ ├── ic_check_green.png │ ├── ic_cross_red.png │ ├── ic_question_yellow.png │ └── weekly_now.9.png │ ├── drawable-xxhdpi │ ├── ic_check_green.png │ ├── ic_cross_red.png │ ├── ic_question_yellow.png │ └── weekly_now.9.png │ ├── drawable-xxxhdpi │ ├── ic_check_green.png │ ├── ic_cross_red.png │ ├── ic_question_yellow.png │ └── weekly_now.9.png │ ├── drawable │ ├── activated_item_foreground_rounded.xml │ ├── attendee_status_circular_background.xml │ ├── day_monthly_event_background.xml │ ├── day_monthly_event_background_widget.xml │ ├── divider_width.xml │ ├── event_list_color_bar.xml │ ├── ic_bell_outline_vector.xml │ ├── ic_calendar_vector.xml │ ├── ic_category_outline_vector.xml │ ├── ic_change_view_vector.xml │ ├── ic_circle_vector.xml │ ├── ic_clock_outline_vector.xml │ ├── ic_color_outline_vector.xml │ ├── ic_event_available_vector.xml │ ├── ic_event_busy_vector.xml │ ├── ic_event_status_outline_vector.xml │ ├── ic_globe_vector.xml │ ├── ic_launcher_background.xml │ ├── ic_launcher_foreground.xml │ ├── ic_launcher_monochrome.xml │ ├── ic_lock_outline_vector.xml │ ├── ic_mail_outline_vector.xml │ ├── ic_people_outline_vector.xml │ ├── ic_repeat_outline_vector.xml │ ├── ic_task_vector.xml │ ├── ic_today_vector.xml │ ├── ic_work_outline_vector.xml │ ├── selector_rounded.xml │ ├── shortcut_event.xml │ ├── shortcut_task.xml │ ├── stroke_bottom.xml │ ├── stroke_bottom_right.xml │ └── stroke_right.xml │ ├── layout-land │ ├── fragment_month_day.xml │ ├── fragment_year.xml │ └── small_month_view_holder.xml │ ├── layout │ ├── activity_day.xml │ ├── activity_event.xml │ ├── activity_main.xml │ ├── activity_manage_event_types.xml │ ├── activity_select_time_zone.xml │ ├── activity_settings.xml │ ├── activity_task.xml │ ├── all_day_events_holder_line.xml │ ├── calendar_item_account.xml │ ├── calendar_item_calendar.xml │ ├── checkable_color_button.xml │ ├── date_picker_dark.xml │ ├── date_picker_light.xml │ ├── datetime_pattern_info_layout.xml │ ├── day_monthly_event_view.xml │ ├── day_monthly_event_view_widget.xml │ ├── day_monthly_number_view.xml │ ├── dialog_custom_event_repeat_interval.xml │ ├── dialog_custom_period_picker.xml │ ├── dialog_delete_event.xml │ ├── dialog_edit_repeating_event.xml │ ├── dialog_event_type.xml │ ├── dialog_export_events.xml │ ├── dialog_filter_event_types.xml │ ├── dialog_import_events.xml │ ├── dialog_manage_automatic_backups.xml │ ├── dialog_reminder_warning.xml │ ├── dialog_repeat_limit_type_picker.xml │ ├── dialog_select_calendars.xml │ ├── dialog_select_color.xml │ ├── dialog_select_event_type.xml │ ├── dialog_select_holiday_types.xml │ ├── dialog_select_radio_group.xml │ ├── dialog_set_reminders.xml │ ├── dialog_vertical_linear_layout.xml │ ├── event_list_item.xml │ ├── event_list_item_widget.xml │ ├── event_list_section_day.xml │ ├── event_list_section_day_widget.xml │ ├── event_list_section_month.xml │ ├── event_list_section_month_widget.xml │ ├── filter_event_type_view.xml │ ├── first_row.xml │ ├── first_row_widget.xml │ ├── fragment_day.xml │ ├── fragment_days_holder.xml │ ├── fragment_event_list.xml │ ├── fragment_month.xml │ ├── fragment_month_day.xml │ ├── fragment_month_widget.xml │ ├── fragment_month_widget_config.xml │ ├── fragment_months_days_holder.xml │ ├── fragment_months_holder.xml │ ├── fragment_week.xml │ ├── fragment_week_holder.xml │ ├── fragment_year.xml │ ├── fragment_years_holder.xml │ ├── item_attendee.xml │ ├── item_autocomplete_title_subtitle.xml │ ├── item_event_type.xml │ ├── item_select_time_zone.xml │ ├── month_view.xml │ ├── month_view_background.xml │ ├── my_checkbox.xml │ ├── quick_filter_event_type_view.xml │ ├── radio_button_with_color.xml │ ├── small_month_view_holder.xml │ ├── top_navigation.xml │ ├── week_all_day_event_marker.xml │ ├── week_event_marker.xml │ ├── week_grid_item.xml │ ├── week_now_marker.xml │ ├── weekly_view_day_column.xml │ ├── weekly_view_day_letter.xml │ ├── weekly_view_hour_textview.xml │ ├── widget_config_date.xml │ ├── widget_config_event_list.xml │ ├── widget_config_list.xml │ ├── widget_config_monthly.xml │ ├── widget_date.xml │ ├── widget_event_list.xml │ └── widget_event_list_header.xml │ ├── menu │ ├── cab_day.xml │ ├── cab_event_list.xml │ ├── cab_event_type.xml │ ├── menu_event.xml │ ├── menu_event_types.xml │ ├── menu_main.xml │ ├── menu_select_time_zone.xml │ └── menu_task.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ ├── ic_launcher_amber.xml │ ├── ic_launcher_blue.xml │ ├── ic_launcher_blue_grey.xml │ ├── ic_launcher_brown.xml │ ├── ic_launcher_cyan.xml │ ├── ic_launcher_deep_orange.xml │ ├── ic_launcher_deep_purple.xml │ ├── ic_launcher_grey_black.xml │ ├── ic_launcher_indigo.xml │ ├── ic_launcher_light_blue.xml │ ├── ic_launcher_light_green.xml │ ├── ic_launcher_lime.xml │ ├── ic_launcher_orange.xml │ ├── ic_launcher_pink.xml │ ├── ic_launcher_purple.xml │ ├── ic_launcher_red.xml │ ├── ic_launcher_teal.xml │ └── ic_launcher_yellow.xml │ ├── resources.properties │ ├── values-ar │ └── strings.xml │ ├── values-az │ └── strings.xml │ ├── values-b+es+419 │ └── strings.xml │ ├── values-be │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bn-rBD │ └── strings.xml │ ├── values-bn │ └── strings.xml │ ├── values-bqi │ └── strings.xml │ ├── values-br │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-ckb │ └── strings.xml │ ├── values-cr │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-cy │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-en-rGB │ └── strings.xml │ ├── values-en-rIN │ └── strings.xml │ ├── values-eo │ └── strings.xml │ ├── values-es-rUS │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-eu │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fil │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-ga │ └── strings.xml │ ├── values-gl │ └── strings.xml │ ├── values-hi-rIN │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-ia │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-is │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-kab │ └── strings.xml │ ├── values-kn │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-kr │ └── strings.xml │ ├── values-land │ └── dimens.xml │ ├── values-lt │ └── strings.xml │ ├── values-ltg │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-mk │ └── strings.xml │ ├── values-ml │ └── strings.xml │ ├── values-ms │ └── strings.xml │ ├── values-my │ └── strings.xml │ ├── values-nb-rNO │ └── strings.xml │ ├── values-ne │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-nn │ └── strings.xml │ ├── values-oc │ └── strings.xml │ ├── values-or │ └── strings.xml │ ├── values-pa-rPK │ └── strings.xml │ ├── values-pa │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sat │ └── strings.xml │ ├── values-si │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-sw600dp │ └── dimens.xml │ ├── values-ta │ └── strings.xml │ ├── values-te │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zgh │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── array.xml │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── donottranslate.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── provider_paths.xml │ ├── searchable.xml │ ├── widget_date_info.xml │ ├── widget_list_info.xml │ └── widget_monthly_info.xml ├── detekt.yml ├── fastlane ├── Appfile ├── Fastfile ├── README.md └── metadata │ └── android │ ├── ca │ ├── full_description.txt │ └── short_description.txt │ ├── cs-CZ │ ├── full_description.txt │ └── short_description.txt │ ├── da-DK │ ├── full_description.txt │ └── short_description.txt │ ├── de-DE │ ├── full_description.txt │ └── short_description.txt │ ├── en-US │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1_en-US.png │ │ │ ├── 2_en-US.png │ │ │ ├── 3_en-US.png │ │ │ ├── 4_en-US.png │ │ │ ├── 5_en-US.png │ │ │ ├── 6_en-US.png │ │ │ ├── 7_en-US.png │ │ │ └── 8_en-US.png │ │ └── tenInchScreenshots │ │ │ ├── 1_en-US.png │ │ │ ├── 2_en-US.png │ │ │ ├── 3_en-US.png │ │ │ ├── 4_en-US.png │ │ │ ├── 5_en-US.png │ │ │ └── 6_en-US.png │ ├── short_description.txt │ └── title.txt │ ├── eo │ └── short_description.txt │ ├── es-ES │ ├── full_description.txt │ └── short_description.txt │ ├── et │ ├── full_description.txt │ └── short_description.txt │ ├── eu-ES │ ├── full_description.txt │ └── short_description.txt │ ├── fr-FR │ ├── full_description.txt │ └── short_description.txt │ ├── hi-IN │ ├── full_description.txt │ └── short_description.txt │ ├── hr │ ├── full_description.txt │ └── short_description.txt │ ├── it-IT │ ├── full_description.txt │ └── short_description.txt │ ├── iw-IL │ ├── full_description.txt │ └── short_description.txt │ ├── ja-JP │ └── short_description.txt │ ├── nl-NL │ └── short_description.txt │ ├── pl-PL │ ├── full_description.txt │ └── short_description.txt │ ├── pt-BR │ ├── full_description.txt │ └── short_description.txt │ ├── ru-RU │ ├── full_description.txt │ └── short_description.txt │ ├── sv-SE │ ├── full_description.txt │ └── short_description.txt │ ├── tr-TR │ ├── full_description.txt │ └── short_description.txt │ ├── uk │ ├── full_description.txt │ └── short_description.txt │ ├── zh-CN │ ├── full_description.txt │ └── short_description.txt │ ├── zh-HK │ ├── full_description.txt │ └── short_description.txt │ └── zh-TW │ ├── full_description.txt │ └── short_description.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── graphics ├── featureGraphic.png ├── foreground.svg ├── icon.svg └── icon.webp ├── keystore.properties_sample ├── lint.xml └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fossify/release-marker.txt: -------------------------------------------------------------------------------- 1 | # Auto-generated file. DO NOT EDIT. 2 | 1.8.1 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/holiday-generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/holiday-generator.yml -------------------------------------------------------------------------------- /.github/workflows/holiday-generator/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.github/workflows/holiday-generator/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/holiday-generator/config.js -------------------------------------------------------------------------------- /.github/workflows/holiday-generator/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/holiday-generator/main.js -------------------------------------------------------------------------------- /.github/workflows/holiday-generator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/holiday-generator/package-lock.json -------------------------------------------------------------------------------- /.github/workflows/holiday-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/holiday-generator/package.json -------------------------------------------------------------------------------- /.github/workflows/image-minimizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/image-minimizer.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/prepare-release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/testing-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/testing-build.yml -------------------------------------------------------------------------------- /.github/workflows/update-lint-baselines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/update-lint-baselines.yml -------------------------------------------------------------------------------- /.github/workflows/validate-fastlane-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.github/workflows/validate-fastlane-metadata.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @naveensingh -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /gplay/ 3 | /foss/ 4 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/detekt-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/detekt-baseline.xml -------------------------------------------------------------------------------- /app/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/lint-baseline.xml -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -keep class org.fossify.calendar.models.** { *; } 2 | -------------------------------------------------------------------------------- /app/schemas/org.fossify.calendar.databases.EventsDatabase/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/schemas/org.fossify.calendar.databases.EventsDatabase/10.json -------------------------------------------------------------------------------- /app/schemas/org.fossify.calendar.databases.EventsDatabase/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/schemas/org.fossify.calendar.databases.EventsDatabase/11.json -------------------------------------------------------------------------------- /app/schemas/org.fossify.calendar.databases.EventsDatabase/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/schemas/org.fossify.calendar.databases.EventsDatabase/8.json -------------------------------------------------------------------------------- /app/schemas/org.fossify.calendar.databases.EventsDatabase/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/schemas/org.fossify.calendar.databases.EventsDatabase/9.json -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/debug/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/foss/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/foss/res/values/bools.xml -------------------------------------------------------------------------------- /app/src/gplay/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/gplay/res/values/bools.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/holidays/AR/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/AR/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/AR/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/AR/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/AT/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/AT/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/AT/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/AT/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/AT/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/AT/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/AU/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/AU/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/AU/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/AU/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/AU/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/AU/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BD/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BD/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BD/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BD/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BE/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BE/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BE/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BE/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BE/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BE/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BG/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BG/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BG/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BG/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BO/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BO/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BO/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BO/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BO/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BO/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BR/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BR/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BR/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BR/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/BR/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/BR/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CA/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CA/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CA/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CA/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CA/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CA/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CH/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CH/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CH/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CH/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CH/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CH/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CN/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CN/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CO/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CO/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CO/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CO/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CR/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CR/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CR/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CR/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CZ/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CZ/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/CZ/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/CZ/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/DE/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/DE/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/DE/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/DE/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/DE/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/DE/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/DK/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/DK/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/DK/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/DK/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/DZ/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/DZ/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/EE/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/EE/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/EE/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/EE/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/ES/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/ES/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/ES/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/ES/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/ES/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/ES/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/FI/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/FI/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/FI/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/FI/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/FR/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/FR/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/FR/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/FR/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/FR/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/FR/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/GB/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/GB/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/GB/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/GB/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/GB/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/GB/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/GR/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/GR/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/GR/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/GR/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/GT/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/GT/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/GT/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/GT/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/HK/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/HK/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/HR/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/HR/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/HR/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/HR/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/HT/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/HT/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/HT/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/HT/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/HU/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/HU/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/HU/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/HU/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/ID/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/ID/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IE/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IE/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IE/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IE/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IL/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IL/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IL/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IL/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IN/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IN/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IS/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IS/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IS/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IS/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IT/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IT/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IT/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IT/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/IT/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/IT/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/JP/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/JP/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/JP/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/JP/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/KR/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/KR/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/KR/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/KR/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/KZ/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/KZ/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/LI/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/LI/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/LI/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/LI/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/LK/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/LK/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/LT/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/LT/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/LT/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/LT/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/LU/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/LU/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/LU/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/LU/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/LV/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/LV/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/LV/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/LV/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/MA/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/MA/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/MK/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/MK/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/MK/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/MK/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/MX/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/MX/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/MX/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/MX/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/MY/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/MY/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/MY/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/MY/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/NG/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/NG/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/NG/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/NG/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/NI/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/NI/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/NI/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/NI/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/NL/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/NL/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/NL/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/NL/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/NO/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/NO/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/NO/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/NO/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/PH/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/PH/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/PH/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/PH/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/PK/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/PK/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/PL/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/PL/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/PL/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/PL/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/PT/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/PT/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/PT/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/PT/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/RO/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/RO/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/RO/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/RO/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/RS/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/RS/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/RS/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/RS/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/RU/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/RU/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/SE/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/SE/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/SE/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/SE/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/SG/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/SG/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/SI/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/SI/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/SI/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/SI/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/SK/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/SK/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/SK/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/SK/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/TH/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/TH/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/TR/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/TR/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/TW/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/TW/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/TW/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/TW/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/UA/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/UA/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/US/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/US/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/US/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/US/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/US/regional.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/US/regional.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/UY/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/UY/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/UY/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/UY/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/VN/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/VN/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/VN/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/VN/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/ZA/other.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/ZA/other.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/ZA/public.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/ZA/public.ics -------------------------------------------------------------------------------- /app/src/main/assets/holidays/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/assets/holidays/metadata.json -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/App.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/EventActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/EventActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/EventTypePickerActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/EventTypePickerActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/ManageEventTypesActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/ManageEventTypesActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/SelectTimeZoneActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/SelectTimeZoneActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/SettingsActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/SimpleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/SimpleActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/SnoozeReminderActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/SnoozeReminderActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/TaskActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/TaskActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/WidgetDateConfigureActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/WidgetDateConfigureActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/WidgetListConfigureActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/WidgetListConfigureActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/activities/WidgetMonthlyConfigureActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/activities/WidgetMonthlyConfigureActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/AutoCompleteTextViewAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/AutoCompleteTextViewAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/CheckableColorAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/CheckableColorAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/DayEventsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/DayEventsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/EventListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/EventListAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/EventListWidgetAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/EventListWidgetAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/EventListWidgetAdapterEmpty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/EventListWidgetAdapterEmpty.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/FilterEventTypeAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/FilterEventTypeAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/ManageEventTypesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/ManageEventTypesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/MyDayPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/MyDayPagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/MyMonthDayPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/MyMonthDayPagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/MyMonthPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/MyMonthPagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/MyWeekPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/MyWeekPagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/MyYearPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/MyYearPagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/QuickFilterEventTypeAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/QuickFilterEventTypeAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/adapters/SelectTimeZoneAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/adapters/SelectTimeZoneAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/databases/EventsDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/databases/EventsDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/CustomEventRepeatIntervalDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/CustomEventRepeatIntervalDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/CustomPeriodPickerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/CustomPeriodPickerDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/DateTimePatternInfoDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/DateTimePatternInfoDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/DeleteEventDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/DeleteEventDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/EditEventTypeDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/EditEventTypeDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/EditRepeatingEventDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/EditRepeatingEventDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/ExportEventsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/ExportEventsDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/ImportEventsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/ImportEventsDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/ManageAutomaticBackupsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/ManageAutomaticBackupsDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/ReminderWarningDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/ReminderWarningDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/RepeatLimitTypePickerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/RepeatLimitTypePickerDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/RepeatRuleWeeklyDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/RepeatRuleWeeklyDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/SelectCalendarsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/SelectCalendarsDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventCalendarDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventCalendarDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventColorDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventColorDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventTypeColorDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventTypeColorDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventTypeDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventTypeDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventTypesDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/SelectEventTypesDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/SelectHolidayTypesDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/SelectHolidayTypesDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/dialogs/SetRemindersDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/dialogs/SetRemindersDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/Activity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/Context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/Context.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/DateTime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/DateTime.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/Event.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/Event.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/Int.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/Int.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/ListEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/ListEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/Long.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/Long.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/MonthViewEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/MonthViewEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/Range.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/Range.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/String.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/String.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/TextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/TextView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/extensions/View.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/extensions/View.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/DayFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/DayFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/DayFragmentsHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/DayFragmentsHolder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/EventListFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/EventListFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/MonthDayFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/MonthDayFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/MonthDayFragmentsHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/MonthDayFragmentsHolder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/MonthFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/MonthFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/MonthFragmentsHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/MonthFragmentsHolder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/MyFragmentHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/MyFragmentHolder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/WeekFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/WeekFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/WeekFragmentsHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/WeekFragmentsHolder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/YearFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/YearFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/fragments/YearFragmentsHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/fragments/YearFragmentsHolder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/CalDAVHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/CalDAVHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/Config.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/Constants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/Converters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/Converters.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/CssColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/CssColors.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/EventsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/EventsHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/Formatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/Formatter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/HolidayHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/HolidayHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/HsvColorComparator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/HsvColorComparator.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/IcsExporter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/IcsExporter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/IcsImporter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/IcsImporter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/MonthlyCalendarImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/MonthlyCalendarImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/MyTimeZones.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/MyTimeZones.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/MyWidgetDateProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/MyWidgetDateProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/MyWidgetListProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/MyWidgetListProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/MyWidgetMonthlyProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/MyWidgetMonthlyProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/Parser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/Parser.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/SmartSwipeRefreshLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/SmartSwipeRefreshLayout.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/WeeklyCalendarImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/WeeklyCalendarImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/helpers/YearlyCalendarImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/helpers/YearlyCalendarImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/DeleteEventTypesListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/DeleteEventTypesListener.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/EventTypesDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/EventTypesDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/EventsDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/EventsDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/MonthlyCalendar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/MonthlyCalendar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/NavigationListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/NavigationListener.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/TasksDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/TasksDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/WeekFragmentListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/WeekFragmentListener.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/WeeklyCalendar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/WeeklyCalendar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/WidgetsDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/WidgetsDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/interfaces/YearlyCalendar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/interfaces/YearlyCalendar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/jobs/AppStartupWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/jobs/AppStartupWorker.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/jobs/CalDAVUpdateListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/jobs/CalDAVUpdateListener.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/Attendee.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/Attendee.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/CalDAVCalendar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/CalDAVCalendar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/DayMonthly.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/DayMonthly.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/DayYearly.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/DayYearly.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/Event.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/Event.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/EventRepetition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/EventRepetition.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/EventType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/EventType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/EventWeeklyView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/EventWeeklyView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/HolidayInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/HolidayInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/ListEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/ListEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/ListItem.kt: -------------------------------------------------------------------------------- 1 | package org.fossify.calendar.models 2 | 3 | open class ListItem 4 | -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/ListSectionDay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/ListSectionDay.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/ListSectionMonth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/ListSectionMonth.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/MonthViewEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/MonthViewEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/MyTimeZone.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/MyTimeZone.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/Reminder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/Reminder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/Task.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/Task.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/models/Widget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/models/Widget.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/objects/States.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/objects/States.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/receivers/AutomaticBackupReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/receivers/AutomaticBackupReceiver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/receivers/CalDAVSyncReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/receivers/CalDAVSyncReceiver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/receivers/DummyAlarmReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/receivers/DummyAlarmReceiver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/receivers/NotificationReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/receivers/NotificationReceiver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/receivers/RescheduleEventsReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/receivers/RescheduleEventsReceiver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/services/MarkCompletedService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/services/MarkCompletedService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/services/SnoozeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/services/SnoozeService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/services/WidgetService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/services/WidgetService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/services/WidgetServiceEmpty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/services/WidgetServiceEmpty.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/views/AutoGridLayoutManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/views/AutoGridLayoutManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/views/MonthView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/views/MonthView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/views/MonthViewWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/views/MonthViewWrapper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/views/MyScrollView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/views/MyScrollView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/views/SmallMonthView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/views/SmallMonthView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/fossify/calendar/views/WeeklyViewGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/kotlin/org/fossify/calendar/views/WeeklyViewGrid.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_check_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-hdpi/ic_check_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cross_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-hdpi/ic_cross_red.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_question_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-hdpi/ic_question_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/weekly_now.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-hdpi/weekly_now.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/img_widget_date_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-nodpi/img_widget_date_preview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/img_widget_list_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-nodpi/img_widget_list_preview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/img_widget_monthly_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-nodpi/img_widget_monthly_preview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_check_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xhdpi/ic_check_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cross_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xhdpi/ic_cross_red.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_question_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xhdpi/ic_question_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/weekly_now.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xhdpi/weekly_now.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_check_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xxhdpi/ic_check_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cross_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xxhdpi/ic_cross_red.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_question_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xxhdpi/ic_question_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/weekly_now.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xxhdpi/weekly_now.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_check_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xxxhdpi/ic_check_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cross_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cross_red.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_question_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xxxhdpi/ic_question_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/weekly_now.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable-xxxhdpi/weekly_now.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/activated_item_foreground_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/activated_item_foreground_rounded.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/attendee_status_circular_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/attendee_status_circular_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/day_monthly_event_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/day_monthly_event_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/day_monthly_event_background_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/day_monthly_event_background_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/divider_width.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/divider_width.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/event_list_color_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/event_list_color_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bell_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_bell_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calendar_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_calendar_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_category_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_category_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_change_view_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_change_view_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_circle_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_circle_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_clock_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_clock_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_color_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_color_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_event_available_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_event_available_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_event_busy_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_event_busy_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_event_status_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_event_status_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_globe_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_globe_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_lock_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_lock_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_mail_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_mail_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_people_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_people_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_repeat_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_repeat_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_task_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_task_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_today_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_today_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_work_outline_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/ic_work_outline_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/selector_rounded.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/shortcut_event.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/shortcut_task.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/stroke_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/stroke_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/stroke_bottom_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/stroke_bottom_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/stroke_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/drawable/stroke_right.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/fragment_month_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout-land/fragment_month_day.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/fragment_year.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout-land/fragment_year.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/small_month_view_holder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout-land/small_month_view_holder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/activity_day.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/activity_event.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_manage_event_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/activity_manage_event_types.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_select_time_zone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/activity_select_time_zone.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/activity_task.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/all_day_events_holder_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/all_day_events_holder_line.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/calendar_item_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/calendar_item_account.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/calendar_item_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/calendar_item_calendar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/checkable_color_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/checkable_color_button.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/date_picker_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/date_picker_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/date_picker_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/date_picker_light.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/datetime_pattern_info_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/datetime_pattern_info_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/day_monthly_event_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/day_monthly_event_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/day_monthly_event_view_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/day_monthly_event_view_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/day_monthly_number_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/day_monthly_number_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_custom_event_repeat_interval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_custom_event_repeat_interval.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_custom_period_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_custom_period_picker.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_delete_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_delete_event.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_edit_repeating_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_edit_repeating_event.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_event_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_event_type.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_export_events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_export_events.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_filter_event_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_filter_event_types.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_import_events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_import_events.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_manage_automatic_backups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_manage_automatic_backups.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_reminder_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_reminder_warning.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_repeat_limit_type_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_repeat_limit_type_picker.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_select_calendars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_select_calendars.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_select_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_select_color.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_select_event_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_select_event_type.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_select_holiday_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_select_holiday_types.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_select_radio_group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_select_radio_group.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_set_reminders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_set_reminders.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_vertical_linear_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/dialog_vertical_linear_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/event_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/event_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/event_list_item_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/event_list_item_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/event_list_section_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/event_list_section_day.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/event_list_section_day_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/event_list_section_day_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/event_list_section_month.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/event_list_section_month.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/event_list_section_month_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/event_list_section_month_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/filter_event_type_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/filter_event_type_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/first_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/first_row.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/first_row_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/first_row_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_day.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_days_holder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_days_holder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_event_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_event_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_month.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_month.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_month_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_month_day.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_month_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_month_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_month_widget_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_month_widget_config.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_months_days_holder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_months_days_holder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_months_holder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_months_holder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_week.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_week.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_week_holder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_week_holder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_year.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_year.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_years_holder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/fragment_years_holder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_attendee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/item_attendee.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_autocomplete_title_subtitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/item_autocomplete_title_subtitle.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_event_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/item_event_type.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_select_time_zone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/item_select_time_zone.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/month_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/month_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/month_view_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/month_view_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/my_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/my_checkbox.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/quick_filter_event_type_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/quick_filter_event_type_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/radio_button_with_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/radio_button_with_color.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/small_month_view_holder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/small_month_view_holder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/top_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/top_navigation.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/week_all_day_event_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/week_all_day_event_marker.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/week_event_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/week_event_marker.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/week_grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/week_grid_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/week_now_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/week_now_marker.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/weekly_view_day_column.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/weekly_view_day_column.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/weekly_view_day_letter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/weekly_view_day_letter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/weekly_view_hour_textview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/weekly_view_hour_textview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_config_date.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/widget_config_date.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_config_event_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/widget_config_event_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_config_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/widget_config_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_config_monthly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/widget_config_monthly.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_date.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/widget_date.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_event_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/widget_event_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_event_list_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/layout/widget_event_list_header.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/menu/cab_day.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_event_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/menu/cab_event_list.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_event_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/menu/cab_event_type.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/menu/menu_event.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_event_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/menu/menu_event_types.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_select_time_zone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/menu/menu_select_time_zone.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/menu/menu_task.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_amber.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_amber.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue_grey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue_grey.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_brown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_brown.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_cyan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_cyan.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_orange.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_purple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_purple.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_grey_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_grey_black.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_indigo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_indigo.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_blue.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_green.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_lime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_lime.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_orange.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_pink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_pink.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_red.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_teal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_teal.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow.xml -------------------------------------------------------------------------------- /app/src/main/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en-US 2 | -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-az/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-b+es+419/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-b+es+419/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-be/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-bn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bqi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-bqi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-br/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-br/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ckb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ckb/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-cr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-cy/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-eo/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-eu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-fa/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fil/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-fil/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ga/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ga/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-gl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hi-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-hi-rIN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ia/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ia/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-is/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-is/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-kab/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-kab/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-kn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-kr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-kr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-land/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ltg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ltg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-mk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ms/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-my/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-my/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ne/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ne/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-nn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-oc/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-oc/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-or/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-or/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pa-rPK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-pa-rPK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-pa/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sat/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-sat/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-si/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-te/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zgh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-zgh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values/array.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values/donottranslate.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/xml/searchable.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_date_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/xml/widget_date_info.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_list_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/xml/widget_list_info.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_monthly_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/app/src/main/res/xml/widget_monthly_info.xml -------------------------------------------------------------------------------- /detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/detekt.yml -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/ca/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/ca/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/cs-CZ/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/cs-CZ/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/da-DK/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/da-DK/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/de-DE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | * Initial release. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/10.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/11.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/12.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/13.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/14.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/15.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | * Fixed import compatibility with Simple Calendar. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/3.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/4.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/5.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/6.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/7.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/8.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/changelogs/9.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/8_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/8_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/1_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/1_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/2_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/2_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/3_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/3_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/4_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/4_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/5_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/5_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/6_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/6_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Fossify Calendar 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/eo/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/eo/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/es-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/es-ES/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/et/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/et/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/et/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/et/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/eu-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/eu-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/eu-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/eu-ES/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/fr-FR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/fr-FR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/hi-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/hi-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/hr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/hr/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/it-IT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/it-IT/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/iw-IL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/iw-IL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/ja-JP/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/nl-NL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/pl-PL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/pl-PL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/pt-BR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/pt-BR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/ru-RU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/ru-RU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/sv-SE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/sv-SE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/tr-TR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/tr-TR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/uk/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/uk/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 使用我们的私人日历应用安全地计划、安排和设置提醒。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/zh-HK/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/short_description.txt: -------------------------------------------------------------------------------- 1 | 使用我們的私人行事曆安全地規劃、安排與設定提醒。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/fastlane/metadata/android/zh-TW/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 使用我們的私人行事曆安全地規劃、安排與設定提醒。 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/gradlew.bat -------------------------------------------------------------------------------- /graphics/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/graphics/featureGraphic.png -------------------------------------------------------------------------------- /graphics/foreground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/graphics/foreground.svg -------------------------------------------------------------------------------- /graphics/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/graphics/icon.svg -------------------------------------------------------------------------------- /graphics/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/graphics/icon.webp -------------------------------------------------------------------------------- /keystore.properties_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/keystore.properties_sample -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/lint.xml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FossifyOrg/Calendar/HEAD/settings.gradle.kts --------------------------------------------------------------------------------