Commit 1c88584afb7aeab01dd08bd7ecf0ba32c86912a1
9 New, 2 updated patches.
| |   |
| Name: Remove Engadget Nonsense Text |
| Version: 1.4.0-1 |
| Author: Jason Robitaille |
| Description: Removes the nonsense text that flashes during scene transitions (MIT license) |
|
| --- .orig/media/cryptofs/apps/usr/palm/applications/com.aol.engadget/index.html |
| +++ /media/cryptofs/apps/usr/palm/applications/com.aol.engadget/index.html |
| @@ -10,10 +10,5 @@ |
| <link href="stylesheets/engadget.css" media="screen" rel="stylesheet" type="text/css" /> |
| </head> |
| <body> |
| - <h2>This text verifies your application is running.</h2> |
| - <p> |
| - To create a fully functional Palm application create a scene and remove this text from index.html. |
| - See the documentation on Palm Applications for more information on creating applications and scenes. |
| - </p> |
| </body> |
| </html> |
| |   |
| diff --git a/usr/palm/applications/com.palm.app.pdfviewer/appinfo.json b/usr/palm/applications/com.palm.app.pdfviewer/appinfo.json |
| index e6bf134..33b0252 100644 |
| --- a/usr/palm/applications/com.palm.app.pdfviewer/appinfo.json |
| +++ b/usr/palm/applications/com.palm.app.pdfviewer/appinfo.json |
| @@ -10,6 +10,6 @@ |
| "Adobe", |
| "PDF Viewer" |
| ], |
| - "removable": true |
| + "removable": false |
| } |
| |
| |   |
| diff --git a/usr/lib/luna/system/luna-systemui/app/controllers/bar-assistant.js b/usr/lib/luna/system/luna-systemui/app/controllers/bar-assistant.js |
| index 6fdbb39..05723a9 100644 |
| --- a/usr/lib/luna/system/luna-systemui/app/controllers/bar-assistant.js |
| +++ b/usr/lib/luna/system/luna-systemui/app/controllers/bar-assistant.js |
| @@ -2552,7 +2552,13 @@ updateClockEveryMinute: function() { |
| } |
| } |
| format = format.replace(/\s?a\s?/,""); |
| - $('clock').innerHTML = Mojo.Format.formatDate(date, {time: format}); |
| + var suffix = ""; |
| + if(new Date().getHours() < 12) { |
| + suffix = "a"; |
| + } else { |
| + suffix = "p"; |
| + } |
| + $('clock').innerHTML = Mojo.Format.formatDate(date, {time: format}) + suffix; |
| $('today').innerHTML = Mojo.Format.formatDate(date,{date:'short'}); |
| }, |
| |