From 3153bc6ef66a0e9bec7c01bb1b1744b6500fe4ca Mon Sep 17 00:00:00 2001 From: mmk2410 Date: Tue, 17 Feb 2015 23:04:57 +0100 Subject: [PATCH] Updated copyright text --- app/src/main/AndroidManifest.xml | 21 ++++++++++++++++++ .../morseconverter/AboutFragment.java | 21 ++++++++++++++++++ .../DecodeNormalMorseManager.java | 21 ++++++++++++++++++ .../DecodeWrittenMorseManager.java | 21 ++++++++++++++++++ .../EncodeNormalMorseManager.java | 21 ++++++++++++++++++ .../EncodeWrittenMorseManager.java | 22 +++++++++++++++++++ .../morseconverter/MainActivity.java | 21 ++++++++++++++++++ .../morseconverter/MainFragment.java | 21 ++++++++++++++++++ .../morseconverter/MorseFragment.java | 21 ++++++++++++++++++ .../main/res/drawable-v21/button_action.xml | 21 ++++++++++++++++++ .../res/drawable-v21/linearlayout_action.xml | 21 ++++++++++++++++++ app/src/main/res/drawable/button_action.xml | 21 ++++++++++++++++++ .../main/res/drawable/linearlayout_action.xml | 21 ++++++++++++++++++ app/src/main/res/layout/fragment_about.xml | 3 +-- app/src/main/res/layout/fragment_main.xml | 2 +- app/src/main/res/layout/fragment_morse.xml | 2 +- app/src/main/res/values-de/strings.xml | 4 +--- app/src/main/res/values-w820dp/dimens.xml | 22 +++++++++++++++++++ app/src/main/res/values/colors.xml | 21 ++++++++++++++++++ app/src/main/res/values/dimens.xml | 22 +++++++++++++++++++ app/src/main/res/values/strings.xml | 4 ++-- app/src/main/res/values/styles.xml | 22 +++++++++++++++++++ 22 files changed, 367 insertions(+), 9 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 188286e..4d7cf08 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,4 +1,25 @@ + diff --git a/app/src/main/java/de/marcelkapfer/morseconverter/AboutFragment.java b/app/src/main/java/de/marcelkapfer/morseconverter/AboutFragment.java index 2fb10c0..2865029 100644 --- a/app/src/main/java/de/marcelkapfer/morseconverter/AboutFragment.java +++ b/app/src/main/java/de/marcelkapfer/morseconverter/AboutFragment.java @@ -1,5 +1,26 @@ package de.marcelkapfer.morseconverter; +/* + This is a Android application for converting writtenMorse and normal morse code. + Copyright (C) 2014-2015 Marcel Michael Kapfer + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Marcel Michael Kapfer + marcelmichaelkapfer@yahoo.co.nz + + */ + import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; diff --git a/app/src/main/java/de/marcelkapfer/morseconverter/DecodeNormalMorseManager.java b/app/src/main/java/de/marcelkapfer/morseconverter/DecodeNormalMorseManager.java index 3f4d0ca..4b5233e 100644 --- a/app/src/main/java/de/marcelkapfer/morseconverter/DecodeNormalMorseManager.java +++ b/app/src/main/java/de/marcelkapfer/morseconverter/DecodeNormalMorseManager.java @@ -1,5 +1,26 @@ package de.marcelkapfer.morseconverter; +/* + This is a Android application for converting writtenMorse and normal morse code. + Copyright (C) 2014-2015 Marcel Michael Kapfer + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Marcel Michael Kapfer + marcelmichaelkapfer@yahoo.co.nz + + */ + public class DecodeNormalMorseManager { private String inputMessage; diff --git a/app/src/main/java/de/marcelkapfer/morseconverter/DecodeWrittenMorseManager.java b/app/src/main/java/de/marcelkapfer/morseconverter/DecodeWrittenMorseManager.java index 68d35aa..6347f24 100644 --- a/app/src/main/java/de/marcelkapfer/morseconverter/DecodeWrittenMorseManager.java +++ b/app/src/main/java/de/marcelkapfer/morseconverter/DecodeWrittenMorseManager.java @@ -1,5 +1,26 @@ package de.marcelkapfer.morseconverter; +/* + This is a Android application for converting writtenMorse and normal morse code. + Copyright (C) 2014-2015 Marcel Michael Kapfer + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Marcel Michael Kapfer + marcelmichaelkapfer@yahoo.co.nz + + */ + public class DecodeWrittenMorseManager { private String inputMessage; diff --git a/app/src/main/java/de/marcelkapfer/morseconverter/EncodeNormalMorseManager.java b/app/src/main/java/de/marcelkapfer/morseconverter/EncodeNormalMorseManager.java index a708d8d..9de31c3 100644 --- a/app/src/main/java/de/marcelkapfer/morseconverter/EncodeNormalMorseManager.java +++ b/app/src/main/java/de/marcelkapfer/morseconverter/EncodeNormalMorseManager.java @@ -1,5 +1,26 @@ package de.marcelkapfer.morseconverter; +/* + This is a Android application for converting writtenMorse and normal morse code. + Copyright (C) 2014-2015 Marcel Michael Kapfer + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Marcel Michael Kapfer + marcelmichaelkapfer@yahoo.co.nz + + */ + /* * Code for converting morse code into latin letters */ diff --git a/app/src/main/java/de/marcelkapfer/morseconverter/EncodeWrittenMorseManager.java b/app/src/main/java/de/marcelkapfer/morseconverter/EncodeWrittenMorseManager.java index eba4564..de027a8 100644 --- a/app/src/main/java/de/marcelkapfer/morseconverter/EncodeWrittenMorseManager.java +++ b/app/src/main/java/de/marcelkapfer/morseconverter/EncodeWrittenMorseManager.java @@ -1,4 +1,26 @@ package de.marcelkapfer.morseconverter; + +/* + This is a Android application for converting writtenMorse and normal morse code. + Copyright (C) 2014-2015 Marcel Michael Kapfer + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Marcel Michael Kapfer + marcelmichaelkapfer@yahoo.co.nz + + */ + /* * Code for converting writtenMorse to latin letters */ diff --git a/app/src/main/java/de/marcelkapfer/morseconverter/MainActivity.java b/app/src/main/java/de/marcelkapfer/morseconverter/MainActivity.java index 38db5dd..3b088f0 100644 --- a/app/src/main/java/de/marcelkapfer/morseconverter/MainActivity.java +++ b/app/src/main/java/de/marcelkapfer/morseconverter/MainActivity.java @@ -1,5 +1,26 @@ package de.marcelkapfer.morseconverter; +/* + This is a Android application for converting writtenMorse and normal morse code. + Copyright (C) 2014-2015 Marcel Michael Kapfer + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Marcel Michael Kapfer + marcelmichaelkapfer@yahoo.co.nz + + */ + import android.content.ClipData; import android.content.ClipboardManager; import android.content.Context; diff --git a/app/src/main/java/de/marcelkapfer/morseconverter/MainFragment.java b/app/src/main/java/de/marcelkapfer/morseconverter/MainFragment.java index e37ffaa..cec167a 100644 --- a/app/src/main/java/de/marcelkapfer/morseconverter/MainFragment.java +++ b/app/src/main/java/de/marcelkapfer/morseconverter/MainFragment.java @@ -1,5 +1,26 @@ package de.marcelkapfer.morseconverter; +/* + This is a Android application for converting writtenMorse and normal morse code. + Copyright (C) 2014-2015 Marcel Michael Kapfer + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Marcel Michael Kapfer + marcelmichaelkapfer@yahoo.co.nz + + */ + import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; diff --git a/app/src/main/java/de/marcelkapfer/morseconverter/MorseFragment.java b/app/src/main/java/de/marcelkapfer/morseconverter/MorseFragment.java index ba168cd..a1930c1 100644 --- a/app/src/main/java/de/marcelkapfer/morseconverter/MorseFragment.java +++ b/app/src/main/java/de/marcelkapfer/morseconverter/MorseFragment.java @@ -1,5 +1,26 @@ package de.marcelkapfer.morseconverter; +/* + This is a Android application for converting writtenMorse and normal morse code. + Copyright (C) 2014-2015 Marcel Michael Kapfer + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Marcel Michael Kapfer + marcelmichaelkapfer@yahoo.co.nz + + */ + import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; diff --git a/app/src/main/res/drawable-v21/button_action.xml b/app/src/main/res/drawable-v21/button_action.xml index 00cf82d..0b52e6b 100644 --- a/app/src/main/res/drawable-v21/button_action.xml +++ b/app/src/main/res/drawable-v21/button_action.xml @@ -1,4 +1,25 @@ + diff --git a/app/src/main/res/drawable-v21/linearlayout_action.xml b/app/src/main/res/drawable-v21/linearlayout_action.xml index 65b9730..aec8c86 100644 --- a/app/src/main/res/drawable-v21/linearlayout_action.xml +++ b/app/src/main/res/drawable-v21/linearlayout_action.xml @@ -1,4 +1,25 @@ + diff --git a/app/src/main/res/drawable/button_action.xml b/app/src/main/res/drawable/button_action.xml index d6df153..38a89f8 100644 --- a/app/src/main/res/drawable/button_action.xml +++ b/app/src/main/res/drawable/button_action.xml @@ -1,4 +1,25 @@ + diff --git a/app/src/main/res/drawable/linearlayout_action.xml b/app/src/main/res/drawable/linearlayout_action.xml index 87c48f2..51f4445 100644 --- a/app/src/main/res/drawable/linearlayout_action.xml +++ b/app/src/main/res/drawable/linearlayout_action.xml @@ -1,4 +1,25 @@ + diff --git a/app/src/main/res/layout/fragment_about.xml b/app/src/main/res/layout/fragment_about.xml index 1e5ba87..bd2e7fe 100644 --- a/app/src/main/res/layout/fragment_about.xml +++ b/app/src/main/res/layout/fragment_about.xml @@ -1,3 +1,4 @@ + @@ -40,7 +38,7 @@ Wenn Du einen Fehler gefunden hast, schreibe mit bitte ein Email an marcelmichaelkapfer@yahoo.co.nz Du kannst eine ausführliche Anwendung auf marcel-kapfer.de/projects/morse/index.html#howto_android finden. Wenn du auf einen fehlenden Code aufmerksam geworden bist, dann schreibe eine Email an marcelmichaelkapfer@yahoo.co.nz. - 2.0 alpha \n14th February 2015 + 2.0 beta \n17th February 2015 Fehler Kontakt Entwickler diff --git a/app/src/main/res/values-w820dp/dimens.xml b/app/src/main/res/values-w820dp/dimens.xml index 63fc816..3f2a60a 100644 --- a/app/src/main/res/values-w820dp/dimens.xml +++ b/app/src/main/res/values-w820dp/dimens.xml @@ -1,3 +1,25 @@ + + #ffffff #2196F3 diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml index 47c8224..6f0d9a8 100644 --- a/app/src/main/res/values/dimens.xml +++ b/app/src/main/res/values/dimens.xml @@ -1,3 +1,25 @@ + + 16dp diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index bb8fdd4..21e1c4f 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -1,5 +1,6 @@ @@ -43,7 +43,7 @@ How to Missing Code - 2.0 alpha \n14th February 2015 + 2.0 beta \n17th February 2015 Marcel Michael Kapfer marcel-kapfer.de/projects/morse/ marcelmichaelkapfer@yahoo.co.nz diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index a889694..2238cb4 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -1,3 +1,25 @@ + +