Skip to content

Commit

Permalink
Remove ref to metadata repo
Browse files Browse the repository at this point in the history
  • Loading branch information
gsantner committed Aug 4, 2019
1 parent 8cbf420 commit 7d6d155
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ protected Editable run(final Editable editable) {
createStyleSpanForMatches(editable, KeyValueHighlighterPattern.PATTERN_INI_KEY.getPattern(), Typeface.BOLD);
createRelativeSizeSpanForMatches(editable, KeyValueHighlighterPattern.PATTERN_INI_HEADER.getPattern(), 1.25f);
createColorSpanForMatches(editable, KeyValueHighlighterPattern.PATTERN_INI_HEADER.getPattern(), 0xffef6D00);
createColorSpanForMatches(editable, KeyValueHighlighterPattern.PATTERN_INI_COMMENT.getPattern(), 0xff88b04b);
_profiler.restart("KeyValue: comment");
createColorSpanForMatches(editable, KeyValueHighlighterPattern.PATTERN_COMMENT.getPattern(), 0xff88b04b);

Expand Down Expand Up @@ -87,6 +88,7 @@ enum KeyValueHighlighterPattern {
PATTERN_VCARD_KEY(Pattern.compile("(?im)^(?<FIELD>[^\\s:;]+)(;(?<PARAM>[^=:;]+)=\"?(?<VALUE>[^:;]+)\"?)*:")),
PATTERN_INI_HEADER(Pattern.compile("(?im)^(\\[.*\\])$")),
PATTERN_INI_KEY(Pattern.compile("(?im)^([a-z_0-9]+)\\s*[=]")),
PATTERN_INI_COMMENT(Pattern.compile("(?im)^(;.*)$")),
PATTERN_UNORDERED_LIST(MarkdownHighlighterPattern.LIST_UNORDERED.pattern),
PATTERN_COMMENT(Pattern.compile("(?im)^((#|//)\\s+.*)$")),
PATTERN_CSV(Pattern.compile("[,;:]")),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ public void onBindViewHolder(@NonNull ilesystemViewerViewHolder holder, int posi
}

File descriptionFile = file.equals(_currentFolder.getParentFile()) ? fileParent : file;
//String tmp = descriptionFile.getAbsolutePath().startsWith("/storage/emulated/0/") && getCurrentFolder().getAbsolutePath().startsWith("/storage/emulated/0/") ? "/storage/emulated/0/" : "";
holder.description.setText(!_dopt.descModtimeInsteadOfParent || holder.title.getText().toString().equals("..") ? descriptionFile.getAbsolutePath() : DateUtils.formatDateTime(_context, descriptionFile.lastModified(), (DateUtils.FORMAT_SHOW_TIME | DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_SHOW_YEAR | DateUtils.FORMAT_NUMERIC_DATE)));
holder.description.setTextColor(ContextCompat.getColor(_context, _dopt.secondaryTextColor));

Expand Down
1 change: 0 additions & 1 deletion metadata
Submodule metadata deleted from fe6e16
2 changes: 1 addition & 1 deletion samples/markor-readme-demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@

Blog / project page: [gsantner.net](https://gsantner.net)

![Markor Logo](https://raw.githubusercontent.com/gsantner/markor/dev/app/src/main/ic_launcher-web.png)
![Markor Logo](https://raw.githubusercontent.com/gsantner/markor/master/app/src/main/ic_launcher-web.png)

0 comments on commit 7d6d155

Please sign in to comment.