Replay of IQ files ! :D

Added icons and colors for commonly used files in Fileman
Fileman can filter by file extension
Bugfix: Fileman doesn't crash anymore on renaming long file names
Updated binary
This commit is contained in:
furrtek
2017-12-07 00:58:25 +00:00
parent 3221992ad1
commit b38adf3769
23 changed files with 403 additions and 445 deletions

View File

@@ -70,49 +70,49 @@ struct Color {
return { 255, 0, 0 };
}
static constexpr Color dark_red() {
return { 127, 0, 0 };
return { 191, 0, 0 };
}
static constexpr Color orange() {
return { 255, 175, 0 };
}
static constexpr Color dark_orange() {
return { 127, 88, 0 };
return { 191, 88, 0 };
}
static constexpr Color yellow() {
return { 255, 255, 0 };
}
static constexpr Color dark_yellow() {
return { 127, 127, 0 };
return { 191, 191, 0 };
}
static constexpr Color green() {
return { 0, 255, 0 };
}
static constexpr Color dark_green() {
return { 0, 127, 0 };
return { 0, 191, 0 };
}
static constexpr Color blue() {
return { 0, 0, 255 };
}
static constexpr Color dark_blue() {
return { 0, 0, 127 };
return { 0, 0, 191 };
}
static constexpr Color cyan() {
return { 0, 255, 255 };
}
static constexpr Color dark_cyan() {
return { 0, 127, 127 };
return { 0, 191, 191 };
}
static constexpr Color magenta() {
return { 255, 0, 255 };
}
static constexpr Color dark_magenta() {
return { 127, 0, 127 };
return { 191, 0, 191 };
}
static constexpr Color white() {
@@ -120,10 +120,10 @@ struct Color {
}
static constexpr Color light_grey() {
return { 127, 127, 127 };
return { 191, 191, 191 };
}
static constexpr Color grey() {
return { 91, 91, 91 };
return { 127, 127, 127 };
}
static constexpr Color dark_grey() {
return { 63, 63, 63 };