SimpleUpdater — Rev. 10.69 / 2016/06/19
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
Makes sense, the chm file is open and you get a message from Windows that such file is opened and locked. I don't know if checking the status of each file that's going to be updated is worth...
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
klownboy
- Posts: 4459
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
XYplorer.chm though is probably the key file that would be open that someone may not realize or remember is open whereas most other files associated with XY would be closed since you probably wouldn't be running a copy operation or some other script in the background. Not an issue anyway, I only wanted to follow-up and put the issue to bed.
Thanks,
Ken
Thanks,
Ken
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
Releasing 10.50 for testing.
First script ever to support multilingual support
And now configuration file is created upon request even on first run.
Open beta, requires XY 12.10.0001 or greater. Put language file in <xyscripts> folder. As usual, read the comments
First script ever to support multilingual support
Open beta, requires XY 12.10.0001 or greater. Put language file in <xyscripts> folder. As usual, read the comments
To see the attached files, you need to log into the forum.
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
Borut
- Posts: 1472
- Joined: 19 Oct 2010 19:29
- Location: Win10 Pro 64b 22H2, @120DPI (125%)
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
To see the attached files, you need to log into the forum.
Win 10 Pro 64bit
-
admin
- Site Admin
- Posts: 66187
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
Seeing these scripts inspired me to a little improvement:
Code: Select all
+ Scripting: SCs perm and global now can declare one or more
variables and set them in one statement. For example:
perm $a = "a", $b = "b"; echo "$a, $b";
FAQ | XY News RSS | XY X
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
Add also set (ok, rarely used) and unset (more useful). For simmetryadmin wrote:Seeing these scripts inspired me to a little improvement:
Code: Select all
+ Scripting: SCs perm and global now can declare one or more variables and set them in one statement. For example: perm $a = "a", $b = "b"; echo "$a, $b";
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
Thank you!Borut wrote:
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
klownboy
- Posts: 4459
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
Thanks Don. Not a big deal, but it would also clean up the code quite a lot if we could "unset" multi perms without repeating unset. Marco used unset 13 times in "_Terminate" for Simple Updater v10.50.
Ken
Edit: Marco beat me to it.
Ken
Edit: Marco beat me to it.
-
PeterH
- Posts: 2827
- Joined: 21 Nov 2005 20:39
- Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
Hey: you fulfilled I wish I didn't even ask foradmin wrote:Seeing these scripts inspired me to a little improvement:
Code: Select all
+ Scripting: SCs perm and global now can declare one or more variables and set them in one statement. For example: perm $a = "a", $b = "b"; echo "$a, $b";
Thanks a lot
And +1 for klownboys request to allow "unset" for a list of variables.
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
Just a little personal note: unset is the command that would benefit the most from this addition.
I use perm/global strictly paired with set, because it fits my logic better (conceptually one line per variable), so I would still use perm/global multiple times. But a batch unset is definitely welcome for me.
I use perm/global strictly paired with set, because it fits my logic better (conceptually one line per variable), so I would still use perm/global multiple times. But a batch unset is definitely welcome for me.
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
admin
- Site Admin
- Posts: 66187
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
I added that unset thing.Marco wrote:Just a little personal note: unset is the command that would benefit the most from this addition.
I use perm/global strictly paired with set, because it fits my logic better (conceptually one line per variable), so I would still use perm/global multiple times. But a batch unset is definitely welcome for me.
Concerning perm/global: For me the main advantage of the next version is this:
Code: Select all
OLD: perm $strC; $strC = "Kućna strana";
NEW: perm $strC = "Kućna strana";
FAQ | XY News RSS | XY X
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
PeterH
- Posts: 2827
- Joined: 21 Nov 2005 20:39
- Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%
Re: SimpleUpdater - Rev. 10.40 / 2012/12/17
To your old: and new: exactly!admin wrote:I added that unset thing.Marco wrote:Just a little personal note: unset is the command that would benefit the most from this addition.
I use perm/global strictly paired with set, because it fits my logic better (conceptually one line per variable), so I would still use perm/global multiple times. But a batch unset is definitely welcome for me.
Concerning perm/global: For me the main advantage of the next version is this:Code: Select all
OLD: perm $strC; $strC = "Kućna strana"; NEW: perm $strC = "Kućna strana";
For unset an "old:" example:
Code: Select all
"_UnSetDB"
UnSet $_DB_script; UnSet $_DB;
UnSet $_DB_cnt; UnSet $_DB_list; UnSet $_DB_tab;
UnSet $_DB_p; UnSet $_DB_p2;
UnSet $_DB_file;-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: SimpleUpdater - Rev. 10.50 / 2013/02/18
Rev. 10.50 is out!
Read the first post and the changelog for more info.
Read the first post and the changelog for more info.
Last edited by Marco on 18 Feb 2013 11:34, edited 1 time in total.
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: SimpleUpdater - Rev. 10.50 / 2013/02/18
To see the attached files, you need to log into the forum.
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
XYplorer Beta Club