Skip to content

Commit

Permalink
Removing resources.go from Git
Browse files Browse the repository at this point in the history
  • Loading branch information
oxtoacart committed Feb 20, 2015
1 parent 3263525 commit 28da6d6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ flashlight.yaml
envvars.bash
Lantern.app
lantern.dmg
src/github.com/getlantern/flashlight/ui/resources.go
4 changes: 2 additions & 2 deletions crosscompile.bash
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ BUILD_DATE="`date -u +%Y%m%d%.%H%M%S`"
echo "Building flashlight version $VERSION ($BUILD_DATE)"
# gox -ldflags="-w -X main.version $VERSION -X main.buildDate $BUILD_DATE" -osarch="linux/386 linux/amd64 windows/386 darwin/amd64" github.com/getlantern/flashlight
# Compile for Mac
gox -ldflags="-w -X main.version $VERSION -X main.buildDate $BUILD_DATE" -osarch="darwin/amd64" -output="lantern_{{.OS}}_{{.Arch}}" github.com/getlantern/flashlight
gox -tags="prod" -ldflags="-w -X main.version $VERSION -X main.buildDate $BUILD_DATE" -osarch="darwin/amd64" -output="lantern_{{.OS}}_{{.Arch}}" github.com/getlantern/flashlight
# Compile for Windows (use -H=windowsgui ldflag to make this a Windows instead of a console app)
gox -ldflags="-w -X main.version $VERSION -X main.buildDate $BUILD_DATE -H=windowsgui" -osarch="windows/386" -output="lantern_{{.OS}}_{{.Arch}}" github.com/getlantern/flashlight
gox -tags="prod" -ldflags="-w -X main.version $VERSION -X main.buildDate $BUILD_DATE -H=windowsgui" -osarch="windows/386" -output="lantern_{{.OS}}_{{.Arch}}" github.com/getlantern/flashlight
3 changes: 0 additions & 3 deletions src/github.com/getlantern/flashlight/ui/resources.go

This file was deleted.

4 changes: 4 additions & 0 deletions src/github.com/getlantern/flashlight/ui/resources_stub.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// +build !prod
package ui

var Resources = []byte{}
6 changes: 0 additions & 6 deletions src/github.com/getlantern/ui/app/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@
</div>

<div id="global-nav" class="btn-group" dir="ltr">
<button type="button" class="btn btn-large btn-inverse"
ng-click="showModal('proxiedSites')"
ng-class="{active: model.modal == MODAL.proxiedSites}"
tooltip="{{ 'PROXIED_SITES_TITLE' | translate }}">
<i class="lsf-icon lsf-web"></i>
</button>
</div>
<div id="npending" ng-show="nfriendSuggestions" class="badge badge-important">{{ nfriendSuggestions | badgeCount }}</div>
</div>

0 comments on commit 28da6d6

Please sign in to comment.