Skip to content

Commit

Permalink
change server URL
Browse files Browse the repository at this point in the history
  • Loading branch information
tillawy committed Dec 31, 2015
1 parent ff4bab2 commit cc5c19c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .bin/generate.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
DIR=~/works/hilitit/hilitit-rails-chrome-extension/app/images;
ls ${DIR} | grep Marker | grep 128 | while read file; do
NAME=$(echo ${file}| sed 's|-[0-9]*.png||');
#echo ${NAME};
echo "resizing ${file} ...";
convert ${DIR}/${file} -resize 38x38 ${DIR}/${NAME}-38.png;
convert ${DIR}/${file} -resize 19x19 ${DIR}/${NAME}-19.png;
convert ${DIR}/${file} -resize 16x16 ${DIR}/${NAME}-16.png;
done
4 changes: 2 additions & 2 deletions app/_locales/en/messages.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"appName": {
"message": "Hilit.it Chrome",
"message": "WeHighlight.com Chrome",
"description": "The name of the application"
},
"appDescription": {
"message": "Hilit.it Chrome Extension",
"message": "Wehighlight.com Chrome Extension",
"description": "The Hilit.it Chrome extension client"
}
}
Binary file modified app/images/Marker.sketch
Binary file not shown.
Binary file added app/images/StoreLogo-128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/scripts.babel/background.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

//var SERVER='127.0.0.1:9002';
var SERVER='www.hilit.it';
var SERVER='www.wehighlight.com';
var HILITIT_USER='hilit_it_user';
var HILITIT_PASS='hilit_it_pass';
var isLoggedIn = false;
Expand Down

0 comments on commit cc5c19c

Please sign in to comment.