+ Reply
Page 95 of 111 FirstFirst ... 45 859394959697 105 ... LastLast
Results 1,881 to 1,900 of 2219

Thread: Aqwoah

  1. #1881
    My iPhone is a Part of Me Ramses2's Avatar
    Join Date
    May 2008
    Location
    Nancy, France
    Posts
    985
    Thanks
    430
    Thanked 488 Times in 265 Posts

    Very nice lockscreen.

    How to have the map of shown world?

    Is it possible to integrate the todo plugin ?

    I have a little problem with calendar :
    Attached Thumbnails Attached Thumbnails Aqwoah-img_0089.png  
    Last edited by Ramses2; 12-06-2009 at 04:41 AM.

  2. #1882
    Green Apple e-oni's Avatar
    Join Date
    Oct 2007
    Location
    Berlin, Germany
    Posts
    47
    Thanks
    2
    Thanked 18 Times in 16 Posts

    Quote Originally Posted by Ramses2 View Post
    Very nice lockscreen.

    How to have the map of shown world?

    Is it possible to integrate the todo plugin ?

    I have a little problem with calendar :

    Look for the following passage inside "fr.js" found in /Library/Themes/Aqwoah Lockinfo/Bundles/com.ashman.LockInfo/Strings and edit it as shown. Seems that the 3 letters for displaying the day of week seem to be to long.

    Code:
    var shortDays = [
        "Dim",
        "Lun",
        "Mar",
        "Mer",
        "Jeu",
        "Ven",
        "Sam"
    
    edit to ->
    
    var shortDays = [
        "Di",
        "Lu",
        "Ma",
        "Me",
        "Je",
        "Ve",
        "Sa"
    Cheers

    Oni
    Don´t forget to hit the "Thanks" button If my post helped you !!

  3. #1883
    Theme Creator armadillo's Avatar
    Join Date
    Jul 2007
    Posts
    1,298
    Thanks
    0
    Thanked 577 Times in 352 Posts

    The world map and the time zones are a feature of the next version of Aqwoah LockInfo. As to your calendar problem, it seems that you have either installed a different Helvetica font or you added padding to the text in the style.css. To fix this, you need to change the following section in style.css:

    Code:
    .displayDate {
    	font-size:13px;
    	font-weight:bold;
    	line-height:13px;
    	color:rgba(255, 255, 255, 1.0);
    	text-shadow:#000000 0px 1px 2px;
    	}
    You may have to play with the line-height or font size depending on what font you use.
    Come visit AlohaSoft

    Feel free to email me icon requests. Make sure to include a link to the application plus the app name EXACTLY as displayed on the iPhone. No PMs please.

  4. #1884
    My iPhone is a Part of Me Ramses2's Avatar
    Join Date
    May 2008
    Location
    Nancy, France
    Posts
    985
    Thanks
    430
    Thanked 488 Times in 265 Posts

    Here is my style.css

    Code:
    /* General Aqwoah =================================================== */
    
    div {
        font-family:Helvetica;
        }
    
    div.alt {
        background-color:rgba(50, 50, 50, 0.25);
        }
    
    .sub1, #Month {
        font-size:12px;
        font-weight:bold;
        color:rgba(255, 255, 255, 1.0);
        text-shadow:#000000 0px 1px 2px;
        }
    
    .sub2 {
        font-size:11px;
        font-weight:bold;
        color:rgba(200, 200, 200, 1.0);
        text-shadow:#000000 0px 1px 2px;
        }
    
    .sub3 {
        font-size:11px;
        font-weight:bold;
        color:rgba(190, 212, 255, 1.0);
        text-shadow:#000000 0px 1px 2px;
        }
    
    .sub4 {
        font-size:12px;
        font-weight:bold;
        color:rgba(190, 212, 255, 1.0);
        text-shadow:#000000 0px 1px 2px;
        }
    
    .relativeTime {
        font-size:10px;
        font-weight:normal;
        white-space:nowrap;
        }
    
    .loadMore {
        font-size:11px;
        font-weight:bold;
        line-height:18px;
        text-align:center;
        color:rgba(200, 200, 200, 0.85);
        background-image:url(../images/bar3s.png);
        }
    
    .loadMore:after {
        content:"...";
        }
    
    /* Clock =================================================== */
    
    #Clock.big #time {
        font-size:28px;
        line-height:38px;
        }
    
    #Clock.big #date {
        font-size:13px;
        line-height:38px;
        }
    
    /* Monthly Calendar */
    
        #Month {
        width:90%;
        }
    
    #Month td {
        font-size:11px;
        font-weight:bold;
        }
    
    #Month .today, #Month th {
        background-color:rgba(150, 150, 150, 0.75);
        -webkit-border-radius:4px;
        -webkit-box-shadow:0px 1px 3px rgba(0, 0, 0, 0.25);
        text-shadow:rgba(0, 0, 0, 0.6) 0px -1px 1px !important;
    }
    
    .otherMonth {
        font-weight:normal;
        color:rgba(190, 212, 255, 1.0);
        }
    
    .timeClock {
        font-size:22px;
        font-weight:bold;
        color:rgba(0, 0, 0, 0.8);
        margin-top:5px;
        text-shadow:none;
        }
    
    .todayClock {
        background-image:url(../images/date.png);
        background-repeat:no-repeat;
    }
    
    .displayDate {
        font-size:13px;
        font-weight:bold;
        line-height:13px;
        color:rgba(255, 255, 255, 1.0);
        text-shadow:#000000 0px 1px 2px;
        }
    
    
    
    /* Weather =================================================== */
    
    #weather_timestamp {
        font-size:12px;
        font-weight:bold;
        line-height:18px;
        }
    
    .rightborder { 
        border-right: medium ridge #999999; 
        }
     
    .leftborder { 
        border-left: medium ridge #999999; 
        } 
    
    #weather_title {
        background-image:url(../images/weatherh.png);
        padding-left:20px;
        }
    
    #Weather .temp {
        font-weight:bold;
        }
    
    #Weather .city {
        text-transform:capitalize;
        padding-left:0px;
        }
    
    #Weather .weatherIcon {
        width:60px;
        height:60px;
        }
    
    #Weather .forecast td {
        font-weight:bold;
        }
    
    #Weather .forecast img {
        width:45px;
        height:45px;
        }
    
    #Weather .forecast span {
        font-size:11px !important;
        }
    
    .weather_temp {
        background-image:url(../images/weather_temp.png);
        background-position: top right;
        float:right;
        width:40px;
        height:15px;
        background-repeat:no-repeat;
        margin-right:12px;
        -webkit-opacity:0.5;
        }
    
    /* RSS =================================================== */
    
    .rss-box {
        width:320px;
        }
    
    .rss-items {
        list-style-type: inherit;
        list-style-image: url(../images/rss.png);
        margin-left:23;
        margin-right:20;
        margin-top:5;
        margin-bottom:0;
        padding:0;
        }
    
    .rss-item  {
        margin-bottom: 5px;;
        font-family:Helvetica;
        font-size:11px;
        font-weight:bold;
        color:rgba(190, 212, 255, 1.0);
        text-shadow:#000000 0px 1px 2px;
        }
    
    .rss-item a:link, .rss-item a:visited, .rss-item a:active {
        text-decoration:none;
        font-family:Helvetica;
        font-size:12px;
        font-weight:bold;
        color:rgba(255, 255, 255, 1.0);
        text-shadow:#000000 0px 1px 2px;
        }
    
    
    #NewsDiv {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        }
    
    .rssHeaderTitle {
        text-transform:capitalize;
        padding-left:0px;
        }
    
    .rss_desc {
        background-image:url(../images/rss_desc.png);
        background-position: top right;
        float:right;
        width:40px;
        height:15px;
        background-repeat:no-repeat;
        margin-right:12px;
        -webkit-opacity:0.5;
        }
    
    .arrow_next {
        background-image:url(../images/arrow_next.png);
        float:right;
        width:15px;
        height:15px;
        background-repeat:no-repeat;
        margin-right:12px;
        -webkit-opacity:0.5;
        }
    
    /* Calendar =================================================== */
    
    #Calendar .sub1.header.cal span {
        background-image:url(../images/calendarh.png);
        padding-left:20px;
        }
    
    #Calendar .sub {
        background-image:url(../images/calendar.png);
        padding-left:32px;
        background-position:7px 3px;
        }
    
    #Calendar .time {
        font-size:12px;
        font-weight:bold;
        }
    
    #Calendar .sub.allDay {
        background-image:url(../images/paper.png);
        background-position:7px 3px;
        }
    
    #Calendar .sub.birthday {
        background-image:url(../images/birthday.png);
        background-position:7px 3px;
        }
    
    #cal_Holidays .sub1.header span {
        background-image:url(../images/star.png) !important;
        background-position:7px 3px;
        }
    
    #Calendar .sub.cal_Holidays {
        background-image:url(../images/star.png) !important;
        background-position:7px 3px;
        }
    
    #cal_Birthdays .sub1.header span {
        background-image:url(../images/birthday.png) !important;
        background-position:7px 3px;
        }
    
    #cal_Birthdays .sub {
        background-image:url(../images/birthday.png) !important;
        background-position:7px 3px;
        }
    
    
    /* Mail =================================================== */
    
    #Mail .sub {
        background-image:url(../images/mail.png);
        background-position:7px 3px;
        }
    
    
    /* Voicemail =================================================== */
    
    #Voicemail .sub {
        background-image:url(../images/voicemail.png);
        background-position:7px 3px;
        }
    
    
    /* Calls */
    
    #Calls .sub {
        background-image:url(../images/calls.png);
        background-position:7px 3px;
        }
    
    
    /* SMS */
    
    #SMS .sub1.header span {
        padding-left:20px;
        }
    
    #SMS .sub {
        background-image:url(../images/sms.png);
        background-position:7px 3px;
        }
    
    /* TODO =================================================== */
    
    #TODO .sub.header span {
    background-image:url(../images/paper.png);
    padding-left:20px;
    }
    
    #TODO .sub .sub1 span {
    background-image:url(../images/paper.png);
    padding-left:20px;
    }
    
    #TODO .sub  {
    background-image:url(../images/paper.png);
    padding-left:40px;
    }
    I make your modification and see


    And i have an other problem. I have a mail but, in the lockscreen, it is not ?
    Attached Thumbnails Attached Thumbnails Aqwoah-img_0090.png   Aqwoah-img_0091.png  

  5. #1885
    Theme Creator armadillo's Avatar
    Join Date
    Jul 2007
    Posts
    1,298
    Thanks
    0
    Thanked 577 Times in 352 Posts

    I have no idea what's going on with your font. It seems that it is lower that regular Helvetica. Here is my French version:



    As for Mail, it is a strange issue that is common to all Gruppled themes. You have to press the Home button to get it initially. After that it works.
    Come visit AlohaSoft

    Feel free to email me icon requests. Make sure to include a link to the application plus the app name EXACTLY as displayed on the iPhone. No PMs please.

  6. #1886
    My iPhone is a Part of Me Ramses2's Avatar
    Join Date
    May 2008
    Location
    Nancy, France
    Posts
    985
    Thanks
    430
    Thanked 488 Times in 265 Posts

    Quote Originally Posted by armadillo View Post
    I have no idea what's going on with your font. It seems that it is lower that regular Helvetica. Here is my French version:



    As for Mail, it is a strange issue that is common to all Gruppled themes. You have to press the Home button to get it initially. After that it works.
    Can you give me your version ?

  7. #1887
    What's Jailbreak?
    Join Date
    Nov 2009
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Hi guys
    little help please
    how can i change the name of cities in weather part?
    i want to add my city to the section?

    thank you

  8. #1888
    What's Jailbreak?
    Join Date
    Jan 2009
    Posts
    8
    Thanks
    1
    Thanked 1 Time in 1 Post
    Hi Armadillo
    congratulations for your work
    i have got some error with accentued caractère , for bypass thisthis i have change this Line of rss.html
    http://feed2js.org//feed2js.php?src="+rssSources[parseInt(data[0])]+"&desc="+parseInt(data[1])+"&num="+rssItems[parseInt(data[0])];
    i add
    +"&tz=+1&utf=y"
    at the end like this
    http://feed2js.org//feed2js.php?src="+rssSources[parseInt(data[0])]+"&desc="+parseInt(data[1])+"&num="+rssItems[parseInt(data[0])]+"&tz=+1&utf=y";
    and now is perfect

  9. #1889
    Theme Creator armadillo's Avatar
    Join Date
    Jul 2007
    Posts
    1,298
    Thanks
    0
    Thanked 577 Times in 352 Posts

    @kalou60: That's correct, it needed the the UTF flag. I fixed that for a Japanese user a few days ago so he could read Japanese feeds. This fix will be included in the next update.

    @frost666: You should read the Read Me that is included in the AlohaSoft repo. It contains detailed instructions how to customize this. If you are using the pirated version, you are out of luck.
    Come visit AlohaSoft

    Feel free to email me icon requests. Make sure to include a link to the application plus the app name EXACTLY as displayed on the iPhone. No PMs please.

  10. #1890
    iPhoneaholic
    Join Date
    Aug 2007
    Posts
    343
    Thanks
    50
    Thanked 23 Times in 18 Posts

    Has anyone tried using lockinfo with smartscreen?
    It seems to work, but crashes sometimes.

  11. #1891
    Theme Creator armadillo's Avatar
    Join Date
    Jul 2007
    Posts
    1,298
    Thanks
    0
    Thanked 577 Times in 352 Posts

    Quote Originally Posted by Ramses2 View Post
    Can you give me your version ?
    Why don't you ask Ajeje to update the version he has pirated from me and which you are using? I know you are registered at that site. I have in fact now implemented Todo and Twitter, but I will not release updates until that repo removes my files.
    Come visit AlohaSoft

    Feel free to email me icon requests. Make sure to include a link to the application plus the app name EXACTLY as displayed on the iPhone. No PMs please.

  12. #1892
    iPhoneaholic
    Join Date
    Aug 2007
    Posts
    343
    Thanks
    50
    Thanked 23 Times in 18 Posts

    Armadillo,
    I sent you a PM.
    Thanks

  13. #1893
    Green Apple
    Join Date
    Aug 2008
    Posts
    60
    Thanks
    4
    Thanked 18 Times in 6 Posts

    @Armadillo, (Sorry for my bad english)

    Great job ! Do you now how to implante a facebook plugin for your next update ( i m waiting after it ;o) )

    Thanks

  14. #1894
    Theme Creator armadillo's Avatar
    Join Date
    Jul 2007
    Posts
    1,298
    Thanks
    0
    Thanked 577 Times in 352 Posts

    I haven't looked at facebook. I'm not sure dave has a plugin for that.
    Come visit AlohaSoft

    Feel free to email me icon requests. Make sure to include a link to the application plus the app name EXACTLY as displayed on the iPhone. No PMs please.

  15. #1895
    iPhoneaholic
    Join Date
    Aug 2007
    Posts
    343
    Thanks
    50
    Thanked 23 Times in 18 Posts

    For those that are looking to combine Lockinfo with cydgets or smartscreen widgets, the Lockinfo and cydgets seem to work. However Lockinfo and smartscreen causes a crash. Specifically when switching to smartscreen.

  16. #1896
    What's Jailbreak?
    Join Date
    Oct 2007
    Posts
    28
    Thanks
    2
    Thanked 20 Times in 5 Posts

    Default RSS Edit?

    How to get RSS to start like pictured? Where do I edit this? Thanks in advance.


  17. #1897
    What's Jailbreak?
    Join Date
    Jan 2009
    Posts
    8
    Thanks
    1
    Thanked 1 Time in 1 Post
    My mod

  18. #1898
    Green Apple Peemcgee's Avatar
    Join Date
    Nov 2009
    Posts
    45
    Thanks
    2
    Thanked 2 Times in 2 Posts

    very nice

  19. #1899
    Theme Creator armadillo's Avatar
    Join Date
    Jul 2007
    Posts
    1,298
    Thanks
    0
    Thanked 577 Times in 352 Posts

    All themes updated with the following 96 icons plus 3 SBSettings toggles (3GUnrestrictor, Push Notifications, Push Mail). Aqwoah LockInfo III will be released tomorrow.

    - - - -
    Come visit AlohaSoft

    Feel free to email me icon requests. Make sure to include a link to the application plus the app name EXACTLY as displayed on the iPhone. No PMs please.

  20. #1900
    iPhoneaholic
    Join Date
    Aug 2007
    Posts
    343
    Thanks
    50
    Thanked 23 Times in 18 Posts

    Awesome. Been waiting for your new Lockinfo release

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts