20 Commits

Author SHA1 Message Date
d9f35737de Rename Turbo-Editor in German language. 2018-06-25 01:31:21 -05:00
f7a95be11b Need to flush/close output stream, else our data won't actually be written. 2018-06-24 20:17:32 -05:00
f08edb736d Swap out rootfw for libsu.
THis compiles but I haven't yet tested it. It won't get merged back in until I test it fully.
2018-06-24 19:43:30 -05:00
05e3600504 Add note that the builds are currently not signed 2018-06-24 18:59:42 -05:00
0b24c89307 Add link to build artifacts 2018-06-24 18:11:25 -05:00
f8491fefdb revert 2018-06-24 16:56:01 -05:00
4885aa9df6 try this out 2018-06-24 16:55:04 -05:00
0dd894a777 add .gitlab-ci.yml 2018-06-24 16:45:13 -05:00
01e7a2674c Remove f-droid text metadata.
This is the format used by f-droid's own metadata repo but they seem to be moving away from it at least for application repos.

see  bca2f86802 (note_50562827)
2018-06-24 05:51:51 -05:00
8838fbd5a9 Correctly format .fdroid.yml. 2018-06-24 05:51:35 -05:00
ddd99e48e5 Add .fdroid.yml 2018-06-24 05:41:57 -05:00
b4da74dea1 Update gradle version in gradle-wrapper 2018-06-24 02:23:40 -05:00
24e7fc5904 Also fix the fdroid metadata file name. 2018-06-24 02:20:37 -05:00
6ef85c45b5 Fix applicationId. 2018-06-24 02:11:42 -05:00
2c55929f9f add google() repository to allprojects 2018-06-24 02:07:25 -05:00
e45665ece1 attempt to update gradle 2018-06-24 01:59:04 -05:00
97f1be558b Add f-droid metadata file.
This is currently for use with the fdroid-docker-build image at https://gitlab.monarch-pass.net/malacoda/fdroid-docker-build. But, once it builds correctly (it does not), it should be able to be pushed to F-droid rather easily.
2018-06-24 01:46:41 -05:00
2ee5a8e904 Hide "View it on the web" option until it can be fixed. 2018-06-23 22:41:54 -05:00
c56b0f8054 Update readme. 2018-06-23 04:14:11 -05:00
7a6d0d3eba Rebrand to Text Editor 8000. 2018-06-23 03:47:51 -05:00
211 changed files with 759 additions and 6809 deletions

25
.fdroid.yml Normal file
View File

@ -0,0 +1,25 @@
Categories:
- Writing
License: GPL-3.0-or-later
WebSite: https://github.com/adrianmalacoda/text-editor-8000
SourceCode: https://github.com/adrianmalacoda/text-editor-8000
IssueTracker: https://github.com/adrianmalacoda/text-editor-8000/issues
AutoName: Text Editor 8000
Summary: Simple text editor
Description: Simple, yet powerful editor for text files.
RepoType: git
Repo: .
builds:
- versionName: "1.20"
versionCode: 48
commit: HEAD
subdir: app
gradle: yes
AutoUpdateMode: None
UpdateCheckMode: RepoManifest
CurrentVersion: 1.20
CurrentVersion Code: 48

9
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,9 @@
image: fdroidbuild:latest
build-apk:
script:
- fdroid build
artifacts:
paths:
- unsigned/*.apk
- unsigned/*.tar.gz

View File

@ -1,5 +1,14 @@
# Text Editor 8000
Text editor for Android. Originally forked from [Turbo Editor](https://github.com/vmihalachi/turbo-editor) by Vlad Mihalachi.
Text editor for Android. Forked from [Turbo Editor](https://github.com/vmihalachi/turbo-editor) by Vlad Mihalachi.
### License
Currently this fork includes a fix for hardware keyboards, as well as an updated [CommonMark](http://commonmark.org/) Markdown renderer.
## Notice
This project undergoes sporadic bursts of activity. There's no timeframe for a release, and stuff gets worked on when it gets worked on.
The general policy is that master is always buildable and should run fine, but there's no guarantees.
Also, [build artifacts](https://gitlab.monarch-pass.net/malacoda/text-editor-8000/-/jobs/artifacts/master/download?job=build-apk) from master are available on the Monarch Pass GitLab. Note that as of now these builds are not signed so you'll need to sign them yourself before installing them. Use at your own risk!
## License
GNU General Public License version 3, see [LICENSE](./license).

View File

@ -2,14 +2,14 @@
* Copyright (C) 2016 Adrian Malacoda
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.
@ -31,7 +31,7 @@ android {
buildToolsVersion '22.0.1'
defaultConfig {
applicationId "net.monarchpass.android.robuteditor"
applicationId "net.monarchpass.android.texteditor8000"
minSdkVersion 15
targetSdkVersion 22
versionCode 48
@ -58,8 +58,7 @@ android {
}
dependencies {
compile project(':libraries:sharedCode')
//compile 'com.spazedog.lib:rootfw_gen4:+@aar'
compile 'com.github.topjohnwu:libsu:1.2.0'
compile project(':libraries:FloatingActionButton')
compile 'org.apache.commons:commons-lang3:+'
compile 'com.googlecode.juniversalchardet:juniversalchardet:1.0.3'

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -109,4 +109,4 @@ a, a:visited {
color: #4183C4;
background-color: inherit;
text-decoration: none;
}
}

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.
@ -68,8 +68,7 @@ import android.widget.ListView;
import android.widget.Toast;
import com.faizmalkani.floatingactionbutton.FloatingActionButton;
import com.spazedog.lib.rootfw4.RootFW;
import com.spazedog.lib.rootfw4.utils.io.FileReader;
import com.topjohnwu.superuser.io.SuFileInputStream;
import org.apache.commons.io.FilenameUtils;
import org.apache.commons.lang3.ArrayUtils;
@ -978,10 +977,8 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct
encoding = "UTF-8";
// Connect the shared connection
if (RootFW.connect()) {
FileReader reader = RootFW.getFileReader(path);
buffer = new BufferedReader(reader);
}
InputStreamReader reader = new InputStreamReader(new SuFileInputStream(path));
buffer = new BufferedReader(reader);
} else {
boolean autoencoding = PreferenceHelper.getAutoEncoding(MainActivity.this);
@ -1008,9 +1005,6 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct
buffer.close();
fileText = stringBuilder.toString();
}
if (isRootRequired)
RootFW.disconnect();
}
@Override

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.
@ -39,7 +39,7 @@ import android.widget.TextView;
import android.widget.Toast;
import com.faizmalkani.floatingactionbutton.FloatingActionButton;
import com.spazedog.lib.rootfw4.RootFW;
import com.topjohnwu.superuser.io.SuFile;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.FilenameUtils;
@ -383,24 +383,22 @@ public class SelectFileActivity extends ActionBarActivity implements SearchView.
currentFolder = tempFolder.getAbsolutePath();
if (!tempFolder.canRead()) {
if (RootFW.connect()) {
com.spazedog.lib.rootfw4.utils.File folder = RootFW.getFile(currentFolder);
com.spazedog.lib.rootfw4.utils.File.FileStat[] stats = folder.getDetailedList();
SuFile folder = new SuFile(currentFolder);
SuFile[] files = folder.listFiles();
if (stats != null) {
for (com.spazedog.lib.rootfw4.utils.File.FileStat stat : stats) {
if (stat.type().equals("d")) {
folderDetails.add(new AdapterDetailedList.FileDetail(stat.name(),
getString(R.string.folder),
""));
} else if (!FilenameUtils.isExtension(stat.name().toLowerCase(), unopenableExtensions)
&& stat.size() <= Build.MAX_FILE_SIZE * FileUtils.ONE_KB) {
final long fileSize = stat.size();
//SimpleDateFormat format = new SimpleDateFormat("MMM dd, yyyy hh:mm a");
//String date = format.format("");
fileDetails.add(new AdapterDetailedList.FileDetail(stat.name(),
FileUtils.byteCountToDisplaySize(fileSize), ""));
}
if (files != null) {
for (SuFile file : files) {
if (file.isDirectory()) {
folderDetails.add(new AdapterDetailedList.FileDetail(file.getName(),
getString(R.string.folder),
""));
} else if (!FilenameUtils.isExtension(file.getName().toLowerCase(), unopenableExtensions)
&& file.length() <= Build.MAX_FILE_SIZE * FileUtils.ONE_KB) {
final long fileSize = file.length();
//SimpleDateFormat format = new SimpleDateFormat("MMM dd, yyyy hh:mm a");
//String date = format.format("");
fileDetails.add(new AdapterDetailedList.FileDetail(file.getName(),
FileUtils.byteCountToDisplaySize(fileSize), ""));
}
}
}

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.
@ -24,11 +24,18 @@ import android.view.ViewConfiguration;
import java.lang.reflect.Field;
public class MyApp extends Application {
import com.topjohnwu.superuser.Shell;
public class MyApp extends Shell.ContainerApp {
@Override
public void onCreate() {
super.onCreate();
// Shell initialization
Shell.setFlags(Shell.FLAG_REDIRECT_STDERR);
Shell.verboseLogging(true);
// force to sow the overflow menu icon
try {
ViewConfiguration config = ViewConfiguration.get(this);

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.
@ -25,12 +25,9 @@ import android.os.ParcelFileDescriptor;
import android.text.TextUtils;
import android.widget.Toast;
import com.spazedog.lib.rootfw4.RootFW;
import com.spazedog.lib.rootfw4.Shell;
import com.spazedog.lib.rootfw4.utils.File;
import com.spazedog.lib.rootfw4.utils.Filesystem;
import com.topjohnwu.superuser.io.SuFileOutputStream;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import java.io.FileOutputStream;
import java.io.IOException;
@ -41,6 +38,8 @@ import com.maskyn.fileeditorpro.activity.MainActivity;
import com.maskyn.fileeditorpro.util.Device;
import com.maskyn.fileeditorpro.util.GreatUri;
import android.util.Log;
public class SaveFileTask extends AsyncTask<Void, Void, Void> {
private final MainActivity activity;
@ -73,7 +72,6 @@ public class SaveFileTask extends AsyncTask<Void, Void, Void> {
protected Void doInBackground(final Void... voids) {
boolean isRootNeeded = false;
Shell.Result resultRoot = null;
try {
String filePath = uri.getFilePath();
@ -93,34 +91,13 @@ public class SaveFileTask extends AsyncTask<Void, Void, Void> {
}
// if we can read the file associated with the uri
else {
if (RootFW.connect()) {
Filesystem.Disk systemPart = RootFW.getDisk(uri.getParentFolder());
systemPart.mount(new String[]{"rw"});
File file = RootFW.getFile(uri.getFilePath());
resultRoot = file.writeResult(newContent);
RootFW.disconnect();
}
SuFileOutputStream out = new SuFileOutputStream(uri.getFilePath());
IOUtils.write(newContent, out, encoding);
out.close();
}
}
if (isRootNeeded) {
if (resultRoot != null && resultRoot.wasSuccessful()) {
message = positiveMessage;
}
else if (resultRoot != null) {
message = negativeMessage + " command number: " + resultRoot.getCommandNumber() + " result code: " + resultRoot.getResultCode() + " error lines: " + resultRoot.getString();
}
else
message = negativeMessage;
}
else
message = positiveMessage;
message = positiveMessage;
} catch (Exception e) {
e.printStackTrace();
message = e.getMessage();
@ -155,4 +132,4 @@ public class SaveFileTask extends AsyncTask<Void, Void, Void> {
public interface SaveFileInterface {
void fileSaved(Boolean success);
}
}
}

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -64,11 +64,11 @@
app:showAsAction="never"
android:title="@string/goto_line"
/>
<item
<!-- <item
android:id="@id/im_view_it_on_browser"
app:showAsAction="never"
android:title="@string/view_it_on_the_web"
/>
/> -->
<item
android:id="@id/im_view_markdown"
app:showAsAction="never"

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -73,7 +73,7 @@
</changelogversion>
<changelogversion versionName="1.13" changeDate="Oct 25, 2014">
<changelogtext>Robut Editor is a free and open source app. Now you can show your appreciation and support development by donating :)</changelogtext>
<changelogtext>Text Editor 8000 is a free and open source app. Now you can show your appreciation and support development by donating :)</changelogtext>
<changelogtext>New visual changes to make the app more "Material"</changelogtext>
<changelogtext>New save dialog when you are about to close a file</changelogtext>
<changelogtext>Many enchantments and fixes</changelogtext>
@ -86,7 +86,7 @@
<changelogversion versionName="1.11" changeDate="Sep 30, 2014">
<changelogtext>[b]New! [/b]Important improvements to the syntax highlight</changelogtext>
<changelogtext>[b]New! [/b]Donation option in the about screen. Help to make Robut Editor a better software! :)</changelogtext>
<changelogtext>[b]New! [/b]Donation option in the about screen. Help to make Text Editor 8000 a better software! :)</changelogtext>
<changelogtext>[b]New! [/b]Setting to disable the "page system"</changelogtext>
<changelogtext>[b]New! [/b]Setting to ignore the back button</changelogtext>
<changelogtext>Fixed an issue related to cut/copy/past buttons</changelogtext>
@ -103,7 +103,7 @@
<changelogtext>[b]New! [/b]Create empty files with just one click</changelogtext>
<changelogtext>[b]New! [/b]Read only mode</changelogtext>
<changelogtext>[b]New! [/b]Autosave function, to save files when the app loses focus</changelogtext>
<changelogtext>[b]New! [/b]Share the text from other apps to Robut Editor</changelogtext>
<changelogtext>[b]New! [/b]Share the text from other apps to Text Editor 8000</changelogtext>
<changelogtext>[b]New! [/b]Style changes</changelogtext>
<changelogtext>Other enchantments and fixs</changelogtext>
</changelogversion>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Encoding</string>
<string name="condividi">Share</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferences</string>
<string name="salva">Save</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Encoding</string>
<string name="condividi">Share</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferences</string>
<string name="salva">Save</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Encoding</string>
<string name="condividi">Share</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferences</string>
<string name="salva">Save</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Encoding</string>
<string name="condividi">Share</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferences</string>
<string name="salva">Save</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Codifica</string>
<string name="condividi">Compartir</string>
<string name="info">Informació</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferències</string>
<string name="salva">Desa</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Kódování</string>
<string name="condividi">Sdílet</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Předvolby</string>
<string name="salva">Uložit</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Kodning</string>
<string name="condividi">Del</string>
<string name="info">Information</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Indstillinger</string>
<string name="salva">Gem</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Verschlüsseln</string>
<string name="condividi">Teilen</string>
<string name="info">Informationen</string>
<string name="nome_app_turbo_editor">Turbo-Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Einstellungen</string>
<string name="salva">Speichern</string>
<string name="save_as">Speichern unter</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Schließen</string>
<string name="about_action">Über</string>
<string name="about_message"><![CDATA[
Robut Editor ist eine freie und <a href="http://github.com/vmihalachi/turbo-editor">quelloffene</a> Anwendung.
Text Editor 8000 ist eine freie und <a href="http://github.com/vmihalachi/turbo-editor">quelloffene</a> Anwendung.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Vielen dank an alle Personen,

Some files were not shown because too many files have changed in this diff Show More