Forum: Games
2013-07-01, 09:46
|
Replies: 1,269
Views: 703,462
Re: [Announce] apkenv (N900, N950, N9)
I got Super Hexagon fully working with sound and fonts. /tmp on N9/50 is not enough so using a custom tempfile command I got apkenv to create the temp files elsewhere.
Copy this to a script and...
|
Forum: Games
2012-08-21, 18:18
|
Replies: 3
Views: 2,420
|
Forum: MeeGo / Harmattan
2012-07-13, 17:37
|
Replies: 38
Views: 23,227
|
Forum: MeeGo / Harmattan
2012-07-11, 16:31
|
Replies: 3
Views: 1,591
Re: Moving files in meego
When you connect your N9 to pc it will show you the folder which is /home/user/MyDocs on the phone. If you need to copy something to /home/user do "cp /home/user/MyDocs/myfiletocopy /home/user/"...
|
Forum: Applications
2012-07-10, 16:26
|
Replies: 10
Views: 6,139
|
Forum: Development
2012-06-27, 20:22
|
Replies: 118
Views: 50,300
Re: The Grand DEB Packaging Thread!
It should delete duplicate enters that windows makes "\r\n" to "\n".
Also if you want to add an icon to your package (seen in package managers like hildon application manager and harmattan...
|
Forum: Development
2012-06-27, 19:57
|
Replies: 118
Views: 50,300
Re: The Grand DEB Packaging Thread!
I don't know how you would do that in windows but you can save this modified script as make-deb to automatically convert the characters:
#!/bin/sh
#create .deb files for packages...
|
Forum: Development
2012-06-27, 19:25
|
Replies: 118
Views: 50,300
Re: The Grand DEB Packaging Thread!
I think your files don't use unix newlines.
Convert the control file:
tr -d '\r' < /home/user/foopackage/DEBIAN/control > /home/user/foopackage/DEBIAN/controltmp
mv...
|
Forum: Development
2012-06-27, 16:20
|
Replies: 118
Views: 50,300
Re: The Grand DEB Packaging Thread!
That character comes from you control file. It reads the "Versio: 0.1" line from there, same for the package name. The file formatting of your control file might not be right. Check if there are any...
|
Forum: Development
2012-06-27, 15:34
|
Replies: 118
Views: 50,300
Re: The Grand DEB Packaging Thread!
No its ment to be "ar" not "tar". You need to install binutils package to get ar.
apt-get install binutils
If you enter "make-deb /home/user/package" the deb will be in /home/user.
|
Forum: Development
2012-06-27, 07:50
|
Replies: 118
Views: 50,300
Re: The Grand DEB Packaging Thread!
Save it to MyDocs folder as make-deb.sh and then do this as root:
cp /home/user/MyDocs/make-deb.sh /usr/bin/make-deb
chmod +x /usr/bin/make-deb
Then you can use it.
Alternatively just save it...
|
Forum: Development
2012-06-26, 20:07
|
Replies: 118
Views: 50,300
Re: The Grand DEB Packaging Thread!
I made a script for creating .debs because of that "unrecongnized option '--format=gnu'" error. This is what I use:
#!/bin/sh
#create .deb files for packages (fremantle&harmattan)
if [ ! $1...
|
Forum: Nokia N9 / N950
2012-05-18, 08:00
|
Replies: 15
Views: 3,449
|
Forum: Nokia N900
2012-03-19, 18:20
|
Replies: 6
Views: 1,820
Re: rebooting immediately
If you have your n900 automatically connect to network you can try using ssh from your pc right when your n900 boots: "ssh user@xxx.xxx.xxx.xxx 'cp /backup/file /bin/'"
I've done it sometimes when...
|
Forum: General
2012-01-19, 05:29
|
Replies: 6
Views: 2,849
|
Forum: General
2012-01-07, 08:41
|
Replies: 9
Views: 3,955
Re: Device renaming
There is a file called "autorun.inf" in the MyDocs folder that has the drive icon filename and the device name. It might be hidden.
|
Forum: MeeGo / Harmattan
2012-01-05, 10:11
|
Replies: 2
Views: 1,503
|
Forum: MeeGo / Harmattan
2011-11-20, 14:58
|
Replies: 2
Views: 2,213
|
Forum: General
2011-08-29, 08:30
|
Replies: 17
Views: 6,771
|
Forum: Community
2011-06-27, 19:21
|
Replies: 1,015
Views: 278,075
Re: MeeGo Coding Competition 2011
Just added my entry (http://competition.meetmeego.org/submissions/40) to the competition. You can visit its website (http://tols17.oulu.fi/~matkarja/meego/) for videos.
Its a simple memory game...
|
Forum: Development
2011-06-26, 18:14
|
Replies: 48
Views: 18,967
|
Forum: Applications
2011-06-26, 14:49
|
Replies: 336
Views: 128,251
Re: [Announce] Enhanced lockscreen
You can make separate background for portrait and landscape modes. Just have the images on top of each other, both areas 800x480 as follows:
|
Forum: Maemo 5 / Fremantle
2011-06-24, 07:18
|
Replies: 33
Views: 6,257
Re: SDL on N900 / Maemo
Maybe its the way you go to fullscreen. Have you tried creating the screen surface already as a fullscreen surface with "SDL_SWSURFACE|SDL_FULLSCREEN"
|
Forum: Maemo 5 / Fremantle
2011-06-24, 06:58
|
Replies: 33
Views: 6,257
Re: SDL on N900 / Maemo
Include stdlib.h and you can use the code:
system("dbus-send /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view");
to do this.
You can either add a key combination or an on screen...
|
Forum: Nokia N900
2011-06-20, 20:38
|
Replies: 4
Views: 2,438
|