AROS Archives - clean up

deadwood · 10353

Amiwell

  • Legendary Member
  • *****
    • Posts: 2616
    • Karma: +35/-4
  • Peace
Reply #105 on: May 25, 2023, 11:13:19 AM
amigasystem sorry but the program found on aminet works for me :-\



AMIGASYSTEM

  • Global Moderator
  • Legendary Member
  • *****
    • Posts: 3740
    • Karma: +69/-2
  • AROS One
    • AROS One
Reply #106 on: May 25, 2023, 11:54:36 AM
Yes because I think it was replaced after my report, check file date and file size, now they are different  !


EDIT:

I wasn't wrong, I confirm that the "SploinerGUI-Amiga" archives on Aminet, in today's day have been replaced, see screenshot, also the version has changed, this first was v1.0, now is 1.0r3


« Last Edit: May 25, 2023, 03:32:07 PM by AMIGASYSTEM »



deadwood

  • AROS Developer
  • Legendary Member
  • *****
    • Posts: 1524
    • Karma: +118/-0
Reply #107 on: May 26, 2023, 06:55:32 AM
FYI, I deleted the 1.0 upload and approved 1.0r3 upload.



AMIGASYSTEM

  • Global Moderator
  • Legendary Member
  • *****
    • Posts: 3740
    • Karma: +69/-2
  • AROS One
    • AROS One
Reply #108 on: May 26, 2023, 10:01:18 AM
Thanks deadwood, for my previous post on "WildMidi", how should I deal with it ?


deadwood

  • AROS Developer
  • Legendary Member
  • *****
    • Posts: 1524
    • Karma: +118/-0
Reply #109 on: May 28, 2023, 05:06:33 AM
@AMIGASYSTEM

On the topic of Wild:

1) License - it is ok to upload GPL-licensed software. You don't have to include neither sources nor documentation in the archive, but you need to include a README file with an URL of where the sources can be obtained.

2) For replacing the older version, the idea solution would be for you to change source code such that the config file is read from one location not from each location of midi file. It might be as simple as finding in source code a place where a config name if given and the adding ENV: before it. So if you know the config file is named "foo.cfg", find in source code where this string is present and see if changing it to "ENV:foo.cfg" make it being read from one location.

I leave to you the decision on whether to upload your compiled new version to Archives. If you do, I suggest to replace the older version.



AMIGASYSTEM

  • Global Moderator
  • Legendary Member
  • *****
    • Posts: 3740
    • Karma: +69/-2
  • AROS One
    • AROS One
Reply #110 on: May 28, 2023, 05:33:27 AM
Thanks for replying, I think this is the string that needs to be changed, any suggestions for how to set the path to WildMidi.cfg in Env-Archive. Maybe I need to put it at the post of "n" ?

Code: [Select]
printf("  -c P  --config=P    Point to your wildmidi.cfg config file name/path\n");
    printf("                      defaults to: %s\n", WILDMIDI_CFG);

About the source link is this okay ?

https://github.com/Mindwerks/wildmidi



deadwood

  • AROS Developer
  • Legendary Member
  • *****
    • Posts: 1524
    • Karma: +118/-0
Reply #111 on: May 28, 2023, 05:45:00 AM
Link is ok. About code, this is not the right place. I guess this code prints help message. What you need to now see is where the WILDMIDI_CFG variable is set to a value and add ENV: there.

It's probabably going to be something like:

Code: [Select]
const char * WILDMIDI_CFG = "WildMidi.cfg"

or

Code: [Select]
#define WILDMIDI_CFG "WildMidi.cfg"



AMIGASYSTEM

  • Global Moderator
  • Legendary Member
  • *****
    • Posts: 3740
    • Karma: +69/-2
  • AROS One
    • AROS One
Reply #112 on: May 28, 2023, 02:04:58 PM
Found the string "#define WILDMIDI_CFG "WildMidi.cfg" Inside 3 files:

Include/config.h.cmake
Code: [Select]
/* Name of package */
#define PACKAGE "wildmidi"

Amiga/config.h
Code: [Select]
/* wildmidi config for amigaos variants */
#define WILDMIDI_AMIGA 1

#define WILDMIDI_CFG "wildmidi.cfg"

CMakeLists.txt
Code: [Select]
IF (UNIX AND NOT APPLE AND NOT RISCOS)
    SET(WILDMIDI_CFG "/etc/wildmidi/wildmidi.cfg" CACHE STRING "default config location")

Do I need to edit all the files ? how ?:


AMIGASYSTEM

  • Global Moderator
  • Legendary Member
  • *****
    • Posts: 3740
    • Karma: +69/-2
  • AROS One
    • AROS One
Reply #113 on: May 28, 2023, 02:49:44 PM
Solved, edited the config.h file , also copied the file "wildmidi.cfg" to ENV, which in turn will look for the instruments in in the Timidity volume:  :)

Code: [Select]
#define WILDMIDI_CFG "ENV:wildmidi.cfg"

Now the new WildMidi v0.4.5 can be used as a tool on the Def_MIDI.info-

Uploaded to aros archive, you can delete the old version !
« Last Edit: May 29, 2023, 01:43:36 AM by AMIGASYSTEM »



deadwood

  • AROS Developer
  • Legendary Member
  • *****
    • Posts: 1524
    • Karma: +118/-0
Reply #114 on: May 29, 2023, 01:12:15 AM
Congratz & approved



AMIGASYSTEM

  • Global Moderator
  • Legendary Member
  • *****
    • Posts: 3740
    • Karma: +69/-2
  • AROS One
    • AROS One
Reply #115 on: June 03, 2023, 10:34:24 AM
Forwarded "MD5SUM" to Aros archive !

deadwood, for kindness could you please correct my two forwarded programs "wildmidi.i386-aros.zipper" and "joingui-aros.zipper"

Basically I put my Nik Name instead of the Archive Name, thank you !



deadwood

  • AROS Developer
  • Legendary Member
  • *****
    • Posts: 1524
    • Karma: +118/-0
Reply #116 on: June 03, 2023, 10:55:13 AM
Done :)



Amiwell

  • Legendary Member
  • *****
    • Posts: 2616
    • Karma: +35/-4
  • Peace
Reply #117 on: July 10, 2023, 03:35:14 AM
deadwood sorry zip_amiga.lha is version 2.0

all best



AMIGASYSTEM

  • Global Moderator
  • Legendary Member
  • *****
    • Posts: 3740
    • Karma: +69/-2
  • AROS One
    • AROS One
Reply #118 on: July 10, 2023, 04:38:24 AM
The old version was 1.2  :)


Amiwell

  • Legendary Member
  • *****
    • Posts: 2616
    • Karma: +35/-4
  • Peace
Reply #119 on: July 10, 2023, 04:56:13 AM
the new version is 2.0