-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
217 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,75 +4,98 @@ | |
|
||
Small and very fast portable launcher and updater for Chromium. | ||
|
||
``` | ||
To set as default internet browser run SetDefaultBrowser.bat (as admin). | ||
``` | ||
#### Default browser: | ||
chrlauncher has feature to use portable Chromium as default browser and it will be open links from another programs through chrlauncher. | ||
- start "SetDefaultBrowser.bat" (as admin). | ||
- start "Control panel" -> "Default programs" -> "Set your default programs" -> "chrlauncher" and set all checkboxes on. | ||
|
||
#### Command line | ||
#### Command line: | ||
There is list of arguments overrides .ini options | ||
``` | ||
/f - forced update checking | ||
/q - no error messages visible (quiet) | ||
/a - auto download new version of Chromium if present | ||
/b - bring chrlauncher to front on download started | ||
/f - force update checking | ||
/q - no error messages will be shown (quiet) | ||
``` | ||
#### Supported browser | ||
#### Supported browser: | ||
- Launcher - Chromium and their clones (like Google Chrome, Yandex Browser and other legitimate trojans!). | ||
- Updater - Chromium only. | ||
|
||
#### Folder structure | ||
- \bin - binaries directory. | ||
- \profile - profile directory. | ||
#### Flash Player: | ||
chrlauncher has feature for use portable Flash Player PPAPI. | ||
- download portable Flash Player PPAPI 32-bit/64-bit: http://effect8.ru/soft/media/adobe-flash-player-portable.html | ||
- unpack archive to the "Plugins" folder. | ||
- open "chrlauncher.ini" and find "FlashPlayerPath" option and then set ".\Plugins\%flash_player_dll_name_here%" | ||
|
||
#### Settings | ||
#### Settings: | ||
~~~ | ||
[chrlauncher] | ||
# Command line for Chromium: | ||
# | ||
# See here: | ||
# http://peter.sh/experiments/chromium-command-line-switches/ | ||
# | ||
# Command line for Chromium (string): | ||
# See here: http://peter.sh/experiments/chromium-command-line-switches/ | ||
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check --allow-outdated-plugins --disable-component-update | ||
# Chromium binaries directory: | ||
# | ||
# Chromium binaries directory (string): | ||
ChromiumDirectory=.\bin | ||
# Adobe Flash Player PPAPI DLL path: | ||
# | ||
# See here: | ||
# http://effect8.ru/soft/media/adobe-flash-player-portable.html | ||
# | ||
# Chromium binary file name (string): | ||
ChromiumBinary=chrome.exe | ||
# Adobe Flash Player PPAPI portable library path (string): | ||
# Download here: http://effect8.ru/soft/media/adobe-flash-player-portable.html | ||
FlashPlayerPath=.\plugins\pepflashplayer.dll | ||
# Set Chromium binaries architecture: | ||
# Set Chromium binaries architecture (integer): | ||
# | ||
# 0 -> autodetect (default) | ||
# 64 -> 64-bit | ||
# 32 -> 32-bit | ||
# | ||
ChromiumArchitecture=0 | ||
# Type of Chromium builds: | ||
# Auto download updates if founded (boolean) | ||
# | ||
# dev-official -> official development builds from snapshots repository (default) | ||
# dev-codecs-sync -> unofficial development builds with codecs from "github.com/henrypp/chromium" | ||
# stable-codecs-sync -> unofficial stable builds with codecs from "github.com/henrypp/chromium" | ||
# dev-codecs-nosync -> unofficial development builds with codecs and without the profile button from "github.com/henrypp/chromium" | ||
# stable-codecs-nosync -> unofficial stable builds with codecs and without the profile button from "github.com/henrypp/chromium" | ||
# false -> show tray tip if update found, downloading manually (default) | ||
# true -> auto download update and install it! | ||
ChromiumAutoDownload=falseboolean | ||
# Bring chrlauncher window when download started (boolean) | ||
# | ||
# false -> don't bring main window to front automatically (default) | ||
# true -> bring chrlauncher window to front when download started | ||
ChromiumBringToFront=false | ||
# Set error mode (boolean): | ||
# | ||
# false -> show warning messages (default) | ||
# true -> no error messages will be shown | ||
ChromiumIsSilent=false | ||
# Type of Chromium builds: | ||
# | ||
# dev-official -> official development builds from snapshots repository "commondatastorage.googleapis.com/chromium-browser-snapshots/index.html" | ||
# dev-codecs-sync -> unofficial development builds with codecs from "github.com/henrypp/chromium/releases" (default) | ||
# stable-codecs-sync -> unofficial stable builds with codecs from "github.com/henrypp/chromium/releases" | ||
# dev-codecs-nosync -> unofficial development builds with codecs and without the profile button from "github.com/henrypp/chromium/releases" | ||
# stable-codecs-nosync -> unofficial stable builds with codecs and without the profile button from "github.com/henrypp/chromium/releases" | ||
ChromiumType=dev-codecs-sync | ||
# Check for new Chromium version once in X days: | ||
# Check for new Chromium version once in X days (integer): | ||
# | ||
# 1 -> check updates once in a 1 day (default) | ||
# 0 -> disable update checking | ||
# 1 -> once in day (default) | ||
# | ||
# -1 -> force update checking | ||
ChromiumCheckPeriod=1 | ||
# Last update checking timestamp: | ||
# | ||
ChromiumCheckPeriodLast=0 | ||
# Last cached founded build date of Chromium in unix-time format(integer): | ||
ChromiumLastBuild=0 | ||
# Last cached update checking timestamp (integer): | ||
ChromiumLastCheck=0 | ||
# Last cached founded version of Chromium (string): | ||
ChromiumLastVersion= | ||
~~~ | ||
Website: www.henrypp.org<br /> | ||
Support: [email protected]<br /> | ||
<br /> | ||
(c) 2016 Henry++ | ||
(c) 2015-2017 Henry++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,97 @@ | ||
chrlauncher | ||
|
||
Small and very fast portable launcher and updater for Chromium. | ||
To set as default internet browser run SetDefaultBrowser.bat (as admin). | ||
|
||
Default browser: | ||
chrlauncher has feature to use portable Chromium as default browser and it will be open links from another programs through chrlauncher. | ||
- start "SetDefaultBrowser.bat" (as admin). | ||
- start "Control panel" -> "Default programs" -> "Set your default programs" -> "chrlauncher" and set all checkboxes on. | ||
|
||
Command line: | ||
/f - forced update checking | ||
/q - no error messages visible (quiet) | ||
There is list of arguments overrides .ini options. | ||
/a - auto download new version of Chromium if present | ||
/b - bring chrlauncher to front on download started | ||
/f - force update checking | ||
/q - no error messages will be shown (quiet) | ||
|
||
Supported browser: | ||
- Launcher - Chromium and their clones (like Google Chrome, Yandex Browser and other legitimate trojans!). | ||
- Updater - Chromium only. | ||
|
||
Folder structure: | ||
- \bin - binaries directory. | ||
- \profile - profile directory. | ||
Flash Player: | ||
chrlauncher has feature for use portable Flash Player PPAPI. | ||
- download portable Flash Player PPAPI 32-bit/64-bit: http://effect8.ru/soft/media/adobe-flash-player-portable.html | ||
- unpack archive to the "Plugins" folder. | ||
- open "chrlauncher.ini" and find "FlashPlayerPath" option and then set ".\Plugins\%flash_player_dll_name_here%" | ||
|
||
Settings: | ||
[chrlauncher] | ||
|
||
# Command line for Chromium: | ||
# | ||
# See here: | ||
# http://peter.sh/experiments/chromium-command-line-switches/ | ||
# | ||
# Command line for Chromium (string): | ||
# See here: http://peter.sh/experiments/chromium-command-line-switches/ | ||
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check --allow-outdated-plugins --disable-component-update | ||
|
||
# Chromium binaries directory: | ||
# | ||
# Chromium binaries directory (string): | ||
ChromiumDirectory=.\bin | ||
|
||
# Adobe Flash Player PPAPI DLL path: | ||
# | ||
# See here: | ||
# http://effect8.ru/soft/media/adobe-flash-player-portable.html | ||
# | ||
# Chromium binary file name (string): | ||
ChromiumBinary=chrome.exe | ||
|
||
# Adobe Flash Player PPAPI portable library path (string): | ||
# Download here: http://effect8.ru/soft/media/adobe-flash-player-portable.html | ||
FlashPlayerPath=.\plugins\pepflashplayer.dll | ||
|
||
# Set Chromium binaries architecture: | ||
# Set Chromium binaries architecture (integer): | ||
# | ||
# 0 -> autodetect (default) | ||
# 64 -> 64-bit | ||
# 32 -> 32-bit | ||
# | ||
ChromiumArchitecture=0 | ||
|
||
# Type of Chromium builds: | ||
# Auto download updates if founded (boolean) | ||
# | ||
# dev-official -> official development builds from snapshots repository (default) | ||
# dev-codecs-sync -> unofficial development builds with codecs from "github.com/henrypp/chromium" | ||
# stable-codecs-sync -> unofficial stable builds with codecs from "github.com/henrypp/chromium" | ||
# dev-codecs-nosync -> unofficial development builds with codecs and without the profile button from "github.com/henrypp/chromium" | ||
# stable-codecs-nosync -> unofficial stable builds with codecs and without the profile button from "github.com/henrypp/chromium" | ||
# false -> show tray tip if update found, downloading manually (default) | ||
# true -> auto download update and install it! | ||
ChromiumAutoDownload=falseboolean | ||
|
||
# Bring chrlauncher window when download started (boolean) | ||
# | ||
ChromiumType=dev-official | ||
# false -> don't bring main window to front automatically (default) | ||
# true -> bring chrlauncher window to front when download started | ||
ChromiumBringToFront=false | ||
|
||
# Check for new Chromium version once in X days: | ||
# Set error mode (boolean): | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day (default) | ||
# false -> show warning messages (default) | ||
# true -> no error messages will be shown | ||
ChromiumIsSilent=false | ||
|
||
# Type of Chromium builds: | ||
# | ||
ChromiumCheckPeriod=1 | ||
# dev-official -> official development builds from snapshots repository "commondatastorage.googleapis.com/chromium-browser-snapshots/index.html" | ||
# dev-codecs-sync -> unofficial development builds with codecs from "github.com/henrypp/chromium/releases" (default) | ||
# stable-codecs-sync -> unofficial stable builds with codecs from "github.com/henrypp/chromium/releases" | ||
# dev-codecs-nosync -> unofficial development builds with codecs and without the profile button from "github.com/henrypp/chromium/releases" | ||
# stable-codecs-nosync -> unofficial stable builds with codecs and without the profile button from "github.com/henrypp/chromium/releases" | ||
ChromiumType=dev-codecs-sync | ||
|
||
# Last update checking timestamp: | ||
# Check for new Chromium version once in X days (integer): | ||
# | ||
ChromiumCheckPeriodLast=0 | ||
# 1 -> check updates once in a 1 day (default) | ||
# 0 -> disable update checking | ||
# -1 -> force update checking | ||
ChromiumCheckPeriod=1 | ||
|
||
# Last cached founded build date of Chromium in unix-time format(integer): | ||
ChromiumLastBuild=0 | ||
|
||
# Last cached update checking timestamp (integer): | ||
ChromiumLastCheck=0 | ||
|
||
# Last cached founded version of Chromium (string): | ||
ChromiumLastVersion= | ||
|
||
Website: www.henrypp.org | ||
Support: [email protected] | ||
|
||
(c) 2016 Henry++ | ||
(c) 2015-2017 Henry++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.