-
-
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
24 changed files
with
6,283 additions
and
79 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,87 @@ | ||
# chrlauncher | ||
|
||
Small and very fast portable Chromium launcher and updater. | ||
Small and very fast portable launcher and updater for Chromium and Mozilla Firefox. | ||
|
||
#### Supported browser | ||
- Launcher - all Chromium based browsers (see "Folder structure"). | ||
- Updater - only Chromium. | ||
- Launcher - Chromium, Mozilla Firefox and their clones (hi Google Chrome!). | ||
- Updater - Chromium, Mozilla Firefox. | ||
|
||
#### Folder structure | ||
- \bin - Chromium binaries directory. | ||
- \profile - Chromium profile directory. | ||
- chromium\bin - Chromium binaries directory. | ||
- firefox\bin - Mozilla Firefox binaries directory. | ||
|
||
#### Command line: | ||
- /browser chromium - run Chromium | ||
- /browser firefox - run Mozilla Firefox | ||
|
||
#### Settings | ||
~~~ | ||
[chrlauncher] | ||
# Select Chromium architecture: | ||
# Set binary architecture: | ||
# | ||
# 0 -> autodetect (default) | ||
# 64 -> 64-bit | ||
# 32 -> 32-bit | ||
# | ||
BrowserArchitecture=0 | ||
# Last update checking timestamp: | ||
# | ||
# 0 -> auto detected | ||
# 64 -> check for 64-bit Chromium | ||
# 32 -> check for 32-bit Chromium | ||
ChromiumArchitecture=0 | ||
BrowserCheckDate=0 | ||
# Check for new version once in X days: | ||
# Check for new browser version once in X days: | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day (default) | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day | ||
ChromiumCheckDays=1 | ||
BrowserCheckPeriod=1 | ||
# Command line for run Chromium | ||
# See here: http://peter.sh/experiments/chromium-command-line-switches/ | ||
# Select internet browser: | ||
# | ||
# chromium -> Chromium (default) | ||
# firefox -> Firefox | ||
# | ||
#ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check | ||
BrowserName=chromium | ||
# Command line for Chromium | ||
# | ||
# See here: | ||
# http://peter.sh/experiments/chromium-command-line-switches/ | ||
# | ||
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check | ||
# Chromium binaries directory | ||
# | ||
#ChromiumDirectory=bin | ||
ChromiumDirectory=.\chromium\bin | ||
# Command line for Firefox | ||
# | ||
# See here: | ||
# https://developer.mozilla.org/docs/Mozilla/Command_Line_Options | ||
# | ||
FirefoxCommandLine=-profile "..\profile" -no-remote | ||
# Firefox binaries directory | ||
# | ||
FirefoxDirectory=.\firefox\bin | ||
# Firefox update channel | ||
# | ||
# release -> Release channel (default) | ||
# esr -> ESR (Extended Support Release) | ||
# | ||
FirefoxChannel=release | ||
# Localization: | ||
# | ||
# en-US -> english (default) | ||
# ru -> russian | ||
# | ||
# See here: | ||
# https://ftp.mozilla.org/pub/firefox/releases/latest/README.txt | ||
# | ||
FirefoxLocalization=en-US | ||
~~~ | ||
Website: www.henrypp.org<br /> | ||
Support: [email protected]<br /> | ||
|
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,39 +1,86 @@ | ||
chrlauncher | ||
|
||
Small and very fast portable Chromium launcher and updater. | ||
Small and very fast portable launcher and updater for Chromium and Mozilla Firefox. | ||
|
||
Supported browser: | ||
- Launcher - all Chromium based browsers (see "Folder structure"). | ||
- Updater - only Chromium. | ||
- Launcher - Chromium, Mozilla Firefox and their clones (hi Google Chrome!). | ||
- Updater - Chromium, Mozilla Firefox. | ||
|
||
Folder structure: | ||
- \bin - Chromium binaries directory. | ||
- \profile - Chromium profile directory. | ||
- chromium\bin - Chromium binaries directory. | ||
- firefox\bin - Mozilla Firefox binaries directory. | ||
|
||
Command line: | ||
- /browser chromium - run Chromium | ||
- /browser firefox - run Mozilla Firefox | ||
|
||
Settings: | ||
[chrlauncher] | ||
|
||
# Select Chromium architecture: | ||
# Set binary architecture: | ||
# | ||
# 0 -> autodetect (default) | ||
# 64 -> 64-bit | ||
# 32 -> 32-bit | ||
# | ||
BrowserArchitecture=0 | ||
|
||
# Last update checking timestamp: | ||
# | ||
# 0 -> auto detected | ||
# 64 -> check for 64-bit Chromium | ||
# 32 -> check for 32-bit Chromium | ||
ChromiumArchitecture=0 | ||
BrowserCheckDate=0 | ||
|
||
# Check for new version once in X days: | ||
# Check for new browser version once in X days: | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day (default) | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day | ||
ChromiumCheckDays=1 | ||
BrowserCheckPeriod=1 | ||
|
||
# Command line for run Chromium | ||
# See here: http://peter.sh/experiments/chromium-command-line-switches/ | ||
# Select internet browser: | ||
# | ||
# chromium -> Chromium (default) | ||
# firefox -> Firefox | ||
# | ||
#ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check | ||
BrowserName=chromium | ||
|
||
# Command line for Chromium | ||
# | ||
# See here: | ||
# http://peter.sh/experiments/chromium-command-line-switches/ | ||
# | ||
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check | ||
|
||
# Chromium binaries directory | ||
# | ||
#ChromiumDirectory=bin | ||
ChromiumDirectory=.\chromium\bin | ||
|
||
# Command line for Firefox | ||
# | ||
# See here: | ||
# https://developer.mozilla.org/docs/Mozilla/Command_Line_Options | ||
# | ||
FirefoxCommandLine=-profile "..\profile" -no-remote | ||
|
||
# Firefox binaries directory | ||
# | ||
FirefoxDirectory=.\firefox\bin | ||
|
||
# Firefox update channel | ||
# | ||
# release -> Release channel (default) | ||
# esr -> ESR (Extended Support Release) | ||
# | ||
FirefoxChannel=release | ||
|
||
# Localization: | ||
# | ||
# en-US -> english (default) | ||
# ru -> russian | ||
# | ||
# See here: | ||
# https://ftp.mozilla.org/pub/firefox/releases/latest/README.txt | ||
# | ||
FirefoxLocalization=en-US | ||
|
||
Website: www.henrypp.org | ||
Support: [email protected] | ||
|
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,23 +1,66 @@ | ||
[chrlauncher] | ||
|
||
# Select Chromium architecture: | ||
# Set binary architecture: | ||
# | ||
# 0 -> auto detected | ||
# 64 -> check for 64-bit Chromium | ||
# 32 -> check for 32-bit Chromium | ||
ChromiumArchitecture=0 | ||
# 0 -> autodetect (default) | ||
# 64 -> 64-bit | ||
# 32 -> 32-bit | ||
# | ||
BrowserArchitecture=0 | ||
|
||
# Last update checking timestamp: | ||
# | ||
BrowserCheckDate=0 | ||
|
||
# Check for new browser version once in X days: | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day (default) | ||
# | ||
BrowserCheckPeriod=1 | ||
|
||
# Check for new version once in X days: | ||
# Select internet browser: | ||
# | ||
# chromium -> Chromium (default) | ||
# firefox -> Firefox | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day | ||
ChromiumCheckDays=1 | ||
BrowserName=chromium | ||
|
||
# Command line for run Chromium | ||
# See here: http://peter.sh/experiments/chromium-command-line-switches/ | ||
# Command line for Chromium | ||
# | ||
# See here: | ||
# http://peter.sh/experiments/chromium-command-line-switches/ | ||
# | ||
#ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check | ||
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check | ||
|
||
# Chromium binaries directory | ||
# | ||
#ChromiumDirectory=bin | ||
ChromiumDirectory=.\chromium\bin | ||
|
||
# Command line for Firefox | ||
# | ||
# See here: | ||
# https://developer.mozilla.org/docs/Mozilla/Command_Line_Options | ||
# | ||
FirefoxCommandLine=-profile "..\profile" -no-remote | ||
|
||
# Firefox binaries directory | ||
# | ||
FirefoxDirectory=.\firefox\bin | ||
|
||
# Firefox update channel | ||
# | ||
# release -> Release channel (default) | ||
# esr -> ESR (Extended Support Release) | ||
# | ||
FirefoxChannel=release | ||
|
||
# Localization: | ||
# | ||
# en-US -> english (default) | ||
# ru -> russian | ||
# | ||
# See here: | ||
# https://ftp.mozilla.org/pub/firefox/releases/latest/README.txt | ||
# | ||
FirefoxLocalization=en-US |
Oops, something went wrong.