Skip to content

Commit

Permalink
version 2.0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
mimecuvalo committed Sep 29, 2014
1 parent 9ed135c commit 8f3f613
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 17 deletions.
Binary file modified downloads/fireftp.xpi
Binary file not shown.
Binary file modified downloads/fireftp_all.xpi
Binary file not shown.
4 changes: 2 additions & 2 deletions src/build.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

FIREFTP_VER=2.0.20
FIREFTP_MIN=21.0
FIREFTP_VER=2.0.21
FIREFTP_MIN=32.0
FIREFTP_MAX=32.*
FIREFTP_MASTER=0
FIREFTP_DEBUG=0
Expand Down
19 changes: 5 additions & 14 deletions src/build_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,11 @@ fi

cp -R icons chrome/icons

if [ $FIREFTP_MASTER -eq 1 ]
then
sed -e s/__l10n__/$FIREFTP_LANG/g \
-e s/__VERSION__/$FIREFTP_VER/g \
-e s/__MINVERSION__/$FIREFTP_MIN/g \
-e s/__MAXVERSION__/$FIREFTP_MAX/g \
install.rdf.master > install.rdf
else
sed -e s/__l10n__/$FIREFTP_LANG/g \
-e s/__VERSION__/$FIREFTP_VER/g \
-e s/__MINVERSION__/$FIREFTP_MIN/g \
-e s/__MAXVERSION__/$FIREFTP_MAX/g \
install.rdf.in > install.rdf
fi
sed -e s/__l10n__/$FIREFTP_LANG/g \
-e s/__VERSION__/$FIREFTP_VER/g \
-e s/__MINVERSION__/$FIREFTP_MIN/g \
-e s/__MAXVERSION__/$FIREFTP_MAX/g \
install.rdf.in > install.rdf

sed -e s/__VERSION__/$FIREFTP_VER/g content/js/etc/globals.js.in > content/js/etc/globals.js

Expand Down
2 changes: 1 addition & 1 deletion src/content/js/etc/globals.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var gConnections = []; // array of all our ftp connections
var gConnection; // the main connection - where the magic happens
var gVersion = "2.0.20"; // version of FireFTP we're using
var gVersion = "2.0.21"; // version of FireFTP we're using
var gSlash; // holds '/' or '\\' depending on local system
var gPlatform; // holds what platform we're on
var gTransferTypes; // holds 'Auto', 'Binary', 'ASCII'
Expand Down

2 comments on commit 8f3f613

@XhmikosR
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mimecuvalo: can you all add the git tag for releases?

@mimecuvalo
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.

Please sign in to comment.