Skip to content

Commit

Permalink
1.9 released
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypp committed Apr 19, 2016
1 parent 77b2e60 commit bb8182c
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 19 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v1.9 (19 April 2016)
+ now you can pass arguments to Chromium through launcher command line
- fixed parsing arguments ("blank tab" bug)
- fixed custom builds cleanup
- updated "SetDefaultBrowser" script
- updated PPAPI to 21.0.0.213
- minor bug fixes

v1.8 (19 March 2016)
+ now distributed under MIT license
+ support to download unofficial build with codecs (see chrlauncher.ini)
Expand Down
8 changes: 8 additions & 0 deletions bin/History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v1.9 (19 April 2016)
+ now you can pass arguments to Chromium through launcher command line
- fixed parsing arguments ("blank tab" bug)
- fixed custom builds cleanup
- updated "SetDefaultBrowser" script
- updated PPAPI to 21.0.0.213
- minor bug fixes

v1.8 (19 March 2016)
+ now distributed under MIT license
+ support to download unofficial build with codecs (see chrlauncher.ini)
Expand Down
Binary file modified bin/RegistryCleaner.reg
Binary file not shown.
53 changes: 34 additions & 19 deletions bin/SetDefaultBrowser.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set "CHRLAUNCHER_PATH=%~dp0chrlauncher.exe"
set "CHRLAUNCHER_ICON=\"%CHRLAUNCHER_PATH%\",0"
set "CHRLAUNCHER_ARGS=\"%CHRLAUNCHER_PATH%\" /url \"%%1\""
set "CHRLAUNCHER_ARGS=\"%CHRLAUNCHER_PATH%\" \"%%1\""

if not exist "%CHRLAUNCHER_PATH%" (

Expand All @@ -20,37 +20,52 @@ if not exist "%CHRLAUNCHER_PATH%" (

regedit /s "%~dp0RegistryCleaner.reg"

reg add "HKLM\Software\Classes\chrlauncherHTML" /v "" /t REG_SZ /d "chrlauncher document" /f
reg add "HKLM\Software\Classes\chrlauncherHTML" /v "" /t REG_SZ /d "Chromium HTML Document" /f
reg add "HKLM\Software\Classes\chrlauncherHTML\DefaultIcon" /v "" /t REG_SZ /d "%CHRLAUNCHER_ICON%" /f
reg add "HKLM\Software\Classes\chrlauncherHTML\shell\open\command" /v "" /t REG_SZ /d "%CHRLAUNCHER_ARGS%" /f

reg add "HKLM\Software\Classes\chrlauncherURL" /v "" /t REG_SZ /d "chrlauncher document" /f
reg add "HKLM\Software\Classes\chrlauncherURL" /v "" /t REG_SZ /d "Chromium URL Protocol" /f
reg add "HKLM\Software\Classes\chrlauncherURL" /v "EditFlags" /t REG_DWORD /d "2" /f
reg add "HKLM\Software\Classes\chrlauncherURL" /v "FriendlyTypeName" /t REG_SZ /d "Chromium URL" /f
reg add "HKLM\Software\Classes\chrlauncherURL" /v "URL Protocol" /t REG_SZ /d "" /f
reg add "HKLM\Software\Classes\chrlauncherURL\DefaultIcon" /v "" /t REG_SZ /d "%CHRLAUNCHER_ICON%" /f
reg add "HKLM\Software\Classes\chrlauncherURL\shell\open\command" /v "" /t REG_SZ /d "%CHRLAUNCHER_ARGS%" /f

reg add "HKLM\Software\RegisteredApplications" /v "chrlauncher" /t REG_SZ /d "Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities" /f
reg add "HKLM\Software\RegisteredApplications" /v "chrlauncher" /t REG_SZ /d "Software\Clients\StartMenuInternet\chrlauncher\Capabilities" /f

reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE" /v "" /t REG_SZ /d "chrlauncher" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher" /v "" /t REG_SZ /d "chrlauncher" /f

reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\DefaultIcon" /v "" /t REG_SZ /d "%CHRLAUNCHER_ICON%" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\DefaultIcon" /v "" /t REG_SZ /d "%CHRLAUNCHER_ICON%" /f

reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\shell\open\command" /v "" /t REG_SZ /d "\"%CHRLAUNCHER_PATH%\"" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\shell\open\command" /v "" /t REG_SZ /d "\"%CHRLAUNCHER_PATH%\"" /f

reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities" /v "ApplicationIcon" /t REG_SZ /d "%CHRLAUNCHER_ICON%" /f
reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities" /v "ApplicationName" /t REG_SZ /d "chrlauncher" /f
reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities" /v "ApplicationDescription" /t REG_SZ /d "Portable Chromium Launcher" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\InstallInfo" /v "IconsVisible" /t REG_DWORD /d "1" /f

reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities\FileAssociations" /v ".htm" /t REG_SZ /d "chrlauncherHTML" /f
reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities\FileAssociations" /v ".html" /t REG_SZ /d "chrlauncherHTML" /f
reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities\FileAssociations" /v ".shtml" /t REG_SZ /d "chrlauncherHTML" /f
reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities\FileAssociations" /v ".xht" /t REG_SZ /d "chrlauncherHTML" /f
reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities\FileAssociations" /v ".xhtml" /t REG_SZ /d "chrlauncherHTML" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities" /v "ApplicationIcon" /t REG_SZ /d "%CHRLAUNCHER_ICON%" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities" /v "ApplicationName" /t REG_SZ /d "chrlauncher" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities" /v "ApplicationDescription" /t REG_SZ /d "Chromium (portable)" /f

reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities\URLAssociations" /v "ftp" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities\URLAssociations" /v "http" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities\URLAssociations" /v "https" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\CHRLAUNCHER.EXE\Capabilities\URLAssociations" /v "mailto" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\FileAssociations" /v ".htm" /t REG_SZ /d "chrlauncherHTML" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\FileAssociations" /v ".html" /t REG_SZ /d "chrlauncherHTML" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\FileAssociations" /v ".shtml" /t REG_SZ /d "chrlauncherHTML" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\FileAssociations" /v ".xht" /t REG_SZ /d "chrlauncherHTML" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\FileAssociations" /v ".xhtml" /t REG_SZ /d "chrlauncherHTML" /f

reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\StartMenu" /v "StartMenuInternet" /t REG_SZ /d "chrlauncher" /f

reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "ftp" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "http" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "https" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "mailto" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "webcal" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "urn" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "tel" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "smsto" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "sms" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "nntp" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "news" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "mms" /t REG_SZ /d "chrlauncherURL" /f
reg add "HKLM\Software\Clients\StartMenuInternet\chrlauncher\Capabilities\URLAssociations" /v "irc" /t REG_SZ /d "chrlauncherURL" /f

)
)
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 bb8182c

Please sign in to comment.