<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dragon1220</id>
	<title>WebOS Internals - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dragon1220"/>
	<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/wiki/Special:Contributions/Dragon1220"/>
	<updated>2026-05-02T10:13:16Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application_talk:Govnah&amp;diff=11336</id>
		<title>Application talk:Govnah</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application_talk:Govnah&amp;diff=11336"/>
		<updated>2010-09-14T04:46:44Z</updated>

		<summary type="html">&lt;p&gt;Dragon1220: added suggestion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Question:  Does the 'governor' select in Govnah (IE: Screenstate for example) keep governing the CPU even after 'Govnah' is closed?  --irwinr&lt;br /&gt;
Answer: Yes. It sets the settings, and the settings are used until the phone is rebooted or you reopen govnah to change them. --[[User:Oil|oil]] 23:11, 4 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Suggestion-Graphs ==&lt;br /&gt;
&lt;br /&gt;
* I would like to suggest fixing the min/max for graphs at specific values rather than auto scaling.&lt;br /&gt;
* I would like to suggest adding horizontal rules and labels for graphs to give them more meaning.&lt;br /&gt;
--[[User:Dolio|Dolio]] 06:50, 19 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Suggestion-Governor Defaults. ==&lt;br /&gt;
&lt;br /&gt;
Per discussion at  I would like to suggest that each of the Governors, when chosen, enforce a set of the ''best'' default settings for that Governor.  As opposed to the way the it currently appears to behave by inheriting settings from those set previously or those found in /proc. --[[User:Dolio|Dolio]] 06:54, 19 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
***Suggestion: the icon for the app should always show temp or the gov speed. Even once the app is closed it would be nice to see the numbers running. It is easier to tell that the app is working. Not to mention it would look better too. The icon already has that funcionality since it overlays the temp while the ap is open. *** 08/13/10&lt;/div&gt;</summary>
		<author><name>Dragon1220</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_Messaging_New_Cards_For_Each_Conversation&amp;diff=10407</id>
		<title>Patch Messaging New Cards For Each Conversation</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_Messaging_New_Cards_For_Each_Conversation&amp;diff=10407"/>
		<updated>2010-06-29T19:07:31Z</updated>

		<summary type="html">&lt;p&gt;Dragon1220: /* Major Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Works with: 1.0.4, 1.1&lt;br /&gt;
&lt;br /&gt;
The message app can be a pain when you have multiple conversations going on. You have to swipe back and then pick someone else quite often. It gets annoying. This modification makes it so a new card is created whenever you click into a conversation.&lt;br /&gt;
&lt;br /&gt;
Edit /usr/palm/applications/com.palm.app.messaging/app/controllers/listview-assistant.js&lt;br /&gt;
We are going to replace the launchChatView function with the following...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
launchChatView: function(chatThreadId) {&lt;br /&gt;
	//Need to jump to that stage if it exists&lt;br /&gt;
	var stageController = Mojo.Controller.appController.getStageController(&amp;quot;messaging&amp;quot;+chatThreadId);&lt;br /&gt;
		if (stageController) {&lt;br /&gt;
			stageController.activate();&lt;br /&gt;
			return;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
	var params = {name: 'messaging' + chatThreadId,&lt;br /&gt;
			lightweight: Mojo.Controller.appInfo.lwStages&lt;br /&gt;
	};&lt;br /&gt;
&lt;br /&gt;
	var callback = function(controller) {&lt;br /&gt;
		controller.pushScene('chatview',chatThreadId,{&lt;br /&gt;
					focusWindow: true&lt;br /&gt;
				});		&lt;br /&gt;
	};&lt;br /&gt;
&lt;br /&gt;
	Mojo.Controller.getAppController().createStageWithCallback(params, callback); //doesnt create ifit exists sooo&lt;br /&gt;
  },&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now in /usr/palm/applications/com.palm.app.messaging/app/controllers/chatview-assistant.js&lt;br /&gt;
Comment out lines 246 and 247 (WebOS 1.1: Lines '''289''' &amp;amp; '''290''').&lt;br /&gt;
This will make it so if you back gesture in a chat, then it doesn't bring you back to the conversation list or do anything else.&lt;br /&gt;
&lt;br /&gt;
Either reboot or refresh/kill LunaSysMgr.&lt;br /&gt;
&lt;br /&gt;
== Concerns==&lt;br /&gt;
There's some delay in creating the new cards. I'm not sure why though.&lt;br /&gt;
&lt;br /&gt;
Unread message counter in listview doesn't always update when you view a conversation.&lt;br /&gt;
&lt;br /&gt;
Make sure to comment out the correct lines on the last step (disable back gesture).  In 1.3, they are lines 324 and 325.  The block to look for is:&lt;br /&gt;
&lt;br /&gt;
    } else if(event.type == Mojo.Event.back) {&lt;br /&gt;
        event.stop();&lt;br /&gt;
        this.popAndRevealListView();&lt;br /&gt;
        return;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
which should be changed to:&lt;br /&gt;
&lt;br /&gt;
    } else if(event.type == Mojo.Event.back) {&lt;br /&gt;
        //event.stop();&lt;br /&gt;
        //this.popAndRevealListView();&lt;br /&gt;
        return;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
== Major Bugs==&lt;br /&gt;
None yet&lt;br /&gt;
&lt;br /&gt;
Enjoy!&lt;br /&gt;
-Mike dg&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* verified by tictac (after a few miscues)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
****I found an error. In trying to delete conversations. The main page with all the conversation acts like it is deleting the conversation, but when you reopen the page the conversation is there again. I dont know who to contact about this, so i am posting here. I had to uninstal this patch and delete the messages. then i reinstalled. I do like the convienence of the patch except for that one error. &amp;lt;br&amp;gt;&lt;br /&gt;
-Dragon1220&amp;lt;br&amp;gt;&lt;br /&gt;
**** after reinstallation the delete function seems to be working correctly now. &amp;lt;br&amp;gt;&lt;br /&gt;
-Dragon1220&lt;/div&gt;</summary>
		<author><name>Dragon1220</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_Messaging_New_Cards_For_Each_Conversation&amp;diff=10406</id>
		<title>Patch Messaging New Cards For Each Conversation</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_Messaging_New_Cards_For_Each_Conversation&amp;diff=10406"/>
		<updated>2010-06-29T18:33:45Z</updated>

		<summary type="html">&lt;p&gt;Dragon1220: /* Major Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Works with: 1.0.4, 1.1&lt;br /&gt;
&lt;br /&gt;
The message app can be a pain when you have multiple conversations going on. You have to swipe back and then pick someone else quite often. It gets annoying. This modification makes it so a new card is created whenever you click into a conversation.&lt;br /&gt;
&lt;br /&gt;
Edit /usr/palm/applications/com.palm.app.messaging/app/controllers/listview-assistant.js&lt;br /&gt;
We are going to replace the launchChatView function with the following...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
launchChatView: function(chatThreadId) {&lt;br /&gt;
	//Need to jump to that stage if it exists&lt;br /&gt;
	var stageController = Mojo.Controller.appController.getStageController(&amp;quot;messaging&amp;quot;+chatThreadId);&lt;br /&gt;
		if (stageController) {&lt;br /&gt;
			stageController.activate();&lt;br /&gt;
			return;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
	var params = {name: 'messaging' + chatThreadId,&lt;br /&gt;
			lightweight: Mojo.Controller.appInfo.lwStages&lt;br /&gt;
	};&lt;br /&gt;
&lt;br /&gt;
	var callback = function(controller) {&lt;br /&gt;
		controller.pushScene('chatview',chatThreadId,{&lt;br /&gt;
					focusWindow: true&lt;br /&gt;
				});		&lt;br /&gt;
	};&lt;br /&gt;
&lt;br /&gt;
	Mojo.Controller.getAppController().createStageWithCallback(params, callback); //doesnt create ifit exists sooo&lt;br /&gt;
  },&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now in /usr/palm/applications/com.palm.app.messaging/app/controllers/chatview-assistant.js&lt;br /&gt;
Comment out lines 246 and 247 (WebOS 1.1: Lines '''289''' &amp;amp; '''290''').&lt;br /&gt;
This will make it so if you back gesture in a chat, then it doesn't bring you back to the conversation list or do anything else.&lt;br /&gt;
&lt;br /&gt;
Either reboot or refresh/kill LunaSysMgr.&lt;br /&gt;
&lt;br /&gt;
== Concerns==&lt;br /&gt;
There's some delay in creating the new cards. I'm not sure why though.&lt;br /&gt;
&lt;br /&gt;
Unread message counter in listview doesn't always update when you view a conversation.&lt;br /&gt;
&lt;br /&gt;
Make sure to comment out the correct lines on the last step (disable back gesture).  In 1.3, they are lines 324 and 325.  The block to look for is:&lt;br /&gt;
&lt;br /&gt;
    } else if(event.type == Mojo.Event.back) {&lt;br /&gt;
        event.stop();&lt;br /&gt;
        this.popAndRevealListView();&lt;br /&gt;
        return;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
which should be changed to:&lt;br /&gt;
&lt;br /&gt;
    } else if(event.type == Mojo.Event.back) {&lt;br /&gt;
        //event.stop();&lt;br /&gt;
        //this.popAndRevealListView();&lt;br /&gt;
        return;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
== Major Bugs==&lt;br /&gt;
None yet&lt;br /&gt;
&lt;br /&gt;
Enjoy!&lt;br /&gt;
-Mike dg&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* verified by tictac (after a few miscues)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
****I found an error. In trying to delete conversations. The main page with all the conversation acts like it is deleting the conversation, but when you reopen the page the conversation is there again. I dont know who to contact about this, so i am posting here. I had to uninstal this patch and delete the messages. then i reinstalled. I do like the convienence of the patch except for that one error. &amp;lt;br&amp;gt;&lt;br /&gt;
-Dragon1220&lt;/div&gt;</summary>
		<author><name>Dragon1220</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_Messaging_New_Cards_For_Each_Conversation&amp;diff=10405</id>
		<title>Patch Messaging New Cards For Each Conversation</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_Messaging_New_Cards_For_Each_Conversation&amp;diff=10405"/>
		<updated>2010-06-29T18:31:57Z</updated>

		<summary type="html">&lt;p&gt;Dragon1220: /* Major Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Works with: 1.0.4, 1.1&lt;br /&gt;
&lt;br /&gt;
The message app can be a pain when you have multiple conversations going on. You have to swipe back and then pick someone else quite often. It gets annoying. This modification makes it so a new card is created whenever you click into a conversation.&lt;br /&gt;
&lt;br /&gt;
Edit /usr/palm/applications/com.palm.app.messaging/app/controllers/listview-assistant.js&lt;br /&gt;
We are going to replace the launchChatView function with the following...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
launchChatView: function(chatThreadId) {&lt;br /&gt;
	//Need to jump to that stage if it exists&lt;br /&gt;
	var stageController = Mojo.Controller.appController.getStageController(&amp;quot;messaging&amp;quot;+chatThreadId);&lt;br /&gt;
		if (stageController) {&lt;br /&gt;
			stageController.activate();&lt;br /&gt;
			return;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
	var params = {name: 'messaging' + chatThreadId,&lt;br /&gt;
			lightweight: Mojo.Controller.appInfo.lwStages&lt;br /&gt;
	};&lt;br /&gt;
&lt;br /&gt;
	var callback = function(controller) {&lt;br /&gt;
		controller.pushScene('chatview',chatThreadId,{&lt;br /&gt;
					focusWindow: true&lt;br /&gt;
				});		&lt;br /&gt;
	};&lt;br /&gt;
&lt;br /&gt;
	Mojo.Controller.getAppController().createStageWithCallback(params, callback); //doesnt create ifit exists sooo&lt;br /&gt;
  },&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now in /usr/palm/applications/com.palm.app.messaging/app/controllers/chatview-assistant.js&lt;br /&gt;
Comment out lines 246 and 247 (WebOS 1.1: Lines '''289''' &amp;amp; '''290''').&lt;br /&gt;
This will make it so if you back gesture in a chat, then it doesn't bring you back to the conversation list or do anything else.&lt;br /&gt;
&lt;br /&gt;
Either reboot or refresh/kill LunaSysMgr.&lt;br /&gt;
&lt;br /&gt;
== Concerns==&lt;br /&gt;
There's some delay in creating the new cards. I'm not sure why though.&lt;br /&gt;
&lt;br /&gt;
Unread message counter in listview doesn't always update when you view a conversation.&lt;br /&gt;
&lt;br /&gt;
Make sure to comment out the correct lines on the last step (disable back gesture).  In 1.3, they are lines 324 and 325.  The block to look for is:&lt;br /&gt;
&lt;br /&gt;
    } else if(event.type == Mojo.Event.back) {&lt;br /&gt;
        event.stop();&lt;br /&gt;
        this.popAndRevealListView();&lt;br /&gt;
        return;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
which should be changed to:&lt;br /&gt;
&lt;br /&gt;
    } else if(event.type == Mojo.Event.back) {&lt;br /&gt;
        //event.stop();&lt;br /&gt;
        //this.popAndRevealListView();&lt;br /&gt;
        return;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
== Major Bugs==&lt;br /&gt;
None yet&lt;br /&gt;
&lt;br /&gt;
Enjoy!&lt;br /&gt;
-Mike dg&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* verified by tictac (after a few miscues)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I found an error. In trying to delete conversations. The main page with all the conversation acts like it is deleting the conversation, but when you reopen the page the conversation is there again. I dont know who to contact about this, so i am posting here. &lt;br /&gt;
-Dragon1220&lt;/div&gt;</summary>
		<author><name>Dragon1220</name></author>
	</entry>
</feed>