~ubuntu-branches/ubuntu/trusty/ricochet/trusty

« back to all changes in this revision

Viewing changes to ricochet-0.2/ricochet

  • Committer: Package Import Robot
  • Author(s): Keith Packard
  • Date: 2012-05-30 15:19:02 UTC
  • Revision ID: package-import@ubuntu.com-20120530151902-z47w0cxilb0p6wmi
Tags: 0.2
* Rename 'rrclient' to 'ricochet'
* Add name/host selection dialog
* Add build dependency on 'nickle'. Closes: #674302.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env nickle
 
2
 
 
3
if (dim(argv) == 0)
 
4
        argv = (string[*]) { "ricochet" };
 
5
 
 
6
Command::nickle_path = "/usr/share/ricochet:" + Command::nickle_path;
 
7
 
 
8
autoload Client::Main;
 
9
autoload Client::Host;
 
10
 
 
11
Client::Host::rrserve_path = "/usr/games" + "/rrserve";
 
12
 
 
13
Client::Main::main();