diff --git a/RAVEN.png b/RAVEN.png new file mode 100644 index 00000000..dd312165 Binary files /dev/null and b/RAVEN.png differ diff --git a/RAVEN2.png b/RAVEN2.png deleted file mode 100644 index 99515a91..00000000 Binary files a/RAVEN2.png and /dev/null differ diff --git a/README.md b/README.md index bf275bf6..85935e6d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ - + [![Current release](https://img.shields.io/github/release/SysBioChalmers/RAVEN/all.svg)](https://GitHub.com/SysBioChalmers/RAVEN/releases/) [![GitHub Discussions](https://img.shields.io/github/discussions-search?query=repo%3Asysbiochalmers%2raven&label=GitHub%20Discussions)](https://github.com/SysBioChalmers/RAVEN/discussions) diff --git a/_config.yml b/_config.yml index 19e30b4b..0add0be6 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,4 @@ theme: jekyll-theme-minimal -logo: RAVEN2.png +logo: RAVEN.png show_downloads: true keep_files: ["doc/"] diff --git a/installation/findRAVENroot.m b/installation/findRAVENroot.m index 17e4b878..af2336b4 100755 --- a/installation/findRAVENroot.m +++ b/installation/findRAVENroot.m @@ -1,7 +1,7 @@ function [ravenPath, prevDir] = findRAVENroot() % findRAVENroot % Finds the root of the RAVEN directory, first by by searching for the path to -% RAVEN2.png. Can also record the current directory, in case a function will +% RAVEN.png. Can also record the current directory, in case a function will % use the ravenPath to navigate to a precise folder, and it should return to % the previous directory afterwards. See e.g. optimizeProb calling glpk. @@ -13,14 +13,14 @@ ravenPath = ST(strcmp({ST.name},'findRAVENroot')).file; rootFound = 0; while rootFound == 0 - isRoot = isfile(fullfile(ravenPath,'RAVEN2.png')); + isRoot = isfile(fullfile(ravenPath,'RAVEN.png')); if isRoot rootFound = 1; else ravenPathOld = ravenPath; ravenPath = fileparts(ravenPath); if strcmp(ravenPathOld,ravenPath) - error('Cannot find the RAVEN root directory. Make sure you have not removed the RAVEN2.png file from your RAVEN installation.') + error('Cannot find the RAVEN root directory. Make sure you have not removed the RAVEN.png file from your RAVEN installation.') end end end