-
-
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
10 changed files
with
428 additions
and
20 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 |
---|---|---|
|
@@ -2,38 +2,39 @@ | |
|
||
Small and very fast portable Chromium launcher and updater. | ||
|
||
#### Supported browser: | ||
- Launcher - all Chromium based browsers (see "Folder structure" organization). | ||
#### Supported browser | ||
- Launcher - all Chromium based browsers (see "Folder structure"). | ||
- Updater - only Chromium. | ||
|
||
#### Folder structure: | ||
#### Folder structure | ||
- \bin - Chromium binaries directory. | ||
- \profile - Chromium profile directory. | ||
|
||
#### Settings: | ||
#### Settings | ||
~~~ | ||
[chrlauncher] | ||
# ChromiumArchitecture | ||
# Select Chromium architecture: | ||
# | ||
# 0 -> auto detected | ||
# 64 -> check for 64-bit Chromium | ||
# 32 -> check for 32-bit Chromium | ||
ChromiumArchitecture=0 | ||
# ChromiumCheckDays | ||
# | ||
# Check for new version once in X days | ||
# Check for new version once in X days: | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day | ||
ChromiumCheckDays=1 | ||
# ChromiumCommandLine | ||
# | ||
# Command line for run 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 | ||
~~~ | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
v1.4 (4 December 2015) | ||
+ added "ChromiumDirectory" setting | ||
- fixed statusbar flickering | ||
|
||
v1.3 (1 December 2015) | ||
- fixed incorrect version checking | ||
|
||
v1.2 (30 November 2015) | ||
+ added checking for installation package is really Chromium archive | ||
+ added exit confirmation when downloading/installing | ||
- fixed architecture detection on various systems | ||
- changed settings description (see chrlauncher.ini) | ||
|
||
v1.1 (29 November 2015) | ||
+ code rewritten on c++ | ||
+ added select for downloading architecture | ||
+ added new settings (see chrlauncher.ini) | ||
+ more information about update | ||
|
||
v1.0 (26 November 2015) | ||
- first public version |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
chrlauncher | ||
|
||
Small and very fast portable Chromium launcher and updater. | ||
|
||
Supported browser: | ||
- Launcher - all Chromium based browsers (see "Folder structure"). | ||
- Updater - only Chromium. | ||
|
||
Folder structure: | ||
- \bin - Chromium binaries directory. | ||
- \profile - Chromium profile directory. | ||
|
||
Settings: | ||
[chrlauncher] | ||
|
||
# Select Chromium architecture: | ||
# | ||
# 0 -> auto detected | ||
# 64 -> check for 64-bit Chromium | ||
# 32 -> check for 32-bit Chromium | ||
ChromiumArchitecture=0 | ||
|
||
# Check for new version once in X days: | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day | ||
ChromiumCheckDays=1 | ||
|
||
# Command line for run 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 | ||
|
||
Website: www.henrypp.org | ||
Support: [email protected] | ||
|
||
(c) 2015 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
[chrlauncher] | ||
|
||
# ChromiumArchitecture | ||
# Select Chromium architecture: | ||
# | ||
# 0 -> auto detected | ||
# 64 -> check for 64-bit Chromium | ||
# 32 -> check for 32-bit Chromium | ||
ChromiumArchitecture=0 | ||
|
||
# ChromiumCheckDays | ||
# | ||
# Check for new version once in X days | ||
# Check for new version once in X days: | ||
# | ||
# 0 -> disable update checking | ||
# 1 -> once in day | ||
ChromiumCheckDays=1 | ||
|
||
# ChromiumCommandLine | ||
# | ||
# Command line for run 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 |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.