Compare commits

..
5 Commits
Author SHA1 Message Date
Francisco Ryan Tolmasky I 5be4fb7642 Updating version strings to 0.7.1.
Reviewed by me.
2009-06-13 11:42:23 -07:00
Francisco Ryan Tolmasky I f78c341a11 Fix for capitalization issue with circular slider images.
Reviewed by me.
2009-06-13 11:42:23 -07:00
Francisco Ryan Tolmasky I 4d907f2a88 Fix for window returning a direct reference to its frame instead of a copy.
Reviewed by me.
2009-06-13 11:42:23 -07:00
Francisco Ryan Tolmasky I c028092bcd Fix for dragged types not working on decoded views.
Reviewed by me.
2009-06-13 11:42:23 -07:00
Francisco Ryan Tolmasky I 82411047e1 Made CPImageView accept image drag and drop.
Reviewed by me.

Conflicts:

	AppKit/CPPasteboard.j
2009-06-13 11:42:23 -07:00
9 changed files with 5 additions and 17 deletions
+1 -1
-3
View File
@@ -13,9 +13,6 @@ function printUsage()
function main()
{
// FIXME: ARGS
system.args.shift();
if (system.args.length < 1)
return printUsage();
-3
View File
@@ -164,9 +164,6 @@ function preprocess(aFilePath, outFilePath, gccArgs, flags)
function main()
{
// FIXME: ARGS
system.args.shift();
var filePaths = [],
outFilePaths = [],
-3
View File
@@ -12,9 +12,6 @@ if (system.env["OBJJ_INCLUDE_PATHS"])
window.args = system.args;
// FIXME: ARGS
system.args.shift();
with (window)
{
eval(File.read(OBJJ_HOME + "/lib/Frameworks/Objective-J/rhino.platform/Objective-J.js", { charset:"UTF-8" }));
+1 -3
View File
@@ -301,9 +301,7 @@ objj_search.prototype.request = function(aFilePath, aMethod)
try
{
// unclear whether plusses are reserved in the URI path
//request.open("GET", aFilePath.replace(/\+/g, "%2B"), YES);
request.open("GET", aFilePath, YES);
request.open("GET", aFilePath.replace(/\+/g, "%2B"), YES);
request.send("");
}
catch (anException)
-1
View File
@@ -37,6 +37,5 @@ done
chmod +x $INSTALL_DIR/share/objj/bin/*
gem install *.gem
gem cleanup objective-j
echo "Cappuccino Tools Installed"