Compare commits
20 Commits
commonmark
...
replace-ro
Author | SHA1 | Date | |
---|---|---|---|
d9f35737de | |||
f7a95be11b | |||
f08edb736d | |||
05e3600504 | |||
0b24c89307 | |||
f8491fefdb | |||
4885aa9df6 | |||
0dd894a777 | |||
01e7a2674c | |||
8838fbd5a9 | |||
ddd99e48e5 | |||
b4da74dea1 | |||
24e7fc5904 | |||
6ef85c45b5 | |||
2c55929f9f | |||
e45665ece1 | |||
97f1be558b | |||
2ee5a8e904 | |||
c56b0f8054 | |||
7a6d0d3eba |
25
.fdroid.yml
Normal file
25
.fdroid.yml
Normal 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
9
.gitlab-ci.yml
Normal file
@ -0,0 +1,9 @@
|
||||
image: fdroidbuild:latest
|
||||
|
||||
build-apk:
|
||||
script:
|
||||
- fdroid build
|
||||
artifacts:
|
||||
paths:
|
||||
- unsigned/*.apk
|
||||
- unsigned/*.tar.gz
|
13
README.md
13
README.md
@ -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).
|
||||
|
@ -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'
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -109,4 +109,4 @@ a, a:visited {
|
||||
color: #4183C4;
|
||||
background-color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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), ""));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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);
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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"
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
Reference in New Issue
Block a user