Re: Update plugins Subversion and Junit - The wrong dependencies

2021-10-13 Thread Vladimir Kokovic
/mnt/WD-Elements-25A1/ispp-sql-mingw-64/netbeans-git/netbeans-master-20210731/nbbuild/testuserdir/var/log/messages.log
..
WARNING [org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler]: 
Plugin OperationInfo: Execution API 8.0 
Compatibility[org.openide.execution.compat8/9.16] cannot be installed because 
some dependencies cannot be satisfied: [module org.openide.execution.deprecated 
> 1.0]
WARNING [org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler]: 
Plugin Subversion JavaHL Client 
Library[org.netbeans.libs.svnClientAdapter.javahl/1.38] cannot be installed 
because some dependencies cannot be satisfied: [module org.netbeans.libs.jna/1 
> 1.11]
WARNING [org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler]: 
Plugin Execution API 8.0 Compatibility[org.openide.execution.compat8/9.16] 
cannot be installed because some dependencies cannot be satisfied: [module 
org.openide.execution.deprecated > 1.0]
WARNING [org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler]: 
Plugin Subversion Client Library[org.netbeans.libs.svnClientAdapter/1.54] 
cannot be installed because some dependencies cannot be satisfied: [module 
org.netbeans.libs.jna/1 > 1.11]
WARNING [org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler]: 
Plugin Subversion[org.netbeans.modules.subversion/1.55.0.42.1] cannot be 
installed because some dependencies cannot be satisfied: [module 
org.netbeans.libs.jna/1 > 1.11]
..

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Automatic config backup?

2021-10-13 Thread Mitch Claborn
Sweet - I can import from a backed up user directory. That is all I 
need. I already have a nightly full computer back.


Thanks Ernie.


Mitch

On 10/13/21 9:41 AM, Ernie Rael wrote:
Did you see/use Menu>Tools>Options>Import ? Browse to a backed up 
userdir, import Project>ProjectGroups. There are many variations you can 
have around this.


During startup, a plugin could probably backup userdir (make sure cache 
isn't included). I'm not sure what you'd have to do to insure a 
consistent picture. With some digging to find the "Options>Export" 
action, a plugin could probably invoke it around startup; probably wait 
for when UI ready.


Backing it up, a response mentioned rsync, with NetBeans not running 
probably avoids any consistency issues.


-ernie

On 10/13/2021 6:59 AM, Mitch Claborn wrote:
Yesterday I accidentally deleted all of my project groups. I was able 
to recover from a full computer backup, but I had to search around to 
find out where they were stored and then manually restore the files.


To improve my chances of full recovery for the next time I do 
something stupid, I want to start backing up my NetBeans config once a 
day.


It would be extra-super-cool if NetBeans could do that for me. 
Something, like: take a backup on the first startup of NetBeans on a 
calendar day, to a specified directory with a date sensitive filename 
pattern.


Is such a thing possible? Assuming that it is not a current 
capability, is it feasible to write a plugin or a change to the base 
system to accomplish this?




-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Automatic config backup?

2021-10-13 Thread Ernie Rael
Did you see/use Menu>Tools>Options>Import ? Browse to a backed up 
userdir, import Project>ProjectGroups. There are many variations you can 
have around this.


During startup, a plugin could probably backup userdir (make sure cache 
isn't included). I'm not sure what you'd have to do to insure a 
consistent picture. With some digging to find the "Options>Export" 
action, a plugin could probably invoke it around startup; probably wait 
for when UI ready.


Backing it up, a response mentioned rsync, with NetBeans not running 
probably avoids any consistency issues.


-ernie

On 10/13/2021 6:59 AM, Mitch Claborn wrote:
Yesterday I accidentally deleted all of my project groups. I was able 
to recover from a full computer backup, but I had to search around to 
find out where they were stored and then manually restore the files.


To improve my chances of full recovery for the next time I do 
something stupid, I want to start backing up my NetBeans config once a 
day.


It would be extra-super-cool if NetBeans could do that for me. 
Something, like: take a backup on the first startup of NetBeans on a 
calendar day, to a specified directory with a date sensitive filename 
pattern.


Is such a thing possible? Assuming that it is not a current 
capability, is it feasible to write a plugin or a change to the base 
system to accomplish this?




-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Automatic config backup?

2021-10-13 Thread Mitch Claborn
I could do that, but how would I get the backup file in the same format 
that NetBeans produces, so that it would be easy to import/restore when 
needed?


Is the backup zip file just a copy selected files in the .netbeans 
directory?



Mitch

On 10/13/21 9:07 AM, Pieter van den Hombergh wrote:
The quickest approach would be to write a wrap script around the script 
that starts up netbeans.


In that script you could use simple copy or more advanced rsync to 
backup stuff to a destination of your liking. If that destination has 
the date as part of the (dir) name, you would have a daily backup. To 
prevent this to fill up you backup space, the script could drop dirs 
older than say 14 days.


On Wed, Oct 13, 2021, 15:59 Mitch Claborn > wrote:


Yesterday I accidentally deleted all of my project groups. I was
able to
recover from a full computer backup, but I had to search around to find
out where they were stored and then manually restore the files.

To improve my chances of full recovery for the next time I do something
stupid, I want to start backing up my NetBeans config once a day.

It would be extra-super-cool if NetBeans could do that for me.
Something, like: take a backup on the first startup of NetBeans on a
calendar day, to a specified directory with a date sensitive filename
pattern.

Is such a thing possible? Assuming that it is not a current capability,
is it feasible to write a plugin or a change to the base system to
accomplish this?
-- 


Mitch

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org

For additional commands, e-mail: users-h...@netbeans.apache.org


For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists




-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Automatic config backup?

2021-10-13 Thread Pieter van den Hombergh
The quickest approach would be to write a wrap script around the script
that starts up netbeans.

In that script you could use simple copy or more advanced rsync to backup
stuff to a destination of your liking. If that destination has the date as
part of the (dir) name, you would have a daily backup. To prevent this to
fill up you backup space, the script could drop dirs older than say 14
days.

On Wed, Oct 13, 2021, 15:59 Mitch Claborn  wrote:

> Yesterday I accidentally deleted all of my project groups. I was able to
> recover from a full computer backup, but I had to search around to find
> out where they were stored and then manually restore the files.
>
> To improve my chances of full recovery for the next time I do something
> stupid, I want to start backing up my NetBeans config once a day.
>
> It would be extra-super-cool if NetBeans could do that for me.
> Something, like: take a backup on the first startup of NetBeans on a
> calendar day, to a specified directory with a date sensitive filename
> pattern.
>
> Is such a thing possible? Assuming that it is not a current capability,
> is it feasible to write a plugin or a change to the base system to
> accomplish this?
> --
>
> Mitch
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Automatic config backup?

2021-10-13 Thread Mitch Claborn
Yesterday I accidentally deleted all of my project groups. I was able to 
recover from a full computer backup, but I had to search around to find 
out where they were stored and then manually restore the files.


To improve my chances of full recovery for the next time I do something 
stupid, I want to start backing up my NetBeans config once a day.


It would be extra-super-cool if NetBeans could do that for me. 
Something, like: take a backup on the first startup of NetBeans on a 
calendar day, to a specified directory with a date sensitive filename 
pattern.


Is such a thing possible? Assuming that it is not a current capability, 
is it feasible to write a plugin or a change to the base system to 
accomplish this?

--

Mitch

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists