I think that yes.
In “Windows” folder in your HD2 find manila files “6f3f0c16_manila” and “071b4c9a_manila”. This two files you have to decompile using luadec.exe - you may find it here (SztupY thank you for this tool). Then :
1) In “071b4c9a_manila” file find following line :
1.1) “CalendarConsts.YearView_SaturdayColor = Color(128, 128, 128, 255)”
1.2) “CalendarConsts.YearView_SundayColor = Color(128, 128, 128, 255)” where change the first three numbers (it is RGB color scheme).
In my case I changed its for :
- “CalendarConsts.YearView_SaturdayColor” from “128, 128, 128” to “1, 93, 191” (light blue)
- “CalendarConsts.YearView_SundayColor” from “128, 128, 128” to “255, 0, 0” (red)
2) In “6f3f0c16_manila” file find following lines :
2.1) “MonthClass.CreateCalendar = function(l_24_0, l_24_1)” where after line “for l_24_27 = 0, 6 do” add this :
if l_24_0.Sunday then
weekendtext = Locale:GetString("IDS_CALENDAR_WEEK_" .. l_24_27)
else
mfdow = l_24_27 + 1
if mfdow == 7 then
mfdow = 0
end
weekendtext = Locale:GetString("IDS_CALENDAR_WEEK_" .. mfdow)
end
2.2) “MonthClass.initMonthDayText = function(l_27_0, l_27_1, l_27_2, l_27_3)” where after line “l_27_4.HorizontalAlignment = Alignment_HorizontalCenter” add this :
if weekendtext == "Sat" then
l_27_4.Color = CalendarConsts.YearView_SaturdayColor
end
if weekendtext == "Sun" then
l_27_4.Color = CalendarConsts.YearView_SundayColor
end
Then both files compile by luac.exe, download and copy to HD2 Windows folder. That’s all.
Samsung Galaxy Tab 10.1 WiFi (Samsung GT-P7510)
Samsung Galaxy SIII mini (Samsung GT-I8190)
HTC HD2 - SDHC 16GB - BHF Plantronic -- ROM 3.14.479.2 (04666) WWE -- RADIO 2.15.50.14 -- MANILA 2.5.2018.1527.0
HTC Kaiser - SDHC 8GB
HTC Charmer - SD 4GB
|