Subversion Repositories FlightCtrl

Compare Revisions

Ignore whitespace Rev 303 → Rev 305

/branches/ligi_j2me/bin/v0.34/DUBwise_128x.jad
0,0 → 1,8
MIDlet-Jar-URL: DUBwise_128x.jar
MIDlet-Jar-Size: 49046
MIDlet-Name: DUBwise
MIDlet-Vendor: LiGi
MIDlet-Version: 0.34
MIDlet-1: DUBwise, i.png, DUBwise
MIDletX-No-Command: true
MIDlet-Icon: i.png
/branches/ligi_j2me/bin/v0.34/DUBwise_128x.jar
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/branches/ligi_j2me/bin/v0.34/DUBwise_176x220.jad
0,0 → 1,8
MIDlet-Jar-URL: DUBwise_176x220.jar
MIDlet-Jar-Size: 55270
MIDlet-Name: DUBwise
MIDlet-Vendor: LiGi
MIDlet-Version: 0.34
MIDlet-1: DUBwise, i.png, DUBwise
MIDletX-No-Command: true
MIDlet-Icon: i.png
/branches/ligi_j2me/bin/v0.34/DUBwise_176x220.jar
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/branches/ligi_j2me/build_all.rb
0,0 → 1,23
# little ruby script to build versions for all resolution types
#
# Author: Marcus -LiGi- Bueschleb
# MailTo: ligi@smart4mobile.de
#
 
 
resdir="res/"
 
`ant clean`
 
Dir[resdir+"*"].each { |res_type|
res_type.gsub!(resdir,"")
p res_type
 
prefs_file= File.new("build.props","w")
prefs_file << ("screensize="+res_type+"\n")
prefs_file.close
 
log= `ant build`
log.each_line { |l| puts l }
}