├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── LICENSE.txt ├── build.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ └── native-audio-jni.c │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── paddlesandbugs │ │ │ └── dahdidahdit │ │ │ ├── Config.java │ │ │ ├── Const.java │ │ │ ├── Distribution.java │ │ │ ├── MorseCode.java │ │ │ ├── Utils.java │ │ │ ├── base │ │ │ ├── AbstractGradingActivity.java │ │ │ ├── AbstractLearningStrategy.java │ │ │ ├── AbstractNavigationActivity.java │ │ │ ├── AbstractShowTextActivity.java │ │ │ ├── AbstractTrainerActivity.java │ │ │ ├── BootCompletedReceiver.java │ │ │ ├── CompressedIntSet.java │ │ │ ├── DefaultLearningStrategy.java │ │ │ ├── Equivalence.java │ │ │ ├── GradingStrategy.java │ │ │ ├── IntroScreen.java │ │ │ ├── LearningEase.java │ │ │ ├── LearningFader.java │ │ │ ├── LearningProgress.java │ │ │ ├── LearningStrategy.java │ │ │ ├── LearningValue.java │ │ │ ├── MainActivity.java │ │ │ ├── ReleaseNotes.java │ │ │ ├── Tooltip.java │ │ │ └── VersionTracking.java │ │ │ ├── brasspound │ │ │ ├── AbstractKeyer.java │ │ │ ├── AbstractMorseInput.java │ │ │ ├── AbstractPaddleInputActivity.java │ │ │ ├── AbstractPaddleKeyer.java │ │ │ ├── AudioHelper.java │ │ │ ├── BrassPoundActivity.java │ │ │ ├── ButtonSensor.java │ │ │ ├── Cluster.java │ │ │ ├── Decoder.java │ │ │ ├── HardwareKeySensor.java │ │ │ ├── HardwarePaddle.java │ │ │ ├── IambicAKeyer.java │ │ │ ├── IambicBKeyer.java │ │ │ ├── Keyer.java │ │ │ ├── OnScreenPaddle.java │ │ │ ├── PaddleMorseInput.java │ │ │ ├── SendingLearningStrategy.java │ │ │ ├── SendingTrainerActivity.java │ │ │ ├── SendingTrainerIntro.java │ │ │ ├── SpeedSensingDecoder.java │ │ │ ├── StaticDecoder.java │ │ │ ├── StraightKeyKeyer.java │ │ │ └── StraightMorseInput.java │ │ │ ├── copytrainer │ │ │ ├── CopyTrainer.java │ │ │ ├── CopyTrainerActivity.java │ │ │ ├── CopyTrainerIntro.java │ │ │ ├── CopyTrainerLearningStrategy.java │ │ │ ├── CopyTrainerListLearningStrategy.java │ │ │ ├── CopyTrainerParams.java │ │ │ ├── CopyTrainerParamsFaded.java │ │ │ ├── FindTheCharActivity.java │ │ │ ├── FindTheKMActivity.java │ │ │ ├── GradingActivity.java │ │ │ ├── GraffitiCheatSheetActivity.java │ │ │ ├── KochSequence.java │ │ │ ├── LearnNewCharActivity.java │ │ │ ├── LearningSequence.java │ │ │ ├── SillySequence.java │ │ │ ├── TextGeneratorFactory.java │ │ │ └── WordKochSequence.java │ │ │ ├── headcopy │ │ │ ├── GradingActivity.java │ │ │ ├── HeadcopyActivity.java │ │ │ ├── HeadcopyIntro.java │ │ │ ├── HeadcopyLearningStrategy.java │ │ │ ├── HeadcopyParams.java │ │ │ ├── HeadcopyParamsFaded.java │ │ │ └── HeadcopyTrainer.java │ │ │ ├── learnqcodes │ │ │ ├── DataPoint.java │ │ │ ├── Fact.java │ │ │ ├── FactDao.java │ │ │ ├── FactDatabase.java │ │ │ ├── GradingActivity.java │ │ │ ├── LearnModel.java │ │ │ ├── LearnQCodesActivity.java │ │ │ ├── LearnQCodesIntro.java │ │ │ ├── LearnQCodesTrainer.java │ │ │ └── QCodesLearningStrategy.java │ │ │ ├── network │ │ │ ├── Address.java │ │ │ ├── MOPPClientActivity.java │ │ │ ├── MorseTennis.java │ │ │ ├── NetworkAddActivity.java │ │ │ ├── NetworkConfig.java │ │ │ ├── NetworkConfigDao.java │ │ │ ├── NetworkConfigDatabase.java │ │ │ ├── NetworkListActivity.java │ │ │ └── mopp │ │ │ │ ├── BitInputStream.java │ │ │ │ ├── BitOutputStream.java │ │ │ │ ├── MOPPClient.java │ │ │ │ ├── MOPPParser.java │ │ │ │ └── Packet.java │ │ │ ├── onboarding │ │ │ ├── OnboardingActivity.java │ │ │ ├── OnboardingUtils.java │ │ │ ├── UsertypeScreen.java │ │ │ ├── UsertypeScreenAdvanced.java │ │ │ ├── UsertypeScreenBeginner.java │ │ │ ├── UsertypeScreenIntermediate.java │ │ │ └── UsertypeScreenPro.java │ │ │ ├── params │ │ │ ├── AbstractFadedParameters.java │ │ │ ├── FadedParameters.java │ │ │ ├── Field.java │ │ │ ├── GeneralFadedParameters.java │ │ │ ├── GeneralParameters.java │ │ │ ├── ParameterFader.java │ │ │ ├── ParameterMap.java │ │ │ └── Parameters.java │ │ │ ├── selfdefined │ │ │ ├── GradingActivity.java │ │ │ ├── NullLearningStrategy.java │ │ │ ├── SelfdefinedActivity.java │ │ │ ├── SelfdefinedIntro.java │ │ │ ├── SelfdefinedParams.java │ │ │ ├── SelfdefinedParamsFaded.java │ │ │ └── SelfdefinedTrainer.java │ │ │ ├── settings │ │ │ ├── AbstractCopyTrainerFadedFragment.java │ │ │ ├── AbstractFadedFragment.java │ │ │ ├── AbstractFragmentCallingFragment.java │ │ │ ├── ButtonPreference.java │ │ │ ├── CopyTrainerFragment.java │ │ │ ├── CopyTrainerFragmentCurrent.java │ │ │ ├── CopyTrainerFragmentTo.java │ │ │ ├── GlobalFragment.java │ │ │ ├── HeadcopyFragment.java │ │ │ ├── HeadcopyFragmentCurrent.java │ │ │ ├── HeadcopyFragmentTo.java │ │ │ ├── HeaderFragment.java │ │ │ ├── KeyCodesFragment.java │ │ │ ├── LearningStrategyFragment.java │ │ │ ├── MorseDemoPlayer.java │ │ │ ├── MorseInputFragment.java │ │ │ ├── NumericPreference.java │ │ │ ├── RSSProviderChangeListener.java │ │ │ ├── ReceivedFile.java │ │ │ ├── SelfdefinedFragment.java │ │ │ ├── SelfdefinedFragmentCurrent.java │ │ │ ├── SendingTrainerFragment.java │ │ │ ├── SettingsActivity.java │ │ │ ├── SettingsUtils.java │ │ │ └── WorkaroundsFragment.java │ │ │ ├── sound │ │ │ ├── AtmosphereModel.java │ │ │ ├── ChirpSoundGenerator.java │ │ │ ├── InstantMorsePlayer.java │ │ │ ├── IntSoundGenerator.java │ │ │ ├── MorseGenerator.java │ │ │ ├── MorsePlayer.java │ │ │ ├── MorsePlayerI.java │ │ │ ├── MorseTiming.java │ │ │ ├── PerfectSignGenerator.java │ │ │ ├── QLFSignGenerator.java │ │ │ ├── QRMSampleGenerator.java │ │ │ ├── QRNSampleGenerator.java │ │ │ ├── QSBGenerator.java │ │ │ ├── SampleGenerator.java │ │ │ ├── SignGenerator.java │ │ │ ├── SinusSampleGenerator.java │ │ │ ├── SoundGenerator.java │ │ │ ├── StaticSampleGenerator.java │ │ │ └── TextMorseGenerator.java │ │ │ ├── tennis │ │ │ ├── InitialMessageEnvelope.java │ │ │ ├── TennisMachine.java │ │ │ ├── WordBuffer.java │ │ │ └── states.plantuml │ │ │ ├── text │ │ │ ├── AbstractTextGenerator.java │ │ │ ├── AbstractWordTextGenerator.java │ │ │ ├── AprilFoolsGenerator.java │ │ │ ├── CallsignGenerator.java │ │ │ ├── CompoundReader.java │ │ │ ├── CompoundTextGenerator.java │ │ │ ├── CountedWordsTextGenerator.java │ │ │ ├── CustomTextGenerator.java │ │ │ ├── EmptyTextGenerator.java │ │ │ ├── GarbageWordGenerator.java │ │ │ ├── ListRandomWordTextGenerator.java │ │ │ ├── LoadedTextGenerator.java │ │ │ ├── NaturalLanguageTextGenerator.java │ │ │ ├── PeekAheadTextGenerator.java │ │ │ ├── PrefixExploder.java │ │ │ ├── PrefsBasedTextGeneratorFactory.java │ │ │ ├── QCodeTextGenerator.java │ │ │ ├── QSOTextGenerator.java │ │ │ ├── RandomSyllableGenerator.java │ │ │ ├── RandomTextGenerator.java │ │ │ ├── RandomWordTextGenerator.java │ │ │ ├── RssTextGenerator.java │ │ │ ├── StaticTextGenerator.java │ │ │ ├── Stopwords.java │ │ │ ├── TextGenerator.java │ │ │ ├── VvvKaArDecorator.java │ │ │ ├── WeightedCompoundTextGenerator.java │ │ │ └── WordIterator.java │ │ │ └── widget │ │ │ ├── DateChangedReceiver.java │ │ │ ├── DaysPracticedWidget1x1.java │ │ │ ├── DaysPracticedWidget2x2.java │ │ │ └── Widgets.java │ └── res │ │ ├── drawable-anydpi │ │ ├── ic_prefs_copytrainer.xml │ │ ├── ic_prefs_global.xml │ │ ├── ic_prefs_selfdefined.xml │ │ └── thinborder.xml │ │ ├── drawable-hdpi │ │ ├── ic_prefs_copytrainer.png │ │ ├── ic_prefs_global.png │ │ └── ic_prefs_selfdefined.png │ │ ├── drawable-mdpi │ │ ├── ic_prefs_copytrainer.png │ │ ├── ic_prefs_global.png │ │ └── ic_prefs_selfdefined.png │ │ ├── drawable-nodpi │ │ ├── widget_medium.png │ │ └── widget_small.png │ │ ├── drawable-xhdpi │ │ ├── ic_prefs_copytrainer.png │ │ ├── ic_prefs_global.png │ │ └── ic_prefs_selfdefined.png │ │ ├── drawable-xxhdpi │ │ ├── ic_prefs_copytrainer.png │ │ ├── ic_prefs_global.png │ │ └── ic_prefs_selfdefined.png │ │ ├── drawable │ │ ├── baseline_visibility_24.xml │ │ ├── baseline_visibility_off_24.xml │ │ ├── ic_baseline_post_add_24.xml │ │ ├── ic_frownie.xml │ │ ├── ic_icon3_small_padding.xml │ │ ├── ic_intro_screen_bullet.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_outline_pause_circle_24.xml │ │ ├── ic_outline_play_circle_24.xml │ │ ├── ic_outline_stop_circle_24.xml │ │ ├── ic_paddle.xml │ │ ├── ic_slash.xml │ │ ├── ic_smiley.xml │ │ ├── steno_0.xml │ │ ├── steno_1.xml │ │ ├── steno_2.xml │ │ ├── steno_3.xml │ │ ├── steno_4.xml │ │ ├── steno_5.xml │ │ ├── steno_6.xml │ │ ├── steno_7.xml │ │ ├── steno_8.xml │ │ ├── steno_9.xml │ │ ├── steno_a.xml │ │ ├── steno_b.xml │ │ ├── steno_c.xml │ │ ├── steno_comma.xml │ │ ├── steno_d.xml │ │ ├── steno_dash.xml │ │ ├── steno_dot.xml │ │ ├── steno_e.xml │ │ ├── steno_equal.xml │ │ ├── steno_f.xml │ │ ├── steno_g.xml │ │ ├── steno_h.xml │ │ ├── steno_i.xml │ │ ├── steno_j.xml │ │ ├── steno_k.xml │ │ ├── steno_l.xml │ │ ├── steno_m.xml │ │ ├── steno_n.xml │ │ ├── steno_o.xml │ │ ├── steno_p.xml │ │ ├── steno_q.xml │ │ ├── steno_questionmark.xml │ │ ├── steno_r.xml │ │ ├── steno_s.xml │ │ ├── steno_slash.xml │ │ ├── steno_t.xml │ │ ├── steno_u.xml │ │ ├── steno_v.xml │ │ ├── steno_w.xml │ │ ├── steno_x.xml │ │ ├── steno_y.xml │ │ └── steno_z.xml │ │ ├── layout-night │ │ └── nav_header_main.xml │ │ ├── layout │ │ ├── activity_brass_pound.xml │ │ ├── activity_copy_grading.xml │ │ ├── activity_copy_trainer.xml │ │ ├── activity_find_new_char.xml │ │ ├── activity_graffiti_cheat_sheet.xml │ │ ├── activity_graffiti_cheat_sheet_card.xml │ │ ├── activity_headcopy_grading.xml │ │ ├── activity_learn_new_char.xml │ │ ├── activity_main.xml │ │ ├── activity_network_add.xml │ │ ├── activity_network_list.xml │ │ ├── activity_network_list_item.xml │ │ ├── activity_selfdefined_grading.xml │ │ ├── activity_sending_trainer.xml │ │ ├── button_preference.xml │ │ ├── days_practiced_widget_1x1.xml │ │ ├── days_practiced_widget_2x2.xml │ │ ├── intro_screen.xml │ │ ├── large_spinner_label.xml │ │ ├── morse_tennis_score.xml │ │ ├── morse_tennis_status.xml │ │ ├── nav_header_main.xml │ │ ├── navigation_view.xml │ │ ├── onscreen_paddle.xml │ │ └── settings_activity.xml │ │ ├── menu │ │ ├── menu_copytrainer.xml │ │ ├── menu_learnqcodes.xml │ │ ├── menu_main.xml │ │ ├── menu_moppclient.xml │ │ ├── nav_bottom.xml │ │ └── nav_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw-de-rDE │ │ ├── qcodecards │ │ ├── release_notes │ │ └── stopwords │ │ ├── raw │ │ ├── headcopy_words_2000 │ │ ├── headcopy_words_manual │ │ ├── itu_prefixes │ │ ├── qcodecards │ │ ├── qcodes │ │ ├── release_notes │ │ ├── stopwords │ │ └── wordlist │ │ ├── values-de-rDE │ │ └── strings.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── defaults.xml │ │ ├── dimens.xml │ │ ├── helpurls.xml │ │ ├── ids.xml │ │ ├── settings-arrays.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── themes.xml │ │ └── type.xml │ │ └── xml │ │ ├── days_practiced_widget_1x1_info.xml │ │ ├── days_practiced_widget_2x2_info.xml │ │ ├── prefs_copytrainer_current.xml │ │ ├── prefs_copytrainer_main.xml │ │ ├── prefs_copytrainer_to.xml │ │ ├── prefs_global.xml │ │ ├── prefs_headcopy_current.xml │ │ ├── prefs_headcopy_main.xml │ │ ├── prefs_headcopy_to.xml │ │ ├── prefs_key_codes.xml │ │ ├── prefs_learning_strategy.xml │ │ ├── prefs_morse_input.xml │ │ ├── prefs_root.xml │ │ ├── prefs_selfdefined_current.xml │ │ ├── prefs_selfdefined_main.xml │ │ ├── prefs_sendingtrainer_main.xml │ │ └── prefs_workarounds.xml │ └── test │ ├── java │ ├── android │ │ └── util │ │ │ └── Log.java │ └── com │ │ └── paddlesandbugs │ │ └── dahdidahdit │ │ ├── DistributionTest.java │ │ ├── KochTrainerTest.java │ │ ├── MorseCodeTest.java │ │ ├── TestingUtils.java │ │ ├── UtilsTest.java │ │ ├── base │ │ ├── CompressedIntSetTest.java │ │ ├── ConstantDistributionFunctionTest.java │ │ ├── DefaultLearningStrategyTest.java │ │ ├── EquivalenceTest.java │ │ ├── FrequencyDistributionFunctionTest.java │ │ ├── LearningProgressTest.java │ │ └── ReleaseNotesTest.java │ │ ├── brasspound │ │ ├── ClusterTest.java │ │ └── SpeedSensingDecoderTest.java │ │ ├── copytrainer │ │ ├── CopyTrainerListLearningStrategyTest.java │ │ ├── CopyTrainerParamsTest.java │ │ └── LearningSequenceTest.java │ │ ├── headcopy │ │ └── HeadcopyLearningStrategyTest.java │ │ ├── learnqcodes │ │ ├── LearnModelTest.java │ │ └── QCodesLearningStrategyTest.java │ │ ├── network │ │ └── mopp │ │ │ ├── BitInputStreamTest.java │ │ │ ├── BitOutputStreamTest.java │ │ │ └── MOPPParserTest.java │ │ ├── params │ │ ├── FieldTest.java │ │ ├── ParameterFaderTest.java │ │ └── ParameterMapTest.java │ │ ├── sound │ │ ├── MorsePlayerTest.java │ │ ├── MorseTimingTest.java │ │ └── SoundGeneratorTest.java │ │ ├── tennis │ │ ├── MorseTennisTest.java │ │ ├── TennisMachineTest.java │ │ └── WordBufferTest.java │ │ ├── text │ │ ├── AbstractTextGeneratorTest.java │ │ ├── AprilFoolsGeneratorTest.java │ │ ├── CallsignGeneratorTest.java │ │ ├── CompoundReaderTest.java │ │ ├── CompoundTextGeneratorTest.java │ │ ├── CountedWordsTextGeneratorTest.java │ │ ├── GarbageWordTextGeneratorTest.java │ │ ├── ListRandomWordTextGeneratorTest.java │ │ ├── NaturalLanguageTextGeneratorTest.java │ │ ├── PeekAheadTextGeneratorTest.java │ │ ├── PrefixExploderTest.java │ │ ├── QSOTextGeneratorTest.java │ │ ├── RandomSyllableGeneratorTest.java │ │ ├── RandomTextGeneratorTest.java │ │ ├── RandomWordTextGeneratorTest.java │ │ ├── RssTextGeneratorTest.java │ │ ├── StaticTextGeneratorTest.java │ │ ├── TextGeneratorTest.java │ │ ├── TextTestUtils.java │ │ ├── VvvKaArDecoratorTest.java │ │ └── WeightedCompoundTextGeneratorTest.java │ │ └── widget │ │ └── WidgetsTest.java │ └── res │ └── raw │ └── release_notes_test ├── external └── graphics │ ├── Steno │ ├── 0.svg │ ├── 1.svg │ ├── 2.svg │ ├── 3.svg │ ├── 4.svg │ ├── 5.svg │ ├── 6.svg │ ├── 7.svg │ ├── 8.svg │ ├── 9.svg │ ├── A.svg │ ├── B.svg │ ├── C.svg │ ├── D.svg │ ├── E.svg │ ├── F.svg │ ├── G.svg │ ├── H.svg │ ├── I.svg │ ├── J.svg │ ├── K.svg │ ├── L.svg │ ├── M.svg │ ├── N.svg │ ├── O.svg │ ├── P.svg │ ├── Q.svg │ ├── R.svg │ ├── S.svg │ ├── T.svg │ ├── U.svg │ ├── V.svg │ ├── W.svg │ ├── X.svg │ ├── Y.svg │ ├── Z.svg │ ├── z_comma.svg │ ├── z_dash.svg │ ├── z_dot.svg │ ├── z_eql.svg │ ├── z_qma.svg │ └── z_slash.svg │ ├── back.svg │ ├── feature-graphic.png │ ├── feature-graphic.svg │ ├── frownie.svg │ ├── icon.svg │ ├── icon3.svg │ ├── icon3_small_padding.svg │ ├── paddle.svg │ ├── playstore-icon.png │ ├── playstore-icon.svg │ ├── slash.svg │ └── smiley.svg ├── fastlane ├── Appfile ├── Fastfile └── metadata │ └── android │ ├── de │ ├── changelogs │ │ ├── 1110201.txt │ │ ├── 1110301.txt │ │ ├── 1120001.txt │ │ ├── 1130001.txt │ │ ├── 1130101.txt │ │ ├── 1140001.txt │ │ ├── 1140101.txt │ │ └── 1150001.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ ├── short_description.txt │ └── title.txt │ └── en-US │ ├── changelogs │ ├── 1110201.txt │ ├── 1110301.txt │ ├── 1120001.txt │ ├── 1130001.txt │ ├── 1130101.txt │ ├── 1140001.txt │ ├── 1140101.txt │ └── 1150001.txt │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | liberapay: tfidf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/LICENSE.txt -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/native-audio-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/cpp/native-audio-jni.c -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/Config.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/Const.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/Const.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/Distribution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/Distribution.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/MorseCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/MorseCode.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/Utils.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractGradingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractGradingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractLearningStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractLearningStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractNavigationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractNavigationActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractShowTextActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractShowTextActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractTrainerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/AbstractTrainerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/BootCompletedReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/BootCompletedReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/CompressedIntSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/CompressedIntSet.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/DefaultLearningStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/DefaultLearningStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/Equivalence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/Equivalence.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/GradingStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/GradingStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/IntroScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/IntroScreen.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningEase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningEase.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningFader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningFader.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningProgress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningProgress.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/LearningValue.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/ReleaseNotes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/ReleaseNotes.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/Tooltip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/Tooltip.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/base/VersionTracking.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/base/VersionTracking.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AbstractKeyer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AbstractKeyer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AbstractMorseInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AbstractMorseInput.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AbstractPaddleInputActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AbstractPaddleInputActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AbstractPaddleKeyer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AbstractPaddleKeyer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AudioHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/AudioHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/BrassPoundActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/BrassPoundActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/ButtonSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/ButtonSensor.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/Cluster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/Cluster.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/Decoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/Decoder.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/HardwareKeySensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/HardwareKeySensor.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/HardwarePaddle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/HardwarePaddle.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/IambicAKeyer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/IambicAKeyer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/IambicBKeyer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/IambicBKeyer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/Keyer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/Keyer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/OnScreenPaddle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/OnScreenPaddle.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/PaddleMorseInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/PaddleMorseInput.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/SendingLearningStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/SendingLearningStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/SendingTrainerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/SendingTrainerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/SendingTrainerIntro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/SendingTrainerIntro.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/SpeedSensingDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/SpeedSensingDecoder.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/StaticDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/StaticDecoder.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/StraightKeyKeyer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/StraightKeyKeyer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/StraightMorseInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/brasspound/StraightMorseInput.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerIntro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerIntro.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerLearningStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerLearningStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerListLearningStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerListLearningStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerParams.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerParamsFaded.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerParamsFaded.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/FindTheCharActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/FindTheCharActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/FindTheKMActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/FindTheKMActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/GradingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/GradingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/GraffitiCheatSheetActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/GraffitiCheatSheetActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/KochSequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/KochSequence.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/LearnNewCharActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/LearnNewCharActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/LearningSequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/LearningSequence.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/SillySequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/SillySequence.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/TextGeneratorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/TextGeneratorFactory.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/WordKochSequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/copytrainer/WordKochSequence.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/GradingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/GradingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyIntro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyIntro.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyLearningStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyLearningStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyParams.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyParamsFaded.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyParamsFaded.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyTrainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyTrainer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/DataPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/DataPoint.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/Fact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/Fact.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/FactDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/FactDao.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/FactDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/FactDatabase.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/GradingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/GradingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnQCodesActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnQCodesActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnQCodesIntro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnQCodesIntro.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnQCodesTrainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnQCodesTrainer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/QCodesLearningStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/learnqcodes/QCodesLearningStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/Address.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/Address.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/MOPPClientActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/MOPPClientActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/MorseTennis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/MorseTennis.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkAddActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkAddActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkConfig.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkConfigDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkConfigDao.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkConfigDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkConfigDatabase.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/NetworkListActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/BitInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/BitInputStream.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/BitOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/BitOutputStream.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/MOPPClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/MOPPClient.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/MOPPParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/MOPPParser.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/Packet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/network/mopp/Packet.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/OnboardingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/OnboardingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/OnboardingUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/OnboardingUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreen.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreenAdvanced.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreenAdvanced.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreenBeginner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreenBeginner.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreenIntermediate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreenIntermediate.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreenPro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/onboarding/UsertypeScreenPro.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/params/AbstractFadedParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/params/AbstractFadedParameters.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/params/FadedParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/params/FadedParameters.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/params/Field.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/params/Field.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/params/GeneralFadedParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/params/GeneralFadedParameters.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/params/GeneralParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/params/GeneralParameters.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/params/ParameterFader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/params/ParameterFader.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/params/ParameterMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/params/ParameterMap.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/params/Parameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/params/Parameters.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/GradingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/GradingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/NullLearningStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/NullLearningStrategy.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedIntro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedIntro.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedParams.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedParamsFaded.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedParamsFaded.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedTrainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/selfdefined/SelfdefinedTrainer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/AbstractCopyTrainerFadedFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/AbstractCopyTrainerFadedFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/AbstractFadedFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/AbstractFadedFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/AbstractFragmentCallingFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/AbstractFragmentCallingFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/ButtonPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/ButtonPreference.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/CopyTrainerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/CopyTrainerFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/CopyTrainerFragmentCurrent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/CopyTrainerFragmentCurrent.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/CopyTrainerFragmentTo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/CopyTrainerFragmentTo.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/GlobalFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/GlobalFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/HeadcopyFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/HeadcopyFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/HeadcopyFragmentCurrent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/HeadcopyFragmentCurrent.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/HeadcopyFragmentTo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/HeadcopyFragmentTo.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/HeaderFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/HeaderFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/KeyCodesFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/KeyCodesFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/LearningStrategyFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/LearningStrategyFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/MorseDemoPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/MorseDemoPlayer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/MorseInputFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/MorseInputFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/NumericPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/NumericPreference.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/RSSProviderChangeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/RSSProviderChangeListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/ReceivedFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/ReceivedFile.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SelfdefinedFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SelfdefinedFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SelfdefinedFragmentCurrent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SelfdefinedFragmentCurrent.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SendingTrainerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SendingTrainerFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SettingsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/SettingsUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/WorkaroundsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/settings/WorkaroundsFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/AtmosphereModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/AtmosphereModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/ChirpSoundGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/ChirpSoundGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/InstantMorsePlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/InstantMorsePlayer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/IntSoundGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/IntSoundGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/MorseGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/MorseGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/MorsePlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/MorsePlayer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/MorsePlayerI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/MorsePlayerI.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/MorseTiming.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/MorseTiming.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/PerfectSignGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/PerfectSignGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/QLFSignGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/QLFSignGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/QRMSampleGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/QRMSampleGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/QRNSampleGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/QRNSampleGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/QSBGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/QSBGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/SampleGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/SampleGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/SignGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/SignGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/SinusSampleGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/SinusSampleGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/SoundGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/SoundGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/StaticSampleGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/StaticSampleGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/TextMorseGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/sound/TextMorseGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/tennis/InitialMessageEnvelope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/tennis/InitialMessageEnvelope.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/tennis/TennisMachine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/tennis/TennisMachine.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/tennis/WordBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/tennis/WordBuffer.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/tennis/states.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/tennis/states.plantuml -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/AbstractTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/AbstractTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/AbstractWordTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/AbstractWordTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/AprilFoolsGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/AprilFoolsGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CallsignGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CallsignGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CompoundReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CompoundReader.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CompoundTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CompoundTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CountedWordsTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CountedWordsTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CustomTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/CustomTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/EmptyTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/EmptyTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/GarbageWordGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/GarbageWordGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/ListRandomWordTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/ListRandomWordTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/LoadedTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/LoadedTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/NaturalLanguageTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/NaturalLanguageTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/PeekAheadTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/PeekAheadTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/PrefixExploder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/PrefixExploder.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/PrefsBasedTextGeneratorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/PrefsBasedTextGeneratorFactory.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/QCodeTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/QCodeTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/QSOTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/QSOTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/RandomSyllableGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/RandomSyllableGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/RandomTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/RandomTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/RandomWordTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/RandomWordTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/RssTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/RssTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/StaticTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/StaticTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/Stopwords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/Stopwords.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/TextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/TextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/VvvKaArDecorator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/VvvKaArDecorator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/WeightedCompoundTextGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/WeightedCompoundTextGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/text/WordIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/text/WordIterator.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/widget/DateChangedReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/widget/DateChangedReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/widget/DaysPracticedWidget1x1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/widget/DaysPracticedWidget1x1.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/widget/DaysPracticedWidget2x2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/widget/DaysPracticedWidget2x2.java -------------------------------------------------------------------------------- /app/src/main/java/com/paddlesandbugs/dahdidahdit/widget/Widgets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/java/com/paddlesandbugs/dahdidahdit/widget/Widgets.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_prefs_copytrainer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-anydpi/ic_prefs_copytrainer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_prefs_global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-anydpi/ic_prefs_global.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_prefs_selfdefined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-anydpi/ic_prefs_selfdefined.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/thinborder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-anydpi/thinborder.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_prefs_copytrainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-hdpi/ic_prefs_copytrainer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_prefs_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-hdpi/ic_prefs_global.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_prefs_selfdefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-hdpi/ic_prefs_selfdefined.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_prefs_copytrainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-mdpi/ic_prefs_copytrainer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_prefs_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-mdpi/ic_prefs_global.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_prefs_selfdefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-mdpi/ic_prefs_selfdefined.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-nodpi/widget_medium.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-nodpi/widget_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_prefs_copytrainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-xhdpi/ic_prefs_copytrainer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_prefs_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-xhdpi/ic_prefs_global.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_prefs_selfdefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-xhdpi/ic_prefs_selfdefined.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_prefs_copytrainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-xxhdpi/ic_prefs_copytrainer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_prefs_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-xxhdpi/ic_prefs_global.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_prefs_selfdefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable-xxhdpi/ic_prefs_selfdefined.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_visibility_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/baseline_visibility_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_visibility_off_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/baseline_visibility_off_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_post_add_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_baseline_post_add_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_frownie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_frownie.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon3_small_padding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_icon3_small_padding.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_intro_screen_bullet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_intro_screen_bullet.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_outline_pause_circle_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_outline_pause_circle_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_outline_play_circle_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_outline_play_circle_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_outline_stop_circle_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_outline_stop_circle_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_paddle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_paddle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_slash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_slash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_smiley.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/ic_smiley.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_0.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_4.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_5.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_6.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_7.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_8.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_9.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_a.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_b.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_c.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_comma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_comma.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_d.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_dash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_dash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_dot.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_e.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_equal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_equal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_f.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_g.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_h.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_i.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_j.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_k.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_l.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_m.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_m.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_n.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_o.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_o.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_p.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_q.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_q.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_questionmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_questionmark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_r.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_r.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_s.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_slash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_slash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_t.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_u.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_u.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_v.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_v.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_w.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_x.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_y.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/steno_z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/drawable/steno_z.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-night/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout-night/nav_header_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_brass_pound.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_brass_pound.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_copy_grading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_copy_grading.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_copy_trainer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_copy_trainer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_find_new_char.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_find_new_char.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_graffiti_cheat_sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_graffiti_cheat_sheet.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_graffiti_cheat_sheet_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_graffiti_cheat_sheet_card.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_headcopy_grading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_headcopy_grading.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_learn_new_char.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_learn_new_char.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_network_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_network_add.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_network_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_network_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_network_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_network_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_selfdefined_grading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_selfdefined_grading.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_sending_trainer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/activity_sending_trainer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/button_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/button_preference.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/days_practiced_widget_1x1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/days_practiced_widget_1x1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/days_practiced_widget_2x2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/days_practiced_widget_2x2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/intro_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/intro_screen.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/large_spinner_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/large_spinner_label.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/morse_tennis_score.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/morse_tennis_score.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/morse_tennis_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/morse_tennis_status.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/nav_header_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/navigation_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/navigation_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/onscreen_paddle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/onscreen_paddle.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/settings_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/layout/settings_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_copytrainer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/menu/menu_copytrainer.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_learnqcodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/menu/menu_learnqcodes.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_moppclient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/menu/menu_moppclient.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/nav_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/menu/nav_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/nav_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/menu/nav_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw-de-rDE/qcodecards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw-de-rDE/qcodecards -------------------------------------------------------------------------------- /app/src/main/res/raw-de-rDE/release_notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw-de-rDE/release_notes -------------------------------------------------------------------------------- /app/src/main/res/raw-de-rDE/stopwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw-de-rDE/stopwords -------------------------------------------------------------------------------- /app/src/main/res/raw/headcopy_words_2000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw/headcopy_words_2000 -------------------------------------------------------------------------------- /app/src/main/res/raw/headcopy_words_manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw/headcopy_words_manual -------------------------------------------------------------------------------- /app/src/main/res/raw/itu_prefixes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw/itu_prefixes -------------------------------------------------------------------------------- /app/src/main/res/raw/qcodecards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw/qcodecards -------------------------------------------------------------------------------- /app/src/main/res/raw/qcodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw/qcodes -------------------------------------------------------------------------------- /app/src/main/res/raw/release_notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw/release_notes -------------------------------------------------------------------------------- /app/src/main/res/raw/stopwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw/stopwords -------------------------------------------------------------------------------- /app/src/main/res/raw/wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/raw/wordlist -------------------------------------------------------------------------------- /app/src/main/res/values-de-rDE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values-de-rDE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/defaults.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/helpurls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/helpurls.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/settings-arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/settings-arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/values/type.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/days_practiced_widget_1x1_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/days_practiced_widget_1x1_info.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/days_practiced_widget_2x2_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/days_practiced_widget_2x2_info.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_copytrainer_current.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_copytrainer_current.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_copytrainer_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_copytrainer_main.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_copytrainer_to.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_copytrainer_to.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_global.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_headcopy_current.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_headcopy_current.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_headcopy_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_headcopy_main.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_headcopy_to.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_headcopy_to.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_key_codes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_key_codes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_learning_strategy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_learning_strategy.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_morse_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_morse_input.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_root.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_selfdefined_current.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_selfdefined_current.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_selfdefined_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_selfdefined_main.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_sendingtrainer_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_sendingtrainer_main.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs_workarounds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/main/res/xml/prefs_workarounds.xml -------------------------------------------------------------------------------- /app/src/test/java/android/util/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/android/util/Log.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/DistributionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/DistributionTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/KochTrainerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/KochTrainerTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/MorseCodeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/MorseCodeTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/TestingUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/TestingUtils.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/UtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/UtilsTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/base/CompressedIntSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/base/CompressedIntSetTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/base/ConstantDistributionFunctionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/base/ConstantDistributionFunctionTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/base/DefaultLearningStrategyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/base/DefaultLearningStrategyTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/base/EquivalenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/base/EquivalenceTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/base/FrequencyDistributionFunctionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/base/FrequencyDistributionFunctionTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/base/LearningProgressTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/base/LearningProgressTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/base/ReleaseNotesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/base/ReleaseNotesTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/brasspound/ClusterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/brasspound/ClusterTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/brasspound/SpeedSensingDecoderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/brasspound/SpeedSensingDecoderTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerListLearningStrategyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerListLearningStrategyTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerParamsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/copytrainer/CopyTrainerParamsTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/copytrainer/LearningSequenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/copytrainer/LearningSequenceTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyLearningStrategyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/headcopy/HeadcopyLearningStrategyTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnModelTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/learnqcodes/LearnModelTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/learnqcodes/QCodesLearningStrategyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/learnqcodes/QCodesLearningStrategyTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/network/mopp/BitInputStreamTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/network/mopp/BitInputStreamTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/network/mopp/BitOutputStreamTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/network/mopp/BitOutputStreamTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/network/mopp/MOPPParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/network/mopp/MOPPParserTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/params/FieldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/params/FieldTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/params/ParameterFaderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/params/ParameterFaderTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/params/ParameterMapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/params/ParameterMapTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/sound/MorsePlayerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/sound/MorsePlayerTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/sound/MorseTimingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/sound/MorseTimingTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/sound/SoundGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/sound/SoundGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/tennis/MorseTennisTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/tennis/MorseTennisTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/tennis/TennisMachineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/tennis/TennisMachineTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/tennis/WordBufferTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/tennis/WordBufferTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/AbstractTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/AbstractTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/AprilFoolsGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/AprilFoolsGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/CallsignGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/CallsignGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/CompoundReaderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/CompoundReaderTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/CompoundTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/CompoundTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/CountedWordsTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/CountedWordsTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/GarbageWordTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/GarbageWordTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/ListRandomWordTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/ListRandomWordTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/NaturalLanguageTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/NaturalLanguageTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/PeekAheadTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/PeekAheadTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/PrefixExploderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/PrefixExploderTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/QSOTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/QSOTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/RandomSyllableGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/RandomSyllableGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/RandomTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/RandomTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/RandomWordTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/RandomWordTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/RssTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/RssTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/StaticTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/StaticTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/TextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/TextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/TextTestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/TextTestUtils.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/VvvKaArDecoratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/VvvKaArDecoratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/text/WeightedCompoundTextGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/text/WeightedCompoundTextGeneratorTest.java -------------------------------------------------------------------------------- /app/src/test/java/com/paddlesandbugs/dahdidahdit/widget/WidgetsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/java/com/paddlesandbugs/dahdidahdit/widget/WidgetsTest.java -------------------------------------------------------------------------------- /app/src/test/res/raw/release_notes_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/app/src/test/res/raw/release_notes_test -------------------------------------------------------------------------------- /external/graphics/Steno/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/0.svg -------------------------------------------------------------------------------- /external/graphics/Steno/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/1.svg -------------------------------------------------------------------------------- /external/graphics/Steno/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/2.svg -------------------------------------------------------------------------------- /external/graphics/Steno/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/3.svg -------------------------------------------------------------------------------- /external/graphics/Steno/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/4.svg -------------------------------------------------------------------------------- /external/graphics/Steno/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/5.svg -------------------------------------------------------------------------------- /external/graphics/Steno/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/6.svg -------------------------------------------------------------------------------- /external/graphics/Steno/7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/7.svg -------------------------------------------------------------------------------- /external/graphics/Steno/8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/8.svg -------------------------------------------------------------------------------- /external/graphics/Steno/9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/9.svg -------------------------------------------------------------------------------- /external/graphics/Steno/A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/A.svg -------------------------------------------------------------------------------- /external/graphics/Steno/B.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/B.svg -------------------------------------------------------------------------------- /external/graphics/Steno/C.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/C.svg -------------------------------------------------------------------------------- /external/graphics/Steno/D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/D.svg -------------------------------------------------------------------------------- /external/graphics/Steno/E.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/E.svg -------------------------------------------------------------------------------- /external/graphics/Steno/F.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/F.svg -------------------------------------------------------------------------------- /external/graphics/Steno/G.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/G.svg -------------------------------------------------------------------------------- /external/graphics/Steno/H.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/H.svg -------------------------------------------------------------------------------- /external/graphics/Steno/I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/I.svg -------------------------------------------------------------------------------- /external/graphics/Steno/J.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/J.svg -------------------------------------------------------------------------------- /external/graphics/Steno/K.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/K.svg -------------------------------------------------------------------------------- /external/graphics/Steno/L.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/L.svg -------------------------------------------------------------------------------- /external/graphics/Steno/M.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/M.svg -------------------------------------------------------------------------------- /external/graphics/Steno/N.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/N.svg -------------------------------------------------------------------------------- /external/graphics/Steno/O.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/O.svg -------------------------------------------------------------------------------- /external/graphics/Steno/P.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/P.svg -------------------------------------------------------------------------------- /external/graphics/Steno/Q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/Q.svg -------------------------------------------------------------------------------- /external/graphics/Steno/R.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/R.svg -------------------------------------------------------------------------------- /external/graphics/Steno/S.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/S.svg -------------------------------------------------------------------------------- /external/graphics/Steno/T.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/T.svg -------------------------------------------------------------------------------- /external/graphics/Steno/U.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/U.svg -------------------------------------------------------------------------------- /external/graphics/Steno/V.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/V.svg -------------------------------------------------------------------------------- /external/graphics/Steno/W.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/W.svg -------------------------------------------------------------------------------- /external/graphics/Steno/X.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/X.svg -------------------------------------------------------------------------------- /external/graphics/Steno/Y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/Y.svg -------------------------------------------------------------------------------- /external/graphics/Steno/Z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/Z.svg -------------------------------------------------------------------------------- /external/graphics/Steno/z_comma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/z_comma.svg -------------------------------------------------------------------------------- /external/graphics/Steno/z_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/z_dash.svg -------------------------------------------------------------------------------- /external/graphics/Steno/z_dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/z_dot.svg -------------------------------------------------------------------------------- /external/graphics/Steno/z_eql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/z_eql.svg -------------------------------------------------------------------------------- /external/graphics/Steno/z_qma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/z_qma.svg -------------------------------------------------------------------------------- /external/graphics/Steno/z_slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/Steno/z_slash.svg -------------------------------------------------------------------------------- /external/graphics/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/back.svg -------------------------------------------------------------------------------- /external/graphics/feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/feature-graphic.png -------------------------------------------------------------------------------- /external/graphics/feature-graphic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/feature-graphic.svg -------------------------------------------------------------------------------- /external/graphics/frownie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/frownie.svg -------------------------------------------------------------------------------- /external/graphics/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/icon.svg -------------------------------------------------------------------------------- /external/graphics/icon3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/icon3.svg -------------------------------------------------------------------------------- /external/graphics/icon3_small_padding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/icon3_small_padding.svg -------------------------------------------------------------------------------- /external/graphics/paddle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/paddle.svg -------------------------------------------------------------------------------- /external/graphics/playstore-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/playstore-icon.png -------------------------------------------------------------------------------- /external/graphics/playstore-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/playstore-icon.svg -------------------------------------------------------------------------------- /external/graphics/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/slash.svg -------------------------------------------------------------------------------- /external/graphics/smiley.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/external/graphics/smiley.svg -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/1110201.txt: -------------------------------------------------------------------------------- 1 | Die App ist jetzt freie Software und verfügbar auf GitHub. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/1110301.txt: -------------------------------------------------------------------------------- 1 | Die erste Version verfügbar bei F-Droid. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/1120001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/changelogs/1120001.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/1130001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/changelogs/1130001.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/1130101.txt: -------------------------------------------------------------------------------- 1 | • Einige verwendete Software-Bibliotheken wurden aktualisiert. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/1140001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/changelogs/1140001.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/1140101.txt: -------------------------------------------------------------------------------- 1 | • Einige Theme-bezogene Probleme gefixt 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/1150001.txt: -------------------------------------------------------------------------------- 1 | • Externe Maus benutzbar als Paddle (#25) 2 | • Upgrade für Installation unter Android 15 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de/images/phoneScreenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/images/phoneScreenshots/7.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/de/title.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1110201.txt: -------------------------------------------------------------------------------- 1 | The app is now Free Software and available on GitHub. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1110301.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/changelogs/1110301.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1120001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/changelogs/1120001.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1130001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/changelogs/1130001.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1130101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/changelogs/1130101.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1140001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/changelogs/1140001.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1140101.txt: -------------------------------------------------------------------------------- 1 | • Fixed some theme-related issues 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1150001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/changelogs/1150001.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/7.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Dahdidahdit — The Morse Trainer 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasjordan/dahdidahdit/HEAD/settings.gradle --------------------------------------------------------------------------------