Dzięki za odpowiedź. Niestety nie mogłem wczesniej odpisać.
1. O to mi własnie chodziło
2. Poszukałem na zagranicznych forach i znalazłem. Błędnie zasugerowałem się, że za zegar odpowiada plik layout_main.xml (tak było bodajże w starych modelach), ponieważ w tym wypadku należy edytować plik layoutStandby_main.xml. Konkretnie "<attr value="0"/> <attr value="240"/> <attr value="177"/> <attr value="277"/> <attr value="0"/> <!-- L 24h time -->" zamienić na "<attr value="0"/> <attr value="240"/> <attr value="144"/> <attr value="244"/> <attr value="0"/> <!-- L 24h time -->". Wtedy duzy zegar będzie kończył się dokładnie w tym samym miejscu co mały.
3. Tego się niestety obawiałem.
4. Poczytałem sobie trochę o tych akustykach i AudioPhile Premium HD Acoustics dotyczy tylko słuchawek a Hazel? Loudness and Quality Acoustic Mix by moskal1991 v2 to miks różnych akustyk (w tym AudioPhile Premium HD Acoustics). Zastanawia mnie jedna rzecz, nawet wgrywając tylko AudioPhile Premium HD Acoustics dźwięk z głośnika jest głośniejszy. Domyślam się, że odpowiadają za to pliki .CSV, które mają zastosowanie globalne, za co więc odpowiadają pliki .WBXML ?
Chciałem zapytać o jeszcze jedną sprawę (5). Jak wiadomo soft R7CA065 jest dostępny tylko w Orange UK i co za tym idzie wgrywamy wraz z nim syfy operatora. Chciałbym wywalić te syfy z softu, o ile dobrze myślę to wystarczy usunąć pliki operatora (HOOK, dźwięki, obrazki, aplikacje itp.) oraz edytować plik customize.xml. W związku z tym mam pytanie, co musi zawierać koniecznie plik customize.xml? Najlepiej zostawiłbym w nim tylko <info> i podmienił plik zaraz po flashowaniu Seusem. Tylko nie wiem czy oprócz <info> musi tam być coś jeszcze jak np. <service-mode>, <sms-bearer>, <ready-to-run> itp.
Tak przy okazji udało mi się wywalić program antywirusowy z Elma. Antywir nie jest osobną aplikacją jad/jar tylko jest zaszyty w sofcie, dokładnie w "/apps/anti-virus". Aby go zdeaktywować należy wgrać skrypt:
<?xml version="1.0" encoding="ISO-8859-1"?>
<customization>
<registry>
<anti-virus>
<settings reg-path="/apps/anti-virus">
<version type="str">1.0</version>
<active type="bool">false</active>
</settings>
</anti-virus>
</registry>
</customization>
Żeby mieć całkowitą pewność można dodatkowo wywalić adres i port, serwera aktualizacji, numer licencji, adres i umowę do nowej licencji:
<?xml version="1.0" encoding="ISO-8859-1"?>
<customization>
<registry>
<anti-virus>
<settings reg-path="/apps/anti-virus">
<!-- Key: version -->
<!-- The version of the keys located under /apps/anti-virus -->
<!-- Public: No -->
<version type="str">1.0</version>
<!-- Key: active -->
<!-- This parameter is set to false to disable anti virus, i.e. the user will not see a trace of it. -->
<!-- Public: Yes -->
<active type="bool">false</active>
<!-- Setting for the data connection-->
<connection>
<!-- Key: server-name -->
<!-- The address to the anti virus backend server.-->
<!-- Public: Yes -->
<server-name type="wstr">""</server-name>
<!-- Key: server-port -->
<!-- The port to the anti virus backend server.-->
<!-- Public: Yes -->
<server-port type="wstr">""</server-port>
<!-- Key: data-account -->
<!-- The name of the data account or an empty string to use the default (browser) data account-->
<!-- Public: Yes -->
<data-account type="str">""</data-account>
<!-- Key: append-imsi -->
<!-- true will send IMSI to anti virus backend during subscription and update. -->
<!-- Public: Yes -->
<append-imsi type="bool">false</append-imsi>
<!-- Key: allow-network -->
<!-- true will allow scheduled update from any network.-->
<!-- Public: No -->
<allow-network type="bool">false</allow-network>
</connection>
<!-- Settings for subscription"-->
<subscription>
<!-- Key: sid -->
<!-- Contract key before the user has subscribed. The value will be replaced with user key after subscription. -->
<!-- Public: Yes -->
<sid type="str">""</sid>
<!-- Key: e-store-url -->
<!-- The E-store URI is received from anti virus backend during subscription. -->
<!-- Public: No -->
<e-store-url type="wstr">""</e-store-url>
<!-- Key: terms-url -->
<!-- URL to license terms-->
<!-- Public: Yes -->
<terms-url type="wstr">""</terms-url>
<!-- Key: subscription-state -->
<!-- The subscription state is received from anti virus backend during subscription.-->
<!-- Public: No -->
<subscription-state type="uint">0</subscription-state>
<!-- Key: subscription-first -->
<!-- This parameter is true for a new device and is set to false after the first successful subscription-->
<!-- Public: No -->
<subscription-first type="bool">true</subscription-first>
<!-- Key: expiration-date -->
<!-- The expiration date is received from anti virus backend during subscription (YYYY MM DD hh mm ss, e.g. 2008 03 31 01 02 03).-->
<!-- Public: No -->
<expiration-date type="str">""</expiration-date>
</subscription>
</settings>
</anti-virus>
</registry>
</customization>
Podaję te skrypty bo w całym internecie nie udało mi się nic znaleźć o usuwaniu antywira z Elma. Mam nadzieję, że się komuś przyda.
Edited by Rav, 13 July 2012 - 21:44.