Release preparation and correctly applied GNU GPLv3 License
This commit is contained in:
parent
e5c39eb203
commit
3b4b62197c
18 changed files with 869 additions and 235 deletions
|
@ -1,3 +1,25 @@
|
|||
/*
|
||||
* 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 <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Marcel Michael Kapfer
|
||||
* marcelmichaelkapfer@yahoo.co.nz
|
||||
*
|
||||
* Version 1.0.1
|
||||
*/
|
||||
|
||||
package de.marcelkapfer.morseconverter;
|
||||
|
||||
import android.app.Fragment;
|
||||
|
@ -13,6 +35,7 @@ import android.view.ViewGroup;
|
|||
import android.widget.TextView;
|
||||
|
||||
|
||||
|
||||
public class DisplayMessageActivity extends FragmentActivity {
|
||||
|
||||
@Override
|
||||
|
|
|
@ -1,3 +1,25 @@
|
|||
/*
|
||||
* 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 <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Marcel Michael Kapfer
|
||||
* marcelmichaelkapfer@yahoo.co.nz
|
||||
*
|
||||
* Version 1.0.1
|
||||
*/
|
||||
|
||||
package de.marcelkapfer.morseconverter;
|
||||
|
||||
import android.app.Fragment;
|
||||
|
@ -428,7 +450,7 @@ public class MainActivity extends FragmentActivity {
|
|||
StringBuffer output = new StringBuffer();
|
||||
input = message.toString().toUpperCase() + "#";
|
||||
StringBuffer inputToSign = new StringBuffer(input);
|
||||
while (inputToSign.toString().equals("#") == false) {
|
||||
while (!inputToSign.toString().equals("#")) {
|
||||
int d = 0;
|
||||
boolean signFull = true;
|
||||
StringBuffer sign = new StringBuffer();
|
||||
|
|
Reference in a new issue