-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* develop: Bump version to 2.1.0 Update copyright year to 2017. Correct a contributor’s name. Update the compilers. Add a build system for making releases using gulp. Add a workaround a bug in nwjs/nw.js#5513 Update the URL to be relative. Replace `require(‘nw.gui’)` with the global `nw`. Remove setting the `localStorage` of the `global`. It’s set by default. Improve the feature Use JSON files and update default JSON config files Support for AutoPrefix Config on CSS, LESS and Sass change the default value of maxBuffer #162
- Loading branch information
Showing
53 changed files
with
1,043 additions
and
207 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,30 @@ | ||
*.sublime-project | ||
*.sublime-workspace | ||
test | ||
tests | ||
benchmark | ||
example | ||
extra | ||
build | ||
nw | ||
nw.pak | ||
src/.sass-cache | ||
src/node-webkit.app | ||
src/ruby | ||
src/node_modules/.bin | ||
src/node_modules/clean-css | ||
src/node_modules/coffee-script | ||
src/node_modules/dustjs-linkedin | ||
src/node_modules/less | ||
src/node_modules/uglify-js | ||
src/node_modules/autoprefixer | ||
src/rubygems/bin | ||
src/rubygems/gems | ||
src/rubygems/specifications | ||
*.DS_Store | ||
*.map | ||
.idea | ||
*.sublime-project | ||
*.sublime-workspace | ||
test | ||
tests | ||
benchmark | ||
example | ||
extra | ||
build | ||
nw | ||
nw.pak | ||
src/.sass-cache | ||
src/node-webkit.app | ||
src/ruby | ||
src/node_modules/.bin | ||
src/node_modules/clean-css | ||
src/node_modules/coffee-script | ||
src/node_modules/dustjs-linkedin | ||
src/node_modules/less | ||
src/node_modules/uglify-js | ||
src/node_modules/autoprefixer | ||
src/rubygems | ||
src/rubygems/bin | ||
src/rubygems/gems | ||
src/rubygems/specifications | ||
*.DS_Store | ||
*.map | ||
.idea | ||
node_modules | ||
cache | ||
dist |
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
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,4 @@ | ||
# Linux related assets | ||
|
||
- `after-install` and `after-remove` scripts | ||
- `starter.desktop` and icons for launchers |
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,7 @@ | ||
#!/bin/bash | ||
|
||
# Link to the binary | ||
ln -sf /usr/share/koala/Koala /usr/local/bin/koala | ||
|
||
# Launcher icon | ||
desktop-file-install /usr/share/koala/koala.desktop |
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,7 @@ | ||
#!/bin/bash | ||
|
||
# Link to the binary | ||
rm -f /usr/local/bin/koala | ||
|
||
# Launcher files | ||
rm -f /usr/share/applications/koala.desktop |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,11 @@ | ||
[Desktop Entry] | ||
Name=Koala | ||
Version=1.0 | ||
Exec=koala | ||
Comment=A cool tool for web developers | ||
Icon=koala | ||
Type=Application | ||
Terminal=false | ||
StartupNotify=true | ||
Encoding=UTF-8 | ||
Categories=Development;GTK;GNOME; |
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,3 @@ | ||
# OS X related assets | ||
|
||
- `dmg.json` config file for node-appdmg |
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,10 @@ | ||
{ | ||
"title": "Koala", | ||
"icon": "dmg_icon.icns", | ||
"background": "dmg_bg.png", | ||
"icon-size": 80, | ||
"contents": [ | ||
{ "x": 448, "y": 344, "type": "link", "path": "/Applications" }, | ||
{ "x": 192, "y": 344, "type": "file", "path": "../build/Koala/osx64/Koala.app" } | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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,3 @@ | ||
# Windows related assets | ||
|
||
- `installer.nsi` config file for nsis |
Binary file not shown.
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,58 @@ | ||
!include "MUI2.nsh" | ||
|
||
Name "Koala" | ||
BrandingText "koala-app.com" | ||
|
||
# set the icon | ||
!define MUI_ICON "icon.ico" | ||
|
||
# define the resulting installer's name: | ||
OutFile "..\dist\KoalaSetup.exe" | ||
|
||
# set the installation directory | ||
InstallDir "$PROGRAMFILES\Koala\" | ||
|
||
# app dialogs | ||
!insertmacro MUI_PAGE_WELCOME | ||
!insertmacro MUI_PAGE_INSTFILES | ||
|
||
!define MUI_FINISHPAGE_RUN_TEXT "Start Koala" | ||
!define MUI_FINISHPAGE_RUN "$INSTDIR\Koala.exe" | ||
|
||
!insertmacro MUI_PAGE_FINISH | ||
!insertmacro MUI_LANGUAGE "English" | ||
|
||
# default section start | ||
Section | ||
|
||
# delete the installed files | ||
RMDir /r $INSTDIR | ||
|
||
# define the path to which the installer should install | ||
SetOutPath $INSTDIR | ||
|
||
# specify the files to go in the output path | ||
File /r ..\build\Koala\win32\* | ||
|
||
# create the uninstaller | ||
WriteUninstaller "$INSTDIR\Uninstall Koala.exe" | ||
|
||
# create shortcuts in the start menu and on the desktop | ||
CreateShortCut "$SMPROGRAMS\Koala.lnk" "$INSTDIR\Koala.exe" | ||
CreateShortCut "$SMPROGRAMS\Uninstall Koala.lnk" "$INSTDIR\Uninstall Koala.exe" | ||
CreateShortCut "$DESKTOP\Koala.lnk" "$INSTDIR\Koala.exe" | ||
|
||
SectionEnd | ||
|
||
# create a section to define what the uninstaller does | ||
Section "Uninstall" | ||
|
||
# delete the installed files | ||
RMDir /r $INSTDIR | ||
|
||
# delete the shortcuts | ||
Delete "$SMPROGRAMS\Koala.lnk" | ||
Delete "$SMPROGRAMS\Uninstall Koala.lnk" | ||
Delete "$DESKTOP\Koala.lnk" | ||
|
||
SectionEnd |
Oops, something went wrong.