├── .java-version ├── .ruby-version ├── Simplenote ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values-zh │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-hdpi │ │ │ │ └── logo_login.png │ │ │ ├── drawable-mdpi │ │ │ │ └── logo_login.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── logo_login.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── logo_login.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── logo_login.png │ │ │ ├── drawable-nodpi │ │ │ │ ├── note_widget_preview_dark.png │ │ │ │ ├── note_widget_preview_light.png │ │ │ │ ├── note_list_widget_preview_dark.png │ │ │ │ └── note_list_widget_preview_light.png │ │ │ ├── values-v31 │ │ │ │ └── styles.xml │ │ │ ├── values │ │ │ │ ├── drawables.xml │ │ │ │ ├── available_languages.xml │ │ │ │ ├── integers.xml │ │ │ │ └── plurals.xml │ │ │ ├── layout │ │ │ │ ├── note_widget_configure.xml │ │ │ │ ├── progressbar_toolbar.xml │ │ │ │ ├── note_widget_configure_list.xml │ │ │ │ ├── autocomplete_list_item.xml │ │ │ │ ├── fragment_note_webview.xml │ │ │ │ ├── fragment_note_markdown.xml │ │ │ │ ├── share_button_item.xml │ │ │ │ ├── activity_signup.xml │ │ │ │ ├── collaborators_header.xml │ │ │ │ ├── activity_preferences.xml │ │ │ │ ├── activity_about.xml │ │ │ │ ├── list_item_single_choice.xml │ │ │ │ ├── toolbar.xml │ │ │ │ ├── drawer_action_edit.xml │ │ │ │ └── authentication_fancy_or.xml │ │ │ ├── drawable-large-land │ │ │ │ └── divider_light.xml │ │ │ ├── values-large │ │ │ │ └── dimens.xml │ │ │ ├── color │ │ │ │ ├── button_disabled_selector.xml │ │ │ │ ├── accent_text_button_disabled_selector.xml │ │ │ │ ├── bg_drawer_selector_light.xml │ │ │ │ ├── bg_drawer_selector_accent.xml │ │ │ │ ├── bg_drawer_selector_dark.xml │ │ │ │ └── toolbar_icon_alpha_40_selector.xml │ │ │ ├── drawable │ │ │ │ ├── bg_key.xml │ │ │ │ ├── divider_dark.xml │ │ │ │ ├── divider_light.xml │ │ │ │ ├── bg_style_locked.xml │ │ │ │ ├── note_widget_background_dark.xml │ │ │ │ ├── note_widget_background_light.xml │ │ │ │ ├── note_widget_background_dark_black.xml │ │ │ │ ├── note_widget_background_dark_sepia.xml │ │ │ │ ├── bg_list_popup.xml │ │ │ │ ├── note_widget_background_light_sepia.xml │ │ │ │ ├── bg_bottom_sheet_handle.xml │ │ │ │ ├── bg_list_style_black.xml │ │ │ │ ├── bg_list_style_default.xml │ │ │ │ ├── bg_list_style_matrix.xml │ │ │ │ ├── bg_list_style_sepia.xml │ │ │ │ ├── ic_collaborate_16dp.xml │ │ │ │ ├── ic_add_24dp.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── bg_ripple_oval_fab_color.xml │ │ │ │ ├── bg_ripple_oval_black.xml │ │ │ │ ├── bg_ripple_oval_mono_dark.xml │ │ │ │ ├── bg_ripple_oval_mono_light.xml │ │ │ │ ├── bg_ripple_oval_sepia_dark.xml │ │ │ │ ├── ic_chevron_right_24dp.xml │ │ │ │ ├── bg_ripple_oval_classic_dark.xml │ │ │ │ ├── bg_ripple_oval_default_dark.xml │ │ │ │ ├── bg_ripple_oval_matrix_dark.xml │ │ │ │ ├── bg_ripple_oval_matrix_light.xml │ │ │ │ ├── bg_ripple_oval_sepia_light.xml │ │ │ │ ├── ic_chevron_left_24dp.xml │ │ │ │ ├── ic_mail.xml │ │ │ │ ├── bg_ripple_oval_classic_light.xml │ │ │ │ ├── bg_ripple_oval_default_light.xml │ │ │ │ ├── ic_arrow_top_right_24dp.xml │ │ │ │ ├── bg_ripple_oval_publication_dark.xml │ │ │ │ ├── bg_ripple_oval_publication_light.xml │ │ │ │ ├── ic_arrow_left_24dp.xml │ │ │ │ ├── ic_arrow_up_16dp.xml │ │ │ │ ├── ic_pinned_16dp.xml │ │ │ │ ├── bg_style_black.xml │ │ │ │ ├── bg_style_activated.xml │ │ │ │ ├── bg_style_default.xml │ │ │ │ ├── bg_style_sepia.xml │ │ │ │ ├── bg_splash.xml │ │ │ │ ├── ic_new_note_24dp.xml │ │ │ │ ├── ic_tags_close_24dp.xml │ │ │ │ ├── ic_cross_24dp.xml │ │ │ │ ├── bg_pin_selector_dark.xml │ │ │ │ ├── bg_pin_selector_light.xml │ │ │ │ ├── ic_publish_16dp.xml │ │ │ │ ├── ic_tags_open_24dp.xml │ │ │ │ ├── ic_checkbox_list_unchecked_24dp.xml │ │ │ │ ├── ic_publish_24dp.xml │ │ │ │ ├── ic_paste_24dp.xml │ │ │ │ ├── ic_history_24dp.xml │ │ │ │ ├── ic_email_24dp.xml │ │ │ │ ├── ic_browser_24dp.xml │ │ │ │ ├── ic_tag_24dp.xml │ │ │ │ ├── ic_checkbox_list_checked_24dp.xml │ │ │ │ ├── ic_mail_24dp.xml │ │ │ │ ├── ic_notes_24dp.xml │ │ │ │ ├── ic_checkbox_editor_unchecked_24dp.xml │ │ │ │ ├── ic_themes_24dp.xml │ │ │ │ ├── ic_pinned_24dp.xml │ │ │ │ ├── ic_checkbox_editor_checked_24dp.xml │ │ │ │ ├── ic_map_24dp.xml │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ ├── ic_share_alt_24dp.xml │ │ │ │ ├── ic_copy_24dp.xml │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ ├── bg_pin_dark.xml │ │ │ │ ├── bg_pin_light.xml │ │ │ │ ├── ic_call_white_24dp.xml │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ ├── ic_simplenote_24dp.xml │ │ │ │ ├── ic_share_24dp.xml │ │ │ │ ├── bg_list_default.xml │ │ │ │ ├── ic_simplenote_blue_24dp.xml │ │ │ │ ├── bg_list_mono.xml │ │ │ │ ├── bg_list_black.xml │ │ │ │ ├── bg_list_matrix.xml │ │ │ │ ├── bg_list_sepia.xml │ │ │ │ ├── bg_list_classic.xml │ │ │ │ ├── bg_list_publication.xml │ │ │ │ ├── ic_select_all_24dp.xml │ │ │ │ ├── ic_note_24dp.xml │ │ │ │ ├── ic_visibility_on_24dp.xml │ │ │ │ ├── ic_share_publish_48dp.xml │ │ │ │ ├── ic_share_unpublish_48dp.xml │ │ │ │ ├── ic_share_collaborate_48dp.xml │ │ │ │ ├── ic_share_wordpress_48dp.xml │ │ │ │ ├── ic_trash_restore_24dp.xml │ │ │ │ ├── ic_link_24dp.xml │ │ │ │ ├── ic_info_24dp.xml │ │ │ │ ├── ic_warning_24dp.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ ├── ic_cut_24dp.xml │ │ │ │ ├── ic_launcher_foreground_green.xml │ │ │ │ ├── ic_trash_24dp.xml │ │ │ │ ├── ic_untagged_24dp.xml │ │ │ │ ├── ic_shortcut_create_48dp.xml │ │ │ │ ├── ic_checklist_24dp.xml │ │ │ │ ├── ic_collaborate_24dp.xml │ │ │ │ ├── bg_pinned_dark.xml │ │ │ │ ├── bg_pinned_light.xml │ │ │ │ ├── ic_visibility_off_24dp.xml │ │ │ │ ├── ic_wordpress_24dp.xml │ │ │ │ ├── ic_trash_disabled_24dp.xml │ │ │ │ └── ic_launcher_mono.xml │ │ │ ├── anim │ │ │ │ ├── full_screen_dialog_fragment_none.xml │ │ │ │ ├── full_screen_dialog_fragment_slide_down.xml │ │ │ │ └── full_screen_dialog_fragment_slide_up.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher_green.xml │ │ │ │ └── ic_launcher.xml │ │ │ ├── drawable-ldrtl │ │ │ │ ├── ic_chevron_left_24dp.xml │ │ │ │ ├── ic_chevron_right_24dp.xml │ │ │ │ └── ic_arrow_top_right_24dp.xml │ │ │ ├── drawable-night │ │ │ │ ├── bg_style_black.xml │ │ │ │ ├── bg_style_sepia.xml │ │ │ │ └── bg_style_default.xml │ │ │ ├── menu │ │ │ │ ├── tags_list.xml │ │ │ │ ├── view_link.xml │ │ │ │ ├── bulk_edit.xml │ │ │ │ └── sort_bar.xml │ │ │ ├── xml │ │ │ │ ├── note_list_widget_info_dark.xml │ │ │ │ ├── note_list_widget_info_light.xml │ │ │ │ ├── shortcuts.xml │ │ │ │ ├── note_widget_info_dark.xml │ │ │ │ └── note_widget_info_light.xml │ │ │ └── animator │ │ │ │ └── button_raise.xml │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ └── Roboto-Regular.ttf │ │ └── java │ │ │ └── com │ │ │ └── automattic │ │ │ └── simplenote │ │ │ ├── models │ │ │ ├── TagItem.kt │ │ │ ├── NoteFullTextIndexer.java │ │ │ ├── NoteCountIndexer.java │ │ │ ├── NoteIndexer.java │ │ │ └── Suggestion.java │ │ │ ├── utils │ │ │ ├── DeleteAccountRequestHandler.java │ │ │ ├── locale │ │ │ │ ├── LocaleProvider.kt │ │ │ │ └── ContextBasedLocaleProvider.kt │ │ │ ├── AccountVerificationEmailHandler.java │ │ │ ├── HtmlCompat.java │ │ │ ├── Either.kt │ │ │ ├── BaseExt.kt │ │ │ ├── markdown │ │ │ │ └── SimplenoteMarkdownFlavorDescriptor.kt │ │ │ └── IntentUtils.java │ │ │ ├── authentication │ │ │ ├── magiclink │ │ │ │ └── MagicLinkAuthError.kt │ │ │ └── SessionManager.kt │ │ │ ├── NoteListWidgetDarkService.java │ │ │ ├── NoteListWidgetLightService.java │ │ │ ├── di │ │ │ ├── AppModule.kt │ │ │ ├── ThreadModule.kt │ │ │ └── NetworkModule.kt │ │ │ ├── networking │ │ │ └── HeadersInterceptor.kt │ │ │ ├── repositories │ │ │ ├── TagsRepository.kt │ │ │ └── MagicLinkRepository.kt │ │ │ └── widgets │ │ │ └── CheckableSpan.java │ ├── debug │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values │ │ │ │ └── strings.xml │ │ │ ├── xml │ │ │ │ └── shortcuts.xml │ │ │ └── drawable │ │ │ │ └── ic_launcher_foreground.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── automattic │ │ │ │ └── simplenote │ │ │ │ └── HiltTestActivity.kt │ │ └── AndroidManifest.xml │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── automattic │ │ │ └── simplenote │ │ │ ├── SimplenoteAppRunner.kt │ │ │ ├── utils │ │ │ └── StringUtils.kt │ │ │ └── SimplenoteTest.kt │ └── test │ │ └── java │ │ └── com │ │ └── automattic │ │ └── simplenote │ │ ├── utils │ │ └── StringUtils.kt │ │ └── CoroutineTestRule.kt ├── gradle.properties-example └── lint.xml ├── Wear ├── .gitignore ├── src │ └── main │ │ └── res │ │ ├── values-zh │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-he │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-id │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ └── values-tr │ │ └── strings.xml └── proguard-rules.pro ├── PasscodeLock ├── .gitignore ├── src │ └── main │ │ ├── res │ │ ├── values-xlarge │ │ │ └── bools.xml │ │ ├── values-sw600dp │ │ │ └── bools.xml │ │ ├── values │ │ │ ├── bools.xml │ │ │ ├── dimens.xml │ │ │ └── colors.xml │ │ ├── drawable-hdpi │ │ │ ├── ic_backspace_white_24dp.png │ │ │ └── ic_fingerprint_white_24dp.png │ │ ├── drawable-mdpi │ │ │ ├── ic_backspace_white_24dp.png │ │ │ └── ic_fingerprint_white_24dp.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_backspace_white_24dp.png │ │ │ └── ic_fingerprint_white_24dp.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_backspace_white_24dp.png │ │ │ └── ic_fingerprint_white_24dp.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_backspace_white_24dp.png │ │ │ └── ic_fingerprint_white_24dp.png │ │ ├── anim │ │ │ ├── do_nothing.xml │ │ │ ├── slide_up.xml │ │ │ ├── cycle_5.xml │ │ │ └── shake.xml │ │ └── xml │ │ │ └── passcode_preferences.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── org │ │ └── wordpress │ │ └── passcodelock │ │ └── StringUtils.java ├── gradle.properties └── build.gradle ├── .gitattributes ├── fastlane ├── metadata │ └── android │ │ ├── ar │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── id │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── de-DE │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── en-US │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ ├── short_description.txt │ │ └── release_notes.txt │ │ ├── es-ES │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── fr-FR │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ └── title.txt │ │ ├── it-IT │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── iw-IL │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── ja-JP │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ ├── short_description.txt │ │ └── full_description.txt │ │ ├── ko-KR │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ ├── short_description.txt │ │ └── full_description.txt │ │ ├── nl-NL │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── pt-BR │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── ru-RU │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── sv-SE │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ └── short_description.txt │ │ ├── tr-TR │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ └── title.txt │ │ ├── zh-CN │ │ ├── changelogs │ │ │ ├── .gitkeep │ │ │ └── default.txt │ │ ├── title.txt │ │ ├── short_description.txt │ │ └── full_description.txt │ │ └── zh-TW │ │ ├── changelogs │ │ ├── .gitkeep │ │ └── default.txt │ │ ├── title.txt │ │ ├── short_description.txt │ │ └── full_description.txt └── env.example ├── version.properties ├── settings.gradle ├── metadata └── ic_launcher_web.png ├── .bundle └── config ├── .configure-files ├── release.jks.enc ├── automattic.jks.enc ├── debug.keystore.enc ├── debug_a8c.keystore.enc ├── gradle.properties.enc ├── sentry.properties.enc └── google-upload-credentials.json.enc ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── .editorconfig ├── .github ├── workflows │ ├── gradle-wrapper-validation.yml │ ├── validate-issues.yml │ ├── run-danger.yml │ └── submit-gradle-dependencies.yml ├── ISSUE_TEMPLATE │ └── ---feature-request.md └── PULL_REQUEST_TEMPLATE.md ├── .buildkite ├── commands │ ├── build-prototype.sh │ ├── checkout-release-branch.sh │ ├── release-upload.sh │ ├── release-create-on-github.sh │ └── release-build.sh ├── shared-pipeline-vars └── release-pipelines │ ├── publish-release.yml │ ├── finalize-release.yml │ └── start-code-freeze.yml ├── Gemfile ├── tools ├── exported-language-codes.csv └── release-notes-language-codes.csv ├── .rubocop.yml ├── proguard-project.txt └── .configure /.java-version: -------------------------------------------------------------------------------- 1 | 21.0 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /Simplenote/.gitignore: -------------------------------------------------------------------------------- 1 | build/* -------------------------------------------------------------------------------- /Wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PasscodeLock/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Wear/src/main/res/values-zh: -------------------------------------------------------------------------------- 1 | values-zh-rCN -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .configure-files/*.enc binary 2 | -------------------------------------------------------------------------------- /Simplenote/src/main/res/values-zh: -------------------------------------------------------------------------------- 1 | values-zh-rCN -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/changelogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | Simplenote 2 | -------------------------------------------------------------------------------- /version.properties: -------------------------------------------------------------------------------- 1 | versionName=2.37 2 | versionCode=184 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 记录笔记、创建任务清单、捕捉想法等。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 做筆記、建立待辦事項清單、記下想法等等。 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':Simplenote', ':Wear' 2 | include ':PasscodeLock' 3 | -------------------------------------------------------------------------------- /fastlane/env.example: -------------------------------------------------------------------------------- 1 | GITHUB_TOKEN= 2 | FASTLANE_SKIP_UPDATE_CHECK=true 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- 1 | 메모하고, 할 일 목록을 만들고, 아이디어를 포착하는 등의 작업을 수행하세요. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- 1 | メモしたり、ToDo リストを作ったり、アイデアを書き留めたり、いろいろな使い方ができます。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Take notes, create to-do lists, capture ideas, and more. -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/short_description.txt: -------------------------------------------------------------------------------- 1 | לרשום פתקים, ליצור רשימת משימות, לתעד רעיונות ועוד. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/short_description.txt: -------------------------------------------------------------------------------- 1 | يمكنك تدوين الملحوظات، وإنشاء قوائم المهام، وتسجيل الأفكار، والمزيد. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Toma notas, crea listas de tareas, captura ideas y mucho más. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/short_description.txt: -------------------------------------------------------------------------------- 1 | Tulis catatan, buat daftar tugas, kembangan ide, dan banyak lagi. 2 | -------------------------------------------------------------------------------- /metadata/ic_launcher_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/metadata/ic_launcher_web.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Erstelle Notizen, schreibe Aufgabenlisten, notiere Ideen und mehr. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- 1 | Maak aantekeningen, stel takenlijsten op, leg ideeën vast en meer. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Faça anotações, crie listas de tarefas, capte ideias e muito mais. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- 1 | Делайте заметки, создавайте списки дел, записывайте идеи и так далее. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- 1 | Gör anteckningar, skapa att-göra-listor, skriv ner idéer med mera. 2 | -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | BUNDLE_SPECIFIC_PLATFORM: "false" 4 | BUNDLE_FORCE_RUBY_PLATFORM: "true" 5 | -------------------------------------------------------------------------------- /.configure-files/release.jks.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/.configure-files/release.jks.enc -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.configure-files/automattic.jks.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/.configure-files/automattic.jks.enc -------------------------------------------------------------------------------- /.configure-files/debug.keystore.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/.configure-files/debug.keystore.enc -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/release_notes.txt: -------------------------------------------------------------------------------- 1 | * Added support for logging in with magic links for a passwordless experience. 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- 1 | Prendi appunti, crea elenchi di cose da fare, acquisisci idee e molto altro. 2 | -------------------------------------------------------------------------------- /.configure-files/debug_a8c.keystore.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/.configure-files/debug_a8c.keystore.enc -------------------------------------------------------------------------------- /.configure-files/gradle.properties.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/.configure-files/gradle.properties.enc -------------------------------------------------------------------------------- /.configure-files/sentry.properties.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/.configure-files/sentry.properties.enc -------------------------------------------------------------------------------- /Simplenote/src/main/assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /Wear/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Wear/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Wear/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Wear/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Wear/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Wear/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Wear/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Wear/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.configure-files/google-upload-credentials.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/.configure-files/google-upload-credentials.json.enc -------------------------------------------------------------------------------- /Simplenote/src/main/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Simplenote/src/main/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Simplenote/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/debug/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/debug/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/debug/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/debug/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/debug/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/debug/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/debug/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/debug/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/drawable-hdpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/drawable-hdpi/logo_login.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/drawable-mdpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/drawable-mdpi/logo_login.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/drawable-xhdpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/drawable-xhdpi/logo_login.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/drawable-xxhdpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/drawable-xxhdpi/logo_login.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/debug/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/debug/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Simplenote/src/main/java/com/automattic/simplenote/models/TagItem.kt: -------------------------------------------------------------------------------- 1 | package com.automattic.simplenote.models 2 | 3 | data class TagItem(val tag: Tag, val noteCount: Int) 4 | -------------------------------------------------------------------------------- /Simplenote/src/main/res/drawable-xxxhdpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/drawable-xxxhdpi/logo_login.png -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/values-xlarge/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | 7 | -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/values-sw600dp/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | 7 | -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | 6 | 7 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/changelogs/default.txt: -------------------------------------------------------------------------------- 1 | 2.37: 2 | 我們已經修復了一些煩人的錯誤,讓Simplenote變得比以往更流暢!這次更新修正了在升級到版本2.36後打開設定時的崩潰問題,以及影響使用Android 16的使用者在最新安全補丁和主畫面小工具上的問題。現在就更新,享受更穩定、可靠的筆記體驗。 3 | -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-hdpi/ic_backspace_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-hdpi/ic_backspace_white_24dp.png -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-hdpi/ic_fingerprint_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-hdpi/ic_fingerprint_white_24dp.png -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-mdpi/ic_backspace_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-mdpi/ic_backspace_white_24dp.png -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-mdpi/ic_fingerprint_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-mdpi/ic_fingerprint_white_24dp.png -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-xhdpi/ic_backspace_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-xhdpi/ic_backspace_white_24dp.png -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-xxhdpi/ic_backspace_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-xxhdpi/ic_backspace_white_24dp.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/drawable-nodpi/note_widget_preview_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/drawable-nodpi/note_widget_preview_dark.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/drawable-nodpi/note_widget_preview_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/drawable-nodpi/note_widget_preview_light.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/default.txt: -------------------------------------------------------------------------------- 1 | 2.37: 2 | 我们解决了一些烦人的 bug,让 Simplenote 比以往更流畅!此更新修复了升级到 2.36 版后打开 "设置 "时崩溃的问题,以及使用最新安全补丁和主屏幕 widget 的 Android 16 用户受到影响的问题。立即更新,获得更稳定、更可靠的记事体验。 3 | -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-xhdpi/ic_fingerprint_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-xhdpi/ic_fingerprint_white_24dp.png -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-xxhdpi/ic_fingerprint_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-xxhdpi/ic_fingerprint_white_24dp.png -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-xxxhdpi/ic_backspace_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-xxxhdpi/ic_backspace_white_24dp.png -------------------------------------------------------------------------------- /PasscodeLock/src/main/res/drawable-xxxhdpi/ic_fingerprint_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/PasscodeLock/src/main/res/drawable-xxxhdpi/ic_fingerprint_white_24dp.png -------------------------------------------------------------------------------- /Simplenote/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simplenote (Debug) 4 | 5 | -------------------------------------------------------------------------------- /Simplenote/src/main/res/drawable-nodpi/note_list_widget_preview_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/drawable-nodpi/note_list_widget_preview_dark.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/drawable-nodpi/note_list_widget_preview_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/simplenote-android/HEAD/Simplenote/src/main/res/drawable-nodpi/note_list_widget_preview_light.png -------------------------------------------------------------------------------- /Simplenote/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |