]> git.saurik.com Git - cydia.git/commitdiff
Minor adjustments.
authorJay Freeman (saurik) <saurik@saurik.com>
Wed, 15 Oct 2008 00:19:47 +0000 (00:19 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 30 Sep 2010 07:08:50 +0000 (07:08 +0000)
Cydia.app/package.html
Cydia.app/package.js
Cydia.mm

index 46da6adffefe15a30d5a14dd86c45bab7ec15f41..95fb823fcc52ed39f88ed9dee89f18c5a0119eaa 100644 (file)
         <label>This is a commercial package!</label>
     </div>
 
-    <a class="console" href="console.html">
+    <a class="console" href="http://cydia.saurik.com/purpose/console/">
         <img class="icon" src="console.png"/>
-        <label>This is a console application!</label>
+        <label>This is a console package!</label>
     </a>
 
     <a id="application">
     <div id="description"></div>
 
     <a class="homepage" id="homepage-href">
+        <img class="icon" src="web.png"/>
         <label>More Information</label>
     </a>
 </fieldset>
index 762167af0ad9a893bfaff23befc5d51a475e0e9e..1a8fc92bf8bb76272932081176e22677937c3475 100644 (file)
@@ -134,8 +134,9 @@ $(function () {
     nid.html(id);
     var width = nid.width();
 
-    if (width > 240) {
-        var spacing = (240.0 - nid.width()) / (id.length - 1) + "px";
+    var max = 238.0;
+    if (width > max) {
+        var spacing = (max - nid.width()) / (id.length - 1) + "px";
         nid.css("letter-spacing", spacing);
     }
 
index f94557abda15942a59a436d9b366a013de5e8c19..b4762a1957c73bd9c0090abca7265e8402aad780 100644 (file)
--- a/Cydia.mm
+++ b/Cydia.mm
@@ -282,9 +282,10 @@ extern NSString * const kCAFilterNearest;
         [invocation getReturnValue:&item.key];
     }
 
+    static const size_t width = 32;
     static const size_t bits = 11;
     static const size_t slots = 1 << bits;
-    static const size_t passes = (32 + (bits - 1)) / bits;
+    static const size_t passes = (width + (bits - 1)) / bits;
 
     size_t *hist(new size_t[slots]);
 
@@ -294,7 +295,7 @@ extern NSString * const kCAFilterNearest;
         for (size_t i(0); i != count; ++i) {
             uint32_t key(lhs[i].key);
             key >>= pass * bits;
-            key &= _not(uint32_t) >> 32 - bits;
+            key &= _not(uint32_t) >> width - bits;
             ++hist[key];
         }
 
@@ -308,7 +309,7 @@ extern NSString * const kCAFilterNearest;
         for (size_t i(0); i != count; ++i) {
             uint32_t key(lhs[i].key);
             key >>= pass * bits;
-            key &= _not(uint32_t) >> 32 - bits;
+            key &= _not(uint32_t) >> width - bits;
             rhs[hist[key]++] = lhs[i];
         }
 
@@ -6265,7 +6266,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
         return;
 
     _UISwitchSlider *slider([cell control]);
-    // XXX: this is just weird
     BOOL value([slider value] != 0);
     NSMutableDictionary *metadata([package_ metadata]);
 
@@ -6274,12 +6274,10 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
         before = [number boolValue];
     else
         before = NO;
-    NSLog(@"%@:%@ %@:%@ : %u:%u", cell, slider, name_, key, value, before);
 
     if (value != before) {
         [metadata setObject:[NSNumber numberWithBool:value] forKey:key];
         Changed_ = true;
-        //[delegate_ performSelector:@selector(updateData) withObject:nil afterDelay:0];
         [delegate_ updateData];
     }
 }