Author Topic: [Bug] Audio Player ProgressBar does not use my userdefined characterset...  (Read 1363 times)

0 Members and 1 Guest are viewing this topic.

DXTR66

  • Getting started
  • **
  • Posts: 25
  • Karma: +0/-0
    • Consolegamers
Hi gts...wanted to show you this in the channel, unluckily you are not there.

:: 22:09:29 :: - DXTR66 - »» mp3 ::: The Dresden Dolls - Yes, Virginia (2006) - 13 - Sing ::: 02:32/04:40 (|||||-----) ::: 192 kbps ««

As you can see, there are - and | in the Progressbar - but I did not set them. I also still see my old ones in the setup.

GTS

  • Administrator
  • Addicted
  • *****
  • Posts: 524
  • Karma: +2/-0
  • GTSdll Author
    • GTSdll Homepage
Yes, i know ^^

It will be fixed in next revision.
(i'm waiting kinda for CB, to do something about his dll .. ;))
---> GTSdll Homepage <---

Rogue`

  • n00b
  • GTSdll Staff
  • Getting addicted
  • *****
  • Posts: 265
  • Karma: +0/-0
    • foobar2000
Didnt he get a chance to do it this weekend?  I mean he wont be back now till Thurs probably :(

GTS

  • Administrator
  • Addicted
  • *****
  • Posts: 524
  • Karma: +2/-0
  • GTSdll Author
    • GTSdll Homepage
I guess he didnt know what to do exactly.
I'd say he should use some other VC version, that isnt built on .NET ;)
---> GTSdll Homepage <---

DXTR66

  • Getting started
  • **
  • Posts: 25
  • Karma: +0/-0
    • Consolegamers
Well if you already knew this....maybe you should add a bugtracing/bugdatabase to the site. For example bugzilla (http://www.bugzilla.org/) - it's open source, the ppl can add bugs to your software - you can add comments etc. etc.

In our company we use this tool.

Otherwise you could still prog something like that yourself... ;).


edit: Maybe bugzilla is really a bit too huge for your project. But still, i think you should add a bugtracking tool.
« Last Edit: June 25, 2006, 03:11:03 PM by DXTR66 »

GTS

  • Administrator
  • Addicted
  • *****
  • Posts: 524
  • Karma: +2/-0
  • GTSdll Author
    • GTSdll Homepage
Yeah, i was thinking about that too, but i'm looking for a more lightweight one.
6 megs is pretty much for just reporting bugs, i think. (even the forum takes less .. )

If possible i'd like to include it with the site layout / forums.
Maybe i'll make a little mod or something ;)
« Last Edit: June 25, 2006, 03:21:22 PM by GTS »
---> GTSdll Homepage <---

Nisroch

  • Guest
Hi, i look in the gtsdll.ini, and i find the bug: alias -l getbar call for %char1 & %char2 but the variables are not created anywhere in the script...
If you wanna use your own chars in the bar you must create the %char1 & %char2 variables. :D

Edit: i have corrected the bug (using $hget(GTSDll_settings,cl_bar_char*) instead %char*), i give you the good alias.

alias -l getbar {
  var %cl1 $gettok($1-,1,44)
  var %cl2 $gettok($1-,2,44)
  var %cl3 $gettok($1-,3,44)
  var %cnt $gettok($1-,4,44)
  var %char1 $hget(GTSDll_settings,cl_bar_char1)
  var %char2 $hget(GTSDll_settings,cl_bar_char2)
  if (c isincs $gettok($chan($active).mode,1,32)) {
    if ($strip(%char1) == $strip(%char2)) {
      var %char1 $chr(124)
      var %char2 -
    }
  }
  var %btext $iif(%cl2 != -1, $+ %cl2,) $+ $str(%char1,$round($calc(%cnt * %cl1 / 100),0)) $+ $iif(%cl3 != -1, $+ %cl3,) $+ $str(%char2,$round($calc((100 - %cnt) * %cl1 / 100),0))
  return %btext
}

Sorry for my english, i'm a french guy... :/
« Last Edit: June 27, 2006, 01:12:25 PM by Nisroch »

Rogue`

  • n00b
  • GTSdll Staff
  • Getting addicted
  • *****
  • Posts: 265
  • Karma: +0/-0
    • foobar2000
Thnx for taking the time to post that Nisroch, but afaik GTS already knows how to fix it, but before releaseing another revision he is waiting for chaosblade to fix something in foo.dll I think :)