Skip to content

Commit

Permalink
v1.4 released
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypp committed Dec 4, 2015
1 parent 508eabb commit 4b0d6be
Show file tree
Hide file tree
Showing 10 changed files with 428 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.4 (4 December 2015)
+ added "ChromiumDirectory" setting
- fixed statusbar flickering

v1.3 (1 December 2015)
- fixed incorrect version checking

Expand Down
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 />
Expand Down
21 changes: 21 additions & 0 deletions bin/History.txt
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
340 changes: 340 additions & 0 deletions bin/License.txt

Large diffs are not rendered by default.

41 changes: 41 additions & 0 deletions bin/Readme.txt
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++
15 changes: 8 additions & 7 deletions bin/chrlauncher.ini
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
4 changes: 2 additions & 2 deletions chrlauncher.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<ExceptionHandling>false</ExceptionHandling>
<MinimalRebuild>true</MinimalRebuild>
<DebugInformationFormat>None</DebugInformationFormat>
<PreprocessorDefinitions>_UNICODE;UNICODE;_CRT_SECURE_NO_WARNINGS;APPLICATION_NO_ABOUT; APPLICATION_NO_SETTINGS; APPLICATION_NO_UPDATES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>_UNICODE;UNICODE;_CRT_SECURE_NO_WARNINGS;APPLICATION_NO_SETTINGS;APPLICATION_NO_UPDATES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<OmitFramePointers>true</OmitFramePointers>
<EnableParallelCodeGeneration>false</EnableParallelCodeGeneration>
<BufferSecurityCheck>false</BufferSecurityCheck>
Expand Down Expand Up @@ -214,7 +214,7 @@
<OmitFramePointers>true</OmitFramePointers>
<MinimalRebuild>true</MinimalRebuild>
<DebugInformationFormat>None</DebugInformationFormat>
<PreprocessorDefinitions>_UNICODE;UNICODE;_CRT_SECURE_NO_WARNINGS;APPLICATION_NO_ABOUT; APPLICATION_NO_SETTINGS; APPLICATION_NO_UPDATES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>_UNICODE;UNICODE;_CRT_SECURE_NO_WARNINGS;APPLICATION_NO_SETTINGS;APPLICATION_NO_UPDATES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<EnableParallelCodeGeneration>false</EnableParallelCodeGeneration>
<BufferSecurityCheck>false</BufferSecurityCheck>
</ClCompile>
Expand Down
Binary file modified src/main.cpp
Binary file not shown.
Binary file modified src/main.h
Binary file not shown.
Binary file modified src/resource.rc
Binary file not shown.

0 comments on commit 4b0d6be

Please sign in to comment.