Welcome Guest ( Log In | Register )

43 Pages V « < 6 7 8 9 > »   
Reply to this topicStart new topic
> [Add-on] HVStat 5.7.1 (November 2017), HV Statistics, Tracking, and Analysis Tool (for Firefox and Chrome)

 
post Aug 11 2012, 23:24
Post #125
H2Odk



Newcomer
**
Group: Members
Posts: 90
Joined: 27-April 10
Level 211 (Godslayer)


QUOTE(greentea039 @ Aug 11 2012, 02:28) *

On the current implementation of HVSTAT, MID is used as an index of the array of the monster database. Thus, if a monster which has big MID appears, too much space is consumed. I have recognized this as a problem, and currently working on a solution.


What about IndexedDB, wouldn't that work.. or is that not implemented in chrome yet.. or does it have the same size restrictions.

If it does work, it might even be faster, since you wouldn't have to load all the monster data, but just the ones that are relevant.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 11 2012, 23:35
Post #126
Late for work :(



[CENSORED]
***
Group: Gold Star Club
Posts: 203
Joined: 5-July 08
Level 388 (Dovahkiin)


QUOTE(H2Odk @ Aug 12 2012, 09:24) *

What about IndexedDB, wouldn't that work.. or is that not implemented in chrome yet.. or does it have the same size restrictions.

If it does work, it might even be faster, since you wouldn't have to load all the monster data, but just the ones that are relevant.


Chrome supports IndexedDB and WebSQL (Indexed being the better choice).
Chrome is easy enough to fix though, it just needs permission for unlimited storage:
CODE
"permissions": [
    "unlimitedStorage",
]


This would allow unlimited storage for IndexedDB, WebSQL, localStorage, sessionStorage and webkitFileSystem.
It doesn't solve the issue in Firefox though. TBH, I feel the monster data system needs rewriting rather than patching.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 12 2012, 00:12
Post #127
H2Odk



Newcomer
**
Group: Members
Posts: 90
Joined: 27-April 10
Level 211 (Godslayer)


QUOTE(GaryMcNabb @ Aug 11 2012, 23:35) *

Chrome supports IndexedDB and WebSQL (Indexed being the better choice).
Chrome is easy enough to fix though, it just needs permission for unlimited storage:
CODE
"permissions": [
    "unlimitedStorage",
]


This would allow unlimited storage for IndexedDB, WebSQL, localStorage, sessionStorage and webkitFileSystem.
It doesn't solve the issue in Firefox though. TBH, I feel the monster data system needs rewriting rather than patching.


I don't think unlimitedStorage applies to localStorage [developer.chrome.com] http://developer.chrome.com/extensions/manifest.html .. says "applies only to Web SQL Database and application cache"
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 12 2012, 00:40
Post #128
Late for work :(



[CENSORED]
***
Group: Gold Star Club
Posts: 203
Joined: 5-July 08
Level 388 (Dovahkiin)


QUOTE(H2Odk @ Aug 12 2012, 10:12) *

I don't think unlimitedStorage applies to localStorage [developer.chrome.com] http://developer.chrome.com/extensions/manifest.html .. says "applies only to Web SQL Database and application cache"


Odd, I'm sure I read that somewhere.
From what I've read, it appears localStorage and sessionStorage are the only two that never get unlimited storage (limit of 5MB).

I wish Google would timestamp their docs, it's a pain trying to figure out if their information is outdated.

EDIT: I'll need to run tests.

This post has been edited by GaryMcNabb: Aug 12 2012, 00:40
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 12 2012, 09:25
Post #129
oohay



Casual Poster
***
Group: Members
Posts: 151
Joined: 11-May 10
Level 289 (Godslayer)


QUOTE(GaryMcNabb @ Aug 11 2012, 15:44) *
Yeah that was my bad.
Renamed to HVS_FIREFOX_5.4.1.9.user.js.
You should also be able to install it without installing anything else first.
Apparently Greasemonkey wasn't happy when I shrunk the code.

Okay. Installed 5.4.1.9 on top of nothing. (IMG:[invalid] style_emoticons/default/smile.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 12 2012, 10:13
Post #130
Factofu



Regular Poster
*****
Group: Gold Star Club
Posts: 695
Joined: 23-August 10
Level 358 (Dovahkiin)


A question... is it possible to enable only the "Proficiency Gain Summary"?

If not, in the next version could you make it possible? (IMG:[invalid] style_emoticons/default/biggrin.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 12 2012, 17:11
Post #131
bbgr



Forever Alone
************
Group: Catgirl Camarilla
Posts: 27,771
Joined: 19-September 08
Level 328 (Ascended)


QUOTE(bbgr @ Aug 10 2012, 22:40) *

I'm using FF with chrome style, when i drag .js file on browser instead of instal the script on GM i open the script... any issue?

Thanks.


QUOTE(GaryMcNabb @ Aug 10 2012, 22:55) *

Is the extension still .user.js?
The .user is important.


Yes, the one inside the folderyou download, I also try to renameit but still nothing...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 13 2012, 02:16
Post #132
Late for work :(



[CENSORED]
***
Group: Gold Star Club
Posts: 203
Joined: 5-July 08
Level 388 (Dovahkiin)


QUOTE(bbgr @ Aug 13 2012, 03:11) *

Yes, the one inside the folderyou download, I also try to renameit but still nothing...


Download it using this link
(IMG:[i1213.photobucket.com] http://i1213.photobucket.com/albums/cc476/ragnaware/step1.jpg)

Then click and drag the file into a Firefox window.
It should work.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 13 2012, 16:57
Post #133
greentea039



Casual Poster
****
Group: Members
Posts: 374
Joined: 10-March 11
Level 343 (Godslayer)


QUOTE(pigowallace @ Aug 12 2012, 17:13) *
A question... is it possible to enable only the "Proficiency Gain Summary"?

Currently, no.

QUOTE(pigowallace @ Aug 12 2012, 17:13) *
If not, in the next version could you make it possible? (IMG:[invalid] style_emoticons/default/biggrin.gif)

Perhaps if someone else is free. I'm working to fix another serious bug.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 15 2012, 02:17
Post #134
MidNightPass



Elite Poster
*********
Group: Catgirl Camarilla
Posts: 5,210
Joined: 20-March 11
Level 500 (Ponyslayer)


The gem can't be used by clicking manually (above the spell cast bar), also the "+" button doesn't select the highest skill available (for DW). It will be great if these two are fixed. Cheer.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 15 2012, 03:57
Post #135
Late for work :(



[CENSORED]
***
Group: Gold Star Club
Posts: 203
Joined: 5-July 08
Level 388 (Dovahkiin)


QUOTE(MidNightPass @ Aug 15 2012, 12:17) *

The gem can't be used by clicking manually (above the spell cast bar), also the "+" button doesn't select the highest skill available (for DW). It will be great if these two are fixed. Cheer.


Which version and browser are you using.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 15 2012, 10:15
Post #136
oohay



Casual Poster
***
Group: Members
Posts: 151
Joined: 11-May 10
Level 289 (Godslayer)


Using 5.4.1.9, I had increased dom.storage.default_quota to 1048576, so that shouldn't be the issue. 5.4.1.9 gave me nothing, so I downgraded to 5.4.1.4 [DEBUG4], which gives [pastebin.com] http://pastebin.com/erGc1TQD at least upon scanning. I changed over mid-round, so I don't know the MIDs. Perhaps a debug for 5.4.1.9 would be nice, but if 5.4.1.4 has the same issue it may be unnecessary for now. This seems to be a very intermittent problem, assuming it's just one problem (it has happened before with 5.4.1.9, again assuming so), but it's not one that necessarily fixes itself within the round, which makes it irritating nonetheless.

This post has been edited by oohay: Aug 15 2012, 10:19
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 15 2012, 16:48
Post #137
greentea039



Casual Poster
****
Group: Members
Posts: 374
Joined: 10-March 11
Level 343 (Godslayer)


Coloring when the character is damaged is different between 5.4.1.4 and 5.4.1.9.
Is this intentional? I think maybe a bug.

5.4.1.4
Attached Image

5.4.1.9
Attached Image
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 15 2012, 17:16
Post #138
MidNightPass



Elite Poster
*********
Group: Catgirl Camarilla
Posts: 5,210
Joined: 20-March 11
Level 500 (Ponyslayer)


QUOTE(GaryMcNabb @ Aug 15 2012, 09:57) *

Which version and browser are you using.


5.4.1.9, chrome.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 16 2012, 06:51
Post #139
Late for work :(



[CENSORED]
***
Group: Gold Star Club
Posts: 203
Joined: 5-July 08
Level 388 (Dovahkiin)


QUOTE(greentea039 @ Aug 16 2012, 02:48) *

Coloring when the character is damaged is different between 5.4.1.4 and 5.4.1.9.
Is this intentional? I think maybe a bug.


That was a bug. It was fixed when I rewrote the battlelog highlighting function.

QUOTE(MidNightPass @ Aug 16 2012, 03:16) *

5.4.1.9, chrome.


I can't replicate the bug, it might be something else conflicting with it.
Try turning off other extensions or mods and see if it works.

QUOTE(oohay @ Aug 15 2012, 20:15) *

Using 5.4.1.9, I had increased dom.storage.default_quota to 1048576, so that shouldn't be the issue. 5.4.1.9 gave me nothing, so I downgraded to 5.4.1.4 [DEBUG4], which gives [pastebin.com] http://pastebin.com/erGc1TQD at least upon scanning. I changed over mid-round, so I don't know the MIDs. Perhaps a debug for 5.4.1.9 would be nice, but if 5.4.1.4 has the same issue it may be unnecessary for now. This seems to be a very intermittent problem, assuming it's just one problem (it has happened before with 5.4.1.9, again assuming so), but it's not one that necessarily fixes itself within the round, which makes it irritating nonetheless.


greentea039's working on that.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 16 2012, 10:01
Post #140
MidNightPass



Elite Poster
*********
Group: Catgirl Camarilla
Posts: 5,210
Joined: 20-March 11
Level 500 (Ponyslayer)


QUOTE(GaryMcNabb @ Aug 16 2012, 12:51) *

That was a bug. It was fixed when I rewrote the battlelog highlighting function.
I can't replicate the bug, it might be something else conflicting with it.
Try turning off other extensions or mods and see if it works.
greentea039's working on that.


It conflicts with the keybind. I wonder if they can work at the same time...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 16 2012, 11:38
Post #141
Late for work :(



[CENSORED]
***
Group: Gold Star Club
Posts: 203
Joined: 5-July 08
Level 388 (Dovahkiin)


QUOTE(MidNightPass @ Aug 16 2012, 20:01) *

It conflicts with the keybind. I wonder if they can work at the same time...


Fixed the powerup issue for next release.
I'll try fixing Dual Wield at some point when I have time.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 17 2012, 05:43
Post #142
oohay



Casual Poster
***
Group: Members
Posts: 151
Joined: 11-May 10
Level 289 (Godslayer)


QUOTE(GaryMcNabb @ Aug 16 2012, 00:51) *
greentea039's working on that.

Okay. I'm actually unable to imbue him again, although I just imbued you. Are there at least six people working on this, and, if so, who are they? It would be nice to have more ability to imbue HV Statters. ;p
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 18 2012, 02:45
Post #143
HTTP/308



Lurking
*******
Group: Catgirl Camarilla
Posts: 1,087
Joined: 8-April 10
Level 498 (Godslayer)


How to disable "pick up a gem" pop-up?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 18 2012, 07:27
Post #144
greentea039



Casual Poster
****
Group: Members
Posts: 374
Joined: 10-March 11
Level 343 (Godslayer)


QUOTE(fllwr @ Aug 18 2012, 09:45) *
How to disable "pick up a gem" pop-up?

Turn off 'Alert on Powerup drops'.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


43 Pages V « < 6 7 8 9 > » 
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 14th June 2025 - 12:17