Skip to content

Commit

Permalink
v1.5 released
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypp committed Dec 17, 2015
1 parent 0373adc commit cda45ed
Show file tree
Hide file tree
Showing 24 changed files with 6,283 additions and 79 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.5 (17 December 2015)
+ added "Mozilla Firefox" support
+ added new settings
+ added command line for run specified browser
- fixed CreateProcess current directory parameter

v1.4 (4 December 2015)
+ added "ChromiumDirectory" setting
- fixed statusbar flickering
Expand Down
83 changes: 65 additions & 18 deletions README.md
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 />
Expand Down
6 changes: 6 additions & 0 deletions bin/History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.5 (17 December 2015)
+ added "Mozilla Firefox" support
+ added new settings
+ added command line for run specified browser
- fixed CreateProcess current directory parameter

v1.4 (4 December 2015)
+ added "ChromiumDirectory" setting
- fixed statusbar flickering
Expand Down
83 changes: 65 additions & 18 deletions bin/Readme.txt
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]
Expand Down
69 changes: 56 additions & 13 deletions bin/chrlauncher.ini
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
Loading

0 comments on commit cda45ed

Please sign in to comment.