Skip to content

Commit

Permalink
Merge pull request #278 from vkbo/tweaks
Browse files Browse the repository at this point in the history
GUI Tweaks
  • Loading branch information
vkbo committed Jun 2, 2020
2 parents afdd07b + e8db673 commit 3a22863
Show file tree
Hide file tree
Showing 25 changed files with 869 additions and 516 deletions.
6 changes: 3 additions & 3 deletions nw/__init__.py
Expand Up @@ -172,15 +172,15 @@ def main(sysArgs=None):
debugLevel = logging.INFO
elif inOpt == "--debug":
debugLevel = logging.DEBUG
logFormat = "[{asctime:}] {name:>30}:{lineno:<4d} {levelname:8} {message:}"
logFormat = "[{asctime:}] {name:>20}:{lineno:<4d} {levelname:8} {message:}"
elif inOpt == "--logfile":
logFile = inArg
toFile = True
elif inOpt in ("-q","--quiet"):
toStd = False
elif inOpt == "--verbose":
debugLevel = VERBOSE
logFormat = "[{asctime:}] {name:>30}:{lineno:<4d} {levelname:8} {message:}"
logFormat = "[{asctime:}] {name:>20}:{lineno:<4d} {levelname:8} {message:}"
elif inOpt == "--style":
qtStyle = inArg
elif inOpt == "--config":
Expand All @@ -196,7 +196,7 @@ def main(sysArgs=None):
CONFIG.cmdOpen = cmdOpen

# Set Logging
logFmt = logging.Formatter(fmt=logFormat,datefmt="%Y-%m-%d %H:%M:%S",style="{")
logFmt = logging.Formatter(fmt=logFormat, datefmt="%Y-%m-%d %H:%M:%S", style="{")

if not logFile == "" and toFile:
if path.isfile(logFile+".bak"):
Expand Down
55 changes: 55 additions & 0 deletions nw/assets/icons/fallback/hash-dark.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions nw/assets/icons/fallback/hash.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions nw/assets/icons/typicons_colour_dark/hash.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 6 additions & 4 deletions nw/assets/icons/typicons_colour_dark/icons.conf
@@ -1,8 +1,9 @@
##
# Icons: Typicons Colour Dark
# Source: https://github.com/stephenhutchings/typicons.font
# Credit: Stephen Hutchings
# Modified: Veronica Berglyd Olsen
# Icons: Typicons Colour Dark
# Source: https://github.com/stephenhutchings/typicons.font
# Credit: Stephen Hutchings
# Modified: Veronica Berglyd Olsen
# Additions: hash.svg
##

[Main]
Expand Down Expand Up @@ -39,3 +40,4 @@ save = download.svg
edit = pencil.svg
check = tick.svg
cross = times.svg
hash = hash.svg
55 changes: 55 additions & 0 deletions nw/assets/icons/typicons_colour_light/hash.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 6 additions & 4 deletions nw/assets/icons/typicons_colour_light/icons.conf
@@ -1,8 +1,9 @@
##
# Icons: Typicons Colour Light
# Source: https://github.com/stephenhutchings/typicons.font
# Credit: Stephen Hutchings
# Modified: Veronica Berglyd Olsen
# Icons: Typicons Colour Light
# Source: https://github.com/stephenhutchings/typicons.font
# Credit: Stephen Hutchings
# Modified: Veronica Berglyd Olsen
# Additions: hash.svg
##

[Main]
Expand Down Expand Up @@ -39,3 +40,4 @@ save = download.svg
edit = pencil.svg
check = tick.svg
cross = times.svg
hash = hash.svg
55 changes: 55 additions & 0 deletions nw/assets/icons/typicons_grey_dark/hash.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 6 additions & 3 deletions nw/assets/icons/typicons_grey_dark/icons.conf
@@ -1,7 +1,9 @@
##
# Icons: Typicons Grey Dark
# Source: https://github.com/stephenhutchings/typicons.font
# Credit: Stephen Hutchings
# Icons: Typicons Grey Dark
# Source: https://github.com/stephenhutchings/typicons.font
# Credit: Stephen Hutchings
# Modified: Veronica Berglyd Olsen
# Additions: hash.svg
##

[Main]
Expand Down Expand Up @@ -38,3 +40,4 @@ save = download.svg
edit = pencil.svg
check = tick.svg
cross = times.svg
hash = hash.svg

0 comments on commit 3a22863

Please sign in to comment.