diff --git a/CHANGELOG.md b/CHANGELOG.md index af0be9be..e56ea395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Fixes - Web - failing to install some applications when the expected temp directory does not exist + - using the old nativefier GitHub URL ## [0.9.13] 2021-01-20 ### Fixes diff --git a/bauh/gems/web/__init__.py b/bauh/gems/web/__init__.py index 727c3eb5..633e27c3 100644 --- a/bauh/gems/web/__init__.py +++ b/bauh/gems/web/__init__.py @@ -32,7 +32,7 @@ SEARCH_INDEX_FILE = '{}/index.yml'.format(WEB_CACHE_PATH) SUGGESTIONS_CACHE_FILE = '{}/suggestions.yml'.format(WEB_CACHE_PATH) SUGGESTIONS_CACHE_TS_FILE = map_timestamp_file(SUGGESTIONS_CACHE_FILE) CONFIG_FILE = '{}/web.yml'.format(CONFIG_PATH) -URL_NATIVEFIER = 'https://github.com/jiahaog/nativefier/archive/v{version}.tar.gz' +URL_NATIVEFIER = 'https://github.com/nativefier/nativefier/archive/v{version}.tar.gz' ENVIRONMENT_SETTINGS_CACHED_FILE = '{}/environment.yml'.format(WEB_CACHE_PATH) ENVIRONMENT_SETTINGS_TS_FILE = '{}/environment.ts'.format(WEB_CACHE_PATH)