MSFN Forum: xpize 5 Release 4 - MSFN Forum

Jump to content



  • 7 Pages +
  • 1
  • 2
  • 3
  • 4
  • 5
  • Last »
  • You cannot start a new topic
  • This topic is locked

xpize 5 Release 4 Long Live Windows XP! Rate Topic: -----

#41 User is offline   W3bbo 

  • xpize / Vize Project Lead
  • Group: Developers
  • Posts: 464
  • Joined: 14-June 06

Posted 25 July 2009 - 07:40 AM

yojo, can you confirm you're using xpize 5 Release 4? The one without the photo of the Anole lizard in it?

I ask because I (thought I) fixed the problem of it interpreting "5.1" as a decimal number regardless of culture.


#42 User is offline   yojo2 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 25-July 09

Posted 25 July 2009 - 07:58 AM

Yes, for sure it's Release 4.

#43 User is offline   W3bbo 

  • xpize / Vize Project Lead
  • Group: Developers
  • Posts: 464
  • Joined: 14-June 06

Posted 25 July 2009 - 08:02 AM

View Postyojo2, on Jul 25 2009, 02:58 PM, said:

Yes, for sure it's Release 4.


Okay, well in the meanwhile use the "/ignoreCondition" switch (I renamed it from "/ignorePackageCondition") and it'll let you bypass the check.

I wonder if anyone else has been having the same problem.

#44 User is offline   yojo2 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 25-July 09

Posted 25 July 2009 - 08:05 AM

...that's strange, even with /ignoreCondition switch I get this error message.

This post has been edited by yojo2: 25 July 2009 - 08:05 AM


#45 User is offline   W3bbo 

  • xpize / Vize Project Lead
  • Group: Developers
  • Posts: 464
  • Joined: 14-June 06

Posted 25 July 2009 - 08:45 AM

View Postyojo2, on Jul 25 2009, 03:05 PM, said:

...that's strange, even with /ignoreCondition switch I get this error message.


The argument is case sensitive

#46 User is offline   yojo2 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 25-July 09

Posted 25 July 2009 - 09:03 AM

I know that :) Still it doesn't help to solve this problem.

/ignoreCondition switch itself works, it stops this error message from being shown on Windows 2003:

---------------------------
Anolis Installer
---------------------------
This package can only be installed on 32-bit Windows XP with Service Pack 3.
---------------------------
OK
---------------------------

This post has been edited by yojo2: 25 July 2009 - 09:03 AM


#47 User is offline   W3bbo 

  • xpize / Vize Project Lead
  • Group: Developers
  • Posts: 464
  • Joined: 14-June 06

Posted 25 July 2009 - 09:21 AM

...I was wrong about the version number thing. The issue is that my software isn't correctly reporting the currently installed service pack number.

I've uploaded a new version of the ConditionTest program. Can you run it again and report the output? Thanks.

http://w3bbo.com/mis...ditionTest2.zip

#48 User is offline   yojo2 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 25-July 09

Posted 25 July 2009 - 09:27 AM

Here you go:

XP:
 
OSVersion  : Microsoft Windows NT 5.1.2600 Dodatek Service Pack 3
ServicePack: Dodatek Service Pack 3
--------------------------------------------------------------------------------
Symbols
	osversion	5,1
	servicepack	-1
	architecture	32
	installlang	1045

Expression
	ToString()	( osversion == 5.1 && servicepack == 3 && architecture == 32 )
	Tokenize	'(', 'osversion', '==', '5.1', '&&', 'servicepack', '==', '3', '&&', 'architecture', '==', '32', ')'
Evaluate
Result: 
	0
--------------------------------------------------------------------------------
Symbols
	osversion	5,1
	servicepack	-1
	architecture	32
	installlang	1045

Expression
	ToString()	( osversion == 5.2 && servicepack == 2 && architecture == 32 )
	Tokenize	'(', 'osversion', '==', '5.2', '&&', 'servicepack', '==', '2', '&&', 'architecture', '==', '32', ')'
Evaluate
Result: 
	0
--------------------------------------------------------------------------------
Symbols
	osversion	5,1
	servicepack	-1
	architecture	32
	installlang	1045

Expression
	ToString()	( osversion == 5.2 && servicepack == 2 && architecture == 64 )
	Tokenize	'(', 'osversion', '==', '5.2', '&&', 'servicepack', '==', '2', '&&', 'architecture', '==', '64', ')'
Evaluate
Result: 
	0 
2003:
 
OSVersion  : Microsoft Windows NT 5.2.3790 Dodatek Service Pack 2
ServicePack: Dodatek Service Pack 2
--------------------------------------------------------------------------------
Symbols
	osversion	5,2
	servicepack	-1
	architecture	32
	installlang	1045

Expression
	ToString()	( osversion == 5.1 && servicepack == 3 && architecture == 32 )
	Tokenize	'(', 'osversion', '==', '5.1', '&&', 'servicepack', '==', '3', '&&', 'architecture', '==', '32', ')'
Evaluate
Result: 
	0
--------------------------------------------------------------------------------
Symbols
	osversion	5,2
	servicepack	-1
	architecture	32
	installlang	1045

Expression
	ToString()	( osversion == 5.2 && servicepack == 2 && architecture == 32 )
	Tokenize	'(', 'osversion', '==', '5.2', '&&', 'servicepack', '==', '2', '&&', 'architecture', '==', '32', ')'
Evaluate
Result: 
	0
--------------------------------------------------------------------------------
Symbols
	osversion	5,2
	servicepack	-1
	architecture	32
	installlang	1045

Expression
	ToString()	( osversion == 5.2 && servicepack == 2 && architecture == 64 )
	Tokenize	'(', 'osversion', '==', '5.2', '&&', 'servicepack', '==', '2', '&&', 'architecture', '==', '64', ')'
Evaluate
Result: 
	0 


#49 User is offline   W3bbo 

  • xpize / Vize Project Lead
  • Group: Developers
  • Posts: 464
  • Joined: 14-June 06

Posted 25 July 2009 - 09:47 AM

Thanks, that's helped me solve the problem. I've now fixed it in my internal builds.

#50 User is offline   yojo2 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 25-July 09

Posted 25 July 2009 - 09:53 AM

I'm glad that I could help :)
I hope that new version of XPize gets released soon. ;)

#51 User is offline   sohilmomin2000 

  • Group: Members
  • Posts: 2
  • Joined: 08-February 08

  Posted 25 July 2009 - 10:03 AM

i am not able to run the option Make Your Own Image file :}

in this option it starts downloading and it gives error :no:

cant update failed cannot resolve anoli.is :realmad:

please help what is the problem

#52 User is offline   W3bbo 

  • xpize / Vize Project Lead
  • Group: Developers
  • Posts: 464
  • Joined: 14-June 06

Posted 25 July 2009 - 10:14 AM

View Postsohilmomin2000, on Jul 25 2009, 05:03 PM, said:

i am not able to run the option Make Your Own Image file :}

in this option it starts downloading and it gives error :no:

cant update failed cannot resolve anoli.is :realmad:

please help what is the problem


The Icelandic domain name authorities have suspended my anol.is domain name because I'm having some problems with my DNS servers. If anyone has at least two BIND servers they wouldn't mind me borrowing for a few weeks, let me know.

UPDATE: I've managed to get my DNS servers to be compliant with ISNIC once again, and anol.is is back online.

This post has been edited by W3bbo: 25 July 2009 - 12:06 PM


#53 User is offline   zedox 

  • XPize Darkside Author
  • PipPipPipPipPip
  • Group: Members
  • Posts: 706
  • Joined: 25-August 05

Posted 25 July 2009 - 11:07 AM

couple of things..

the taskbar and start menu control panel icon doesnt change when choosing darkside.
the shutdown dialogue is blue rather than black.

#54 User is offline   Kaminari 

  • Newbie
  • Group: Members
  • Posts: 17
  • Joined: 29-July 07

Posted 25 July 2009 - 11:36 AM

View PostMrBusty, on Jul 25 2009, 10:25 AM, said:

I did install all visual styles on purpose, because I wanted to be able to switch between all these styles without using xpize again. :rolleyes:

Is there a way, to place all selected visual styles into the styles folder (resources\themes\) - but let the user choose just one of them, which will be installed?


The resource bitmap packs are not the same as the visual styles. All the visual styles (Luna Royale, Luna Element, Zune, etc) are installable and selectable, regardless of the resource pack (MCE, Darkside, etc) that you choose during installation. The resource pack specifically affects icons, pictograms, log screens and so on -- the visual styles (the "themes") specifically change the look of the windows (frames, buttons, etc).

Installing a resource pack involves patching a lot of system libraries and executables to replace the old built-in bitmaps with newer ones. That's why you can't change a resource pack with another without having to reboot. All you can do on the fly is switching the visual style.

This post has been edited by Kaminari: 25 July 2009 - 11:43 AM


#55 User is offline   W3bbo 

  • xpize / Vize Project Lead
  • Group: Developers
  • Posts: 464
  • Joined: 14-June 06

Posted 25 July 2009 - 12:07 PM

View Postzedox, on Jul 25 2009, 06:07 PM, said:

couple of things..

the taskbar and start menu control panel icon doesnt change when choosing darkside.
the shutdown dialogue is blue rather than black.


Zedox is back! :D

Thanks for the feedback, I'll investigate.

#56 User is offline   Ven 

  • Junior
  • Pip
  • Group: Members
  • Posts: 74
  • Joined: 23-November 04

Posted 25 July 2009 - 12:19 PM

Hi

I've changed the sidebar the color of the sidebar to look like the xpize 4.7 one. Here's the shellstyle.dll. It only works for the normal blue luna royale theme, i don't think it'd work for the any of the other themes.

Replace the shellstyle.dll in this folder. C:\WINDOWS\Resources\Themes\Luna Royale\Shell\NormalColor

Thanks a million W3bbo for making Xpize 5.

Attached File(s)



#57 User is offline   mayar 

  • Group: Members
  • Posts: 1
  • Joined: 28-May 06

Posted 26 July 2009 - 03:29 AM

I have the same problem installing as jojo2 on XP prof. SP3 PL.

W3bbo, when are you going to release improved version of XPize5?

#58 User is offline   MrBusty 

  • Member
  • PipPip
  • Group: Members
  • Posts: 137
  • Joined: 30-October 08

Posted 26 July 2009 - 06:03 AM

View Postmayar, on Jul 26 2009, 11:29 AM, said:

W3bbo, when are you going to release improved version of XPize5?

Last info was, that he will release the final in one month or so...

#59 User is offline   W3bbo 

  • xpize / Vize Project Lead
  • Group: Developers
  • Posts: 464
  • Joined: 14-June 06

Posted 26 July 2009 - 06:55 AM

View PostMrBusty, on Jul 26 2009, 01:03 PM, said:

View Postmayar, on Jul 26 2009, 11:29 AM, said:

W3bbo, when are you going to release improved version of XPize5?

Last info was, that he will release the final in one month or so...


Much sooner, if I can help it. A major publication has contacted me, wanting to do an article about it.

#60 User is offline   Hell Racer 

  • Junior
  • Pip
  • Group: Members
  • Posts: 68
  • Joined: 14-June 09

Posted 27 July 2009 - 05:21 AM

I think there is a problem with russian translation... Sometimes the release notes page containg english strings at the top of window. Here are the steps:

1. I start xpize5R4.exe.
2. Russian lang is selected by default (as I have russian OS locale).
3. I proceed through steps until Package Release Notes appear:

Posted Image

4. I go back to first page, select any other language and proceed to this page again.
5. I go back to first page, select Russian again and proceed to this page... again :).
6. Here's what I see:

Posted Image

The page's header is translated correctly now... Does it make any sense? :)

Edit: Also there'are some strings which is left untranslated ("Select the directory to recover from" and "Uninstall"):

Posted Image

This post has been edited by Hell Racer: 27 July 2009 - 05:37 AM


Share this topic:


  • 7 Pages +
  • 1
  • 2
  • 3
  • 4
  • 5
  • Last »
  • You cannot start a new topic
  • This topic is locked

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy