Skip to content

Commit

Permalink
1.7 released.
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypp committed Feb 23, 2016
1 parent e28220a commit c67a487
Show file tree
Hide file tree
Showing 9 changed files with 110 additions and 40 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.7 (23 February 2016)
+ support to use portable version of PPAPI (see "FlashPlayerPath" config)
- fixed "SetDefaultBrowser" script (now used internal win7 feature to set as default browser)
- removed std::regex (saved about 100kb)
- stability improvements

v1.6 (22 January 2016)
+ added script to set chrlauncher as default browser
- cleanup Chromium package on extract
Expand Down Expand Up @@ -30,4 +36,4 @@ v1.1 (29 November 2015)
+ more information about update

v1.0 (26 November 2015)
- first public version
- first public version
43 changes: 25 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,37 +20,44 @@ To set as default internet browser run SetDefaultBrowser.bat (as admin).
~~~
[chrlauncher]
# Set browser architecture:
# Command line for Chromium:
#
# 0 -> autodetect (default)
# 64 -> 64-bit
# 32 -> 32-bit
# See here:
# http://peter.sh/experiments/chromium-command-line-switches/
#
BrowserArchitecture=0
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check --allow-outdated-plugins
# Last update checking timestamp:
# Chromium binaries directory:
#
BrowserCheckDate=0
ChromiumDirectory=.\bin
# Check for new browser version once in X days:
# Adobe Flash Player PPAPI DLL path:
#
# 0 -> disable update checking
# 1 -> once in day (default)
# See here:
# http://effect8.ru/soft/media/adobe-flash-player-portable.html
#
BrowserCheckPeriod=1
FlashPlayerPath=.\plugins\pepflashplayer.dll
# Command line for Chromium
# Set Chromium binaries architecture:
#
# See here:
# http://peter.sh/experiments/chromium-command-line-switches/
# 0 -> autodetect (default)
# 64 -> 64-bit
# 32 -> 32-bit
#
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check
ChromiumArchitecture=0
# Chromium binaries directory
# Check for new Chromium version once in X days:
#
ChromiumDirectory=.\bin
# 0 -> disable update checking
# 1 -> once in day (default)
#
ChromiumCheckPeriod=1
# Last update checking timestamp:
#
ChromiumCheckPeriodLast=0
~~~
Website: www.henrypp.org<br />
Support: [email protected]<br />
<br />
(c) 2016 Henry++
(c) 2015, 2016 Henry++
8 changes: 7 additions & 1 deletion bin/History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.7 (23 February 2016)
+ support to use portable version of PPAPI (see "FlashPlayerPath" config)
- fixed "SetDefaultBrowser" script (now used internal win7 feature to set as default browser)
- removed std::regex (saved about 100kb)
- stability improvements

v1.6 (22 January 2016)
+ added script to set chrlauncher as default browser
- cleanup Chromium package on extract
Expand Down Expand Up @@ -30,4 +36,4 @@ v1.1 (29 November 2015)
+ more information about update

v1.0 (26 November 2015)
- first public version
- first public version
43 changes: 25 additions & 18 deletions bin/Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,37 +14,44 @@ Folder structure:
Settings:
[chrlauncher]

# Set browser architecture:
# Command line for Chromium:
#
# 0 -> autodetect (default)
# 64 -> 64-bit
# 32 -> 32-bit
# See here:
# http://peter.sh/experiments/chromium-command-line-switches/
#
BrowserArchitecture=0
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check --allow-outdated-plugins

# Last update checking timestamp:
# Chromium binaries directory:
#
BrowserCheckDate=0
ChromiumDirectory=.\bin

# Check for new browser version once in X days:
# Adobe Flash Player PPAPI DLL path:
#
# 0 -> disable update checking
# 1 -> once in day (default)
# See here:
# http://effect8.ru/soft/media/adobe-flash-player-portable.html
#
BrowserCheckPeriod=1
FlashPlayerPath=.\plugins\pepflashplayer.dll

# Command line for Chromium
# Set Chromium binaries architecture:
#
# See here:
# http://peter.sh/experiments/chromium-command-line-switches/
# 0 -> autodetect (default)
# 64 -> 64-bit
# 32 -> 32-bit
#
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check
ChromiumArchitecture=0

# Chromium binaries directory
# Check for new Chromium version once in X days:
#
ChromiumDirectory=.\bin
# 0 -> disable update checking
# 1 -> once in day (default)
#
ChromiumCheckPeriod=1

# Last update checking timestamp:
#
ChromiumCheckPeriodLast=0

Website: www.henrypp.org
Support: [email protected]

(c) 2016 Henry++
(c) 2015, 2016 Henry++
38 changes: 38 additions & 0 deletions bin/chrlauncher.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[chrlauncher]

# Command line for Chromium:
#
# See here:
# http://peter.sh/experiments/chromium-command-line-switches/
#
ChromiumCommandLine=--user-data-dir=..\profile --no-default-browser-check --allow-outdated-plugins

# Chromium binaries directory:
#
ChromiumDirectory=.\bin

# Adobe Flash Player PPAPI DLL path:
#
# See here:
# http://effect8.ru/soft/media/adobe-flash-player-portable.html
#
FlashPlayerPath=.\plugins\pepflashplayer.dll

# Set Chromium binaries architecture:
#
# 0 -> autodetect (default)
# 64 -> 64-bit
# 32 -> 32-bit
#
ChromiumArchitecture=0

# Check for new Chromium version once in X days:
#
# 0 -> disable update checking
# 1 -> once in day (default)
#
ChromiumCheckPeriod=1

# Last update checking timestamp:
#
ChromiumCheckPeriodLast=0
6 changes: 6 additions & 0 deletions chrlauncher.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@
<BufferSecurityCheck>false</BufferSecurityCheck>
<OmitFramePointers>true</OmitFramePointers>
<WholeProgramOptimization>false</WholeProgramOptimization>
<TreatWarningAsError>true</TreatWarningAsError>
</ClCompile>
<Link>
<GenerateDebugInformation>Debug</GenerateDebugInformation>
Expand Down Expand Up @@ -174,6 +175,7 @@
<BufferSecurityCheck>false</BufferSecurityCheck>
<OmitFramePointers>true</OmitFramePointers>
<WholeProgramOptimization>false</WholeProgramOptimization>
<TreatWarningAsError>true</TreatWarningAsError>
</ClCompile>
<Link>
<GenerateDebugInformation>Debug</GenerateDebugInformation>
Expand Down Expand Up @@ -215,6 +217,8 @@
<EnableParallelCodeGeneration>
</EnableParallelCodeGeneration>
<BufferSecurityCheck>false</BufferSecurityCheck>
<TreatWarningAsError>true</TreatWarningAsError>
<WholeProgramOptimization>true</WholeProgramOptimization>
</ClCompile>
<Link>
<GenerateDebugInformation>No</GenerateDebugInformation>
Expand Down Expand Up @@ -257,6 +261,8 @@
<EnableParallelCodeGeneration>
</EnableParallelCodeGeneration>
<BufferSecurityCheck>false</BufferSecurityCheck>
<TreatWarningAsError>true</TreatWarningAsError>
<WholeProgramOptimization>true</WholeProgramOptimization>
</ClCompile>
<Link>
<GenerateDebugInformation>No</GenerateDebugInformation>
Expand Down
4 changes: 2 additions & 2 deletions src/include/unzip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3504,8 +3504,8 @@ int unzReadCurrentFile (unzFile file, voidp buf, unsigned len, bool *reached_eo
pfile_in_zip_read_info->stream.avail_in = (uInt)uReadThis;
//
if (pfile_in_zip_read_info->encrypted)
{ char *buf = (char*)pfile_in_zip_read_info->stream.next_in;
for (unsigned int i=0; i<uReadThis; i++) buf[i]=zdecode(pfile_in_zip_read_info->keys,buf[i]);
{ char *bufx = (char*)pfile_in_zip_read_info->stream.next_in;
for (unsigned int i=0; i<uReadThis; i++) bufx[i]=zdecode(pfile_in_zip_read_info->keys, bufx[i]);
}
}

Expand Down
Binary file modified src/main.cpp
Binary file not shown.
Binary file modified src/main.h
Binary file not shown.

0 comments on commit c67a487

Please sign in to comment.