IRC log for #wowace on 20131104

00:02.40breserGnarfoz: Looks to me like he's calling GetManagedEnvironment outside the secure environment and then using Exec with some obfuscated code that's got some sort of trick to insert the code into the managed environment that I haven't quite worked out yet.
00:03.09breserExec is supposed to run code passed as strings in the secure environment.
00:03.43breserOhh I think I see how this is working.
00:03.45breserVery sneaky.
00:04.13znfHow long until blizzard fixes it? ^^
00:06.46Semlaroh foxlit, you know better than to upload obfuscated code
00:09.12Semlartorhal! this is clearly a violation!
00:10.03TorhalSemlar: o.O
00:10.09TorhalHe isn't in this channel
00:10.31Semlarthat won't stop me from yelling at him
00:10.47breserHe's somehow getting direct access to the variadic values but I haven't quite figured out how.
00:11.10Stanzillagreat now we distracted breser from pitbull work
00:11.17StanzillaGOOD JOB GNARFOZ
00:11.41GnarfozoO
00:12.00breserThe bit in SetModule is the critical code.
00:26.35breserOkay I take that back, that Exec function is his own wrapper for SecureHandler_Execute.
00:26.56Gnarfozit's what he does in the .xml
00:27.06breser*nod*
00:27.08Gnarfozrather, he sets that one up there
00:27.12Gnarfozno idea what he *does* :D
00:27.36GnarfozI probably wouldn't even know if half of this WASN'T 1 or 2 letter variables ;)
00:28.04breserDoesn't help that he's very sneaky about putting multiple statements on one line in confusing ways either.
00:32.31breserYeah I'm really not sure what's going on.  It's hard to keep track of the separation between secure and insecure code.
00:34.08breserMight be able to figure it out if I ran it but I'd rather not.
00:35.19*** join/#wowace Gragagrogog (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
00:38.42Gnarfozit's not like you'll get banned
00:39.05breserLook at SecureHandlerExecute in SecureHandlers.lua
00:39.06breserif (not select(2, frame:IsProtected())) then
00:39.20breserWhat's with the select call there?
00:40.01breserWonder what the first return to IsProtected is.
00:40.10Gnarfozthe frame?
00:40.24Gnarfozit's :
00:40.37Gnarfozoh wait, that works the other way around
00:40.40Gnarfozbleh :D it's late
00:41.28breserYeah but that's a horrible API.  Sooner or later you're going to forget to get the 2nd arg.
00:41.31breserAnd in fact they do.
00:41.36breserIsWrapEligible()
00:42.52breserWonder if that isn't the trick.  That's function is used in IsWrapElgible
00:42.58bresererr is used in Wrapped_Click
00:43.03breserAnd he's adding a wrapped OnClick
00:43.56Stanzillatime for sleepz
00:44.08Stanzillanow that nebula169 is up again, you two can work out the rest for pb, breser
00:44.45nebula169breser: you should just trim all the whitespace in pb! /nod/nod
00:45.27quiescensturn it all into one line
00:45.29quiescens\o/
00:45.29bresernebula169: I honestly have never understood this obsession with whitespace that some people have.  It doesn't hurt anything.
00:45.43nebula169i know, but just a habit i can't break ;[
00:45.56quiescensgives nebula169 a cookie
00:45.58quiescensthere there
00:46.01bresernebula169: Messing with it just screws with blame and merges.
00:48.03nebula169guess its mostly because i just the gtk git gui for commits and such and can't ignore whitespace, so after working on anything i'd end up go through it to find what i'd actually changed
00:49.59bresernebula169: I don't understand that.  But at this point 90% of the changed blocks I'm reviewing are nothing other than whitespace changes.
00:50.08*** join/#wowace MysticalOS (~Myst@h41.59.186.173.dynamic.ip.windstream.net)
00:50.20nebula169yea, i regret being lazy, sorry about that
00:50.57quiescens/blame
00:53.37Gnarfozthe tinfoil hatters are out in force tonight, too ;p
00:53.50quiescenswho?
00:53.51Gnarfozzomg, you're gonna get bant!
00:53.55Gnarfozalso, obfuscation!
00:54.06quiescensgo to sleep gnarfoz
00:54.10quiescenso.o
00:54.13Gnarfozgood plan
00:56.36nebula169breser: question, if i call :Update on a frame, shouldn't that force LuaText to pull new values? i spent a lot time trying to get the boss target frames to update their texts ;[
00:56.47*** join/#wowace pentium166 (~pentium16@206-248-184-225.dsl.teksavvy.com)
00:57.39bresernebula169: Think so.
00:57.58bresernebula169: BTW you had a bad merge.
00:58.14bresernebula169: You pulled in the name field for units that is part of the anchors branch.
00:58.18nebula169i never got it to work nicely, i think, just ended up having to put lots of texts on the text themselves
00:58.32nebula169oh? where?
00:58.39breserOptions/Units.lua
00:58.49breserunit_args.name...
00:58.59breserThat whole bit shouldn't exist outside the anchors branch.
00:59.16breserYou picked it up when you pulled in my set_with_swap_template code.
01:00.51breserNot really your fault, it's git's fault.
01:00.51nebula169ah looks like i picked the entire anchor's version or such >.>
01:01.11breserThe lines I changed were adjacent to something else I'd changed on the branch.
01:01.23breserSo git assumed (rather than conflicting like it should have) that you wanted that code too.
01:01.36breserthrows thigns at gits "90% right" merging.
01:03.05Repoora3: 03funkydude * r694 modules/ReadyCheck.lua:
01:03.05RepoReadyCheck: revert hook addition and add role icons ourself, drycoded.
01:03.26breserponders how to fix this in a way that won't break merging my branch back at some point.
01:04.03*** join/#wowace pentium166 (~pentium16@206-248-184-225.dsl.teksavvy.com)
01:04.39quiescensthrow it all out~!
01:04.41breserI think the best thing is to have you remove the change on your end.
01:05.20breserThough I'm guessing we're already partly hosed becuase I think no matter what I do now git is going to think that bit has already been merged.
01:05.49quiescensfixing problems with git is such a pain
01:07.07breserI stand corrected.
01:07.11bresergit did throw a conflict...
01:07.22breserSomeone just didn't resolve it correctly. :P
01:08.38nebula169yea, i remember that, the first time i resolved it, it ended up breaking things so when i went back and redid it i think i just used your file
01:09.02Shirikpro tip
01:09.12Shirikif you try to resolve a merge and don't know what you're doing
01:09.19Shirikthe wrong thing to do is back out the change
01:09.28breserreset not revert :)
01:09.31Shirikyes
01:10.20bresernebula169: For what it's worth that's the only issue I see with my merge.
01:11.41Kaeltenhrm?
01:11.44Kaeltenoh I named mine QQ
01:19.27Repoora3: 03funkydude * r695 modules/ReadyCheck.lua: ReadyCheck: actually use the cleanName var.
01:19.39*** join/#wowace Droolio (~drool@host109-158-208-103.range109-158.btcentralplus.com)
01:22.46bresernebula169: Pretty much the problem here is that we created circular merges.
01:23.10*** join/#wowace Funkeh` (~Funkeh`@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
01:23.11*** mode/#wowace [+o Funkeh`] by ChanServ
01:34.45bresernebula169: Yeah the conflict really isn't the problem, it's the merge at all.
01:34.57bresernebula169: I probably should have made a branch based on your code and made my changes there.
01:35.20bresernebula169: And then I could have cherry picked that to anchors and you could have merged that branch back.
01:35.25*** join/#wowace Gragagrogog_ (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
01:41.03*** join/#wowace Seerah (~RyanNL@adsl-74-226-66-162.mem.bellsouth.net)
02:19.01*** join/#wowace Aeger73 (~quassel@ip70-176-63-123.ph.ph.cox.net)
02:25.09Repopitbull4: 03Shefki 07master * v4.0.0-beta48-79-g706977f  (8 files in 5 directories): [+78 commits] (74 truncated)
02:25.09Repo706977f: Merge boss frames courtesy of nebula169.
02:25.09Repof0bd200: typo
02:25.09Repo03f12be: force a GUID update for button unit events, too
02:25.09Repo3705358: force a GUID update on enemy group update events
02:26.13bresernebula169: I danced around the problem, you need to kill off your master branch and rebranch.
02:28.17Kaeltenboredom is my guess
02:34.05breserI have no idea how wowace came up with that changelog but it makes not a lick of sense.
02:35.33*** join/#wowace Gragagrogog (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
02:53.10*** join/#wowace Ackis (Ackis@WoWUIDev/WoWAce/ARL/Troll/Ackis)
02:53.10*** mode/#wowace [+o Ackis] by ChanServ
02:54.10*** join/#wowace Kaelten (Kaelten@WoWUIDev/WoWAce/WoWIFA/CurseStaff/kaelten)
02:54.10*** mode/#wowace [+o Kaelten] by ChanServ
02:54.40*** join/#wowace Sunshine (Sunshine@unaffiliated/sunshine/x-2691069)
02:54.40*** mode/#wowace [+o Sunshine] by ChanServ
02:55.40*** join/#wowace Torhal (Torhal@2600:3c00::f03c:91ff:fedb:9160)
02:55.40*** mode/#wowace [+o Torhal] by ChanServ
03:02.11*** join/#wowace ShadniX| (shadnix@p5DDFF126.dip0.t-ipconnect.de)
03:06.21*** join/#wowace RLD_osx (~RLD_osx@ip-static-212-117-176-31.as5577.net)
03:11.07nebula169Stanzilla: about the arena icon, i just dry coded something to add back in the functionality of the blizzard arena frames, didn't really like it and had planned to redo it, but never got around to it
03:35.46*** join/#wowace Gragagrogog_ (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
03:52.05*** join/#wowace [Wobin] (~quassel@203-214-77-140.dyn.iinet.net.au)
03:52.06*** mode/#wowace [+v [Wobin]] by ChanServ
03:52.49*** join/#wowace pentium166 (~pentium16@206-248-184-225.dsl.teksavvy.com)
03:58.49Repoblizzbugssuck: 03Shefki 07master * 5.4.1.0  (2 files in 1 directory): [+6 commits] (2 truncated)
03:58.51Repo57da991: Bump TOC for 5.4
03:58.51Repo783267c: Note that the PetJournal fix is still needed in 5.4.1
03:58.51Repo9f5701c: TalentUI doesn't use UIFrameFlash since apparently 5.2.  But leave in the LibChatAnims library since UIFrameFlash is still risk and the chat frames still use it.  As a result update the comment to remove the mention of talent breakage since that won't happen anymore.
03:58.51Repo1352112: Remove the fix for the Death popup, looks like it was fixed sometime around 5.4.
03:59.41*** join/#wowace ShadniX| (shadnix@p5481D8C4.dip0.t-ipconnect.de)
04:02.04Repoblizzbugssuck: 03Shefki 045.4.1.0 * f588358 /: [new tag] Tagging as 5.4.1.0
04:07.19*** join/#wowace Seerah1 (~RyanNL@adsl-74-226-65-115.mem.bellsouth.net)
04:13.06*** join/#wowace bluspacecow (~bluspacec@121.99.20.19)
04:35.54*** join/#wowace Gragagrogog (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
04:51.21*** join/#wowace Higdur (~nike@h6n2-u-d2.ias.bredband.telia.com)
05:08.27Kaeltenhow goes guys
05:08.57quiescensmoo
05:14.58Kaeltenindeed
05:23.27Fiskerhey Kaelten
05:23.33Kaeltenhi fisker
05:36.02*** join/#wowace Gragagrogog_ (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
05:43.42*** join/#wowace bluspacecow (~bluspacec@121.99.20.19)
05:45.58*** part/#wowace Seerah (~RyanNL@adsl-74-226-65-115.mem.bellsouth.net)
06:12.25*** join/#wowace bluspacecow (~bluspacec@121.99.20.19)
06:12.28*** join/#wowace Antiarc (~Instantbi@ip68-109-131-126.ph.ph.cox.net)
06:12.29*** mode/#wowace [+v Antiarc] by ChanServ
06:16.50*** join/#wowace fylwind (~fyl@76-250-60-119.lightspeed.lnngmi.sbcglobal.net)
06:36.09*** join/#wowace Gragagrogog (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
06:40.33*** join/#wowace Elmoe (~Elmoe@c-67-185-162-133.hsd1.wa.comcast.net)
07:06.13Repoangry-assignments: 03Ermads 04v0.4.2 * aba2ee9 /: [new tag, +3 commits] Tagging as v0.4.2
07:18.41*** join/#wowace wereHamster (~tomc@azeroth.caurea.org)
07:36.28*** join/#wowace Gragagrogog_ (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
07:36.48*** join/#wowace profalbert (~christoph@80-121-43-77.adsl.highway.telekom.at)
07:39.24sbwmorning
07:45.07*** join/#wowace Megalon (~Starfox@80-123-6-55.adsl.highway.telekom.at)
07:49.38*** join/#wowace Adirelle[work] (~Adirelle@195.221.112.210)
07:49.43*** join/#wowace Fastfire (~kjetil@253.210.251.212.customer.cdi.no)
07:54.57*** join/#wowace Timmeh (tim@will.code.for.food.wienk.net)
08:10.16*** join/#wowace Elmoe (~Elmoe@c-67-185-162-133.hsd1.wa.comcast.net)
08:29.02quiescenso/
08:36.30*** join/#wowace Gragagrogog (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
08:48.09Reponpcscan-overlay: 03ananhaid 07master * v5.4.0.5-6-g2fa8e3e Locales/Locale-enUS.lua: [+1 commit] - cleanup.
08:55.07*** join/#wowace VTLob (~VTLob@146-52-107-98-dynip.superkabel.de)
09:29.44*** join/#wowace Ironi (~ironi@85-76-44-252-nat.elisa-mobile.fi)
09:36.47*** join/#wowace Gragagrogog_ (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
09:39.15*** join/#wowace Foxor (~Starfox@212-197-169-89.adsl.highway.telekom.at)
09:52.29*** join/#wowace harl (harl@dslb-178-001-219-158.pools.arcor-ip.net)
10:01.31Repohandynotes_timelesstreasures (experimental): 03rainrider 07master * v1.0-beta-2-2-gce70556  (2 files in 1 directory): [+2 commits]
10:01.31Repoce70556: Sane stepping for icon scale and alpha. Default values are now 1
10:01.31Repo991dbfe: Add option to crop the icon border
10:02.09Repohandynotes_timelesstreasures (experimental): 03rainrider 04v1.0-stable * fbd7dc4 /: [new tag] Version 1.0 Release
10:07.14*** join/#wowace ZaB|SHC| (~Zaphod_Be@i5E86B0AA.versanet.de)
10:31.24*** join/#wowace JTF195 (~JTF195@static-173-75-39-6.pitbpa.fios.verizon.net)
10:36.57*** join/#wowace Gragagrogog (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
11:37.08*** join/#wowace Gragagrogog_ (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
11:42.28*** join/#wowace Slayman (~dejhap08@port-8957.pppoe.wtnet.de)
11:49.15Repognomexcel: 03humbedooh * r23 Gnomexcel.toc: Update TOC, this baby still works <3
11:56.51Humbedoohwru packager :o
11:56.54Humbedoohblames Torhal
11:57.24quiescensblames humbedooh
12:07.28Repopocket-gnome: 03Humbedooh * r9 PocketGnome.toc: Updating TOC
12:10.02Repognomexcel: 03humbedooh 04r23-release * r24 : Tagging as r23-release
12:10.13Humbedoohblames quiescens
12:24.50*** join/#wowace Droolio (~drool@host109-158-208-103.range109-158.btcentralplus.com)
12:25.29Repoouf_adirelle: 03Adirelle 07master * 1.10.1-beta-4-4-g8e64428 / (3 files in 2 directories): [+4 commits]
12:25.29Repo8e64428: Reworked WarningIcon to accept a .noDispellable to ignore all dispellable debuffs.
12:25.29Repo9f706fc: Typo: lib:GetDispelType => LibDispellable:GetDispelType.
12:25.29Repo5048bcd: Use LibDispellable:GetDispelType function to check enrage buffs and special cases.
12:25.29Repo9503e17: Properly pass the spell ID to all call to LibDispellable:CanDispel.
12:29.58Fisker\o/ Stanzilla
12:29.59Fiskerit's moving
12:37.19*** join/#wowace Gragagrogog (~Gragagrog@ip-89-177-116-251.net.upcbroadband.cz)
12:38.38Stanzillayeah
12:38.41Stanzillaalso hi
12:38.43Stanzillaand nebula169 ok
12:39.00Fiskerhi
12:39.19Fiskerwhen are you hearing back about your results?
12:39.55Stanzilla2 weeks probably
12:46.26*** join/#wowace bluipodcow (~bluspacec@114-134-0-114.lightwire.co.nz)
12:49.10sbhi Stanzilla
12:49.28RepoNew addon: HandyNotes_TimelessTreasures - http://www.wowace.com/addons/handynotes_timelesstreasures/
12:49.35Stanzillaheey
12:57.47Stanzillapretty cool that boss frames are finally in mainline pb
12:58.25Stanzillanow it just needs sane defaults and it can be a release after 48357329 years :D
13:04.19Repobig-wigs: 03funkydude * r11547 / (6 files in 3 directories):
13:04.19RepoAltPower: drycoded support for using sync instead of UnitPower calls. Generally for fights with phasing where players return 0 in a phase, or fights like Norushen where UnitPower values for other players are totally broken.
13:06.06Funkeh`MysticalOS, ^ please copy :)
13:06.51winksees gnomexcel for the first time and goes: WTF
13:07.49*** join/#wowace Gnarfoz (smallbrain@irc.geektour.de)
13:10.46quiescenso.o
13:10.57nebula169wink: its pretty old :p Humbedooh made a bunch of esoteric addons
13:11.03quiescenswhat does it do?
13:11.16nebula169in-game spreadsheet, like excel
13:11.26HumbedoohI made all sorts of shit back in the days
13:11.34nebula169<PROTECTED>
13:11.46quiescensif someone wants to play spreadsheets they should really just play eve
13:12.15*** join/#wowace VTLob (~VTLob@146-52-107-98-dynip.superkabel.de)
13:12.22Humbedoohbut this plugs into WoW :O you can even use player/raid/mob parameters in macros :D
13:14.14JTF195<3
13:21.58winkquiescens: I found eve to be amazingly un-excel
13:22.15quiescensi'm just running with the classic joke
13:22.17quiescens):
13:22.24quiescensgives wink a cookie
13:22.29winkwell a friend exactly told me that
13:22.35winkhe stopped after one week because excel
13:22.45winkand I believed him
13:23.03quiescens1/10, not as excel-like as advertised?
13:27.54bluipodcowThat's assuming wink has 10 friends that may or may not of played eve
13:32.11Timmehit's not per definition Excel-like, I've heard reports of Mac users referring to Eve as Numbers-like, and a smaller group of people referring to Eve as Libre Office Calc-like
13:34.07JTF195^ lol
13:36.58Repoadifocusbar: 03Adirelle 07master * 1.2 Logic.lua: [+1 commit] Marksmanship: use Aimed Shot as a focus dump when over 50% haste.
13:36.58Repoadifocusbar: 03Adirelle 041.2 * 57ee60a /: [new tag] Fixed Marksmanship.
13:41.50*** join/#wowace Caleb| (~Caleb|@WoWUIDev/WoWAce/EnsidiaFails/Caleb)
13:43.38*** join/#wowace pentium166 (~pentium16@206-248-184-225.dsl.teksavvy.com)
13:47.19winkI like it :)
13:47.29winkand actually hardly anyone I know stopped playing it
13:47.32winkunlike wow
13:47.34winkthey all stopped
13:48.06quiescenswhat kind of player are you?
13:48.12Repobig-wigs: 03funkydude * r11548 SiegeOfOrgrimmar/Norushen.lua: Norushen: fix alt power arg order.
13:48.22Funkeh`the quitter kind
13:48.23quiescensdo you go around murdering helpless newbies?
13:48.47winkquiescens: right now: training, to avoid "you are not prepared", and mining
13:48.51winkand running a few missions
13:48.56winkso classical highsec-carebear
13:48.58quiescenslikely story
13:49.10Funkeh`you're a slacker mcfly
14:03.09Repoouf_adirelle: 03Adirelle 041.10.1-beta-5 * def1f7f /: [new tag] Some fixes on debuff display.
14:03.49*** join/#wowace bluipodcow (~bluspacec@114-134-0-38.lightwire.co.nz)
14:16.41StanzillaGnarfoz: http://www.androidpolice.com/2013/11/04/merging-of-google-voice-and-hangouts-will-result-shutting-down-all-3rd-party-voice-apps-in-may-2014/
14:24.58Funkeh`good times
14:31.46*** join/#wowace Ressy (~resa1983@WoWUIDev/WoWAce/ARL/Ressy)
14:33.09sbStanzilla: still no standalone client...
14:34.55Stanzillasb: for desktop win or what?
14:36.00sbyup
14:36.19Fiskerold Stanzilla :O
14:52.01*** join/#wowace RLD_osx_ (~RLD_osx@24-182-109-19.dhcp.ftwo.tx.charter.com)
15:11.43Stanzillasb: why do you need that though?
15:17.24sbStanzilla: because useful!?
15:17.31sbi dont like the chrome extension
15:18.18Stanzillaok
15:28.34quiescenso.o
15:42.12*** join/#wowace Mihau (~Mihau@76.164.170.2)
15:49.13*** join/#wowace bluipodcow (~bluspacec@114-134-0-38.lightwire.co.nz)
15:49.44*** join/#wowace profalbert_ (~christoph@80-121-43-77.adsl.highway.telekom.at)
15:56.09*** join/#wowace Mihau (~Mihau@76.164.170.2)
16:05.49Repobig-wigs: 03funkydude * r11549 Plugins/AltPower.lua: AltPower: fix sync listener.
16:29.38*** join/#wowace VTLob (~VTLob@178-24-33-120-dynip.superkabel.de)
16:37.50Funkeh`http://www.guru3d.com/news_story/amd_mantle_graphics_api_adopted_by_various_developers.html
16:38.31nevcairielgreat, a PR piece
16:38.39Reporarity: 03allara * r221  (2 files in 1 directory): - Drop rate adjustments for Siege of Orgrimmar pets
16:38.39Repo- Add Kovok
16:43.00*** join/#wowace elvador (~elvador@2a01:5c0:2:2e1:80ef:45fc:fe9b:50e5)
16:48.58*** join/#wowace stolenlegacy (~stolenleg@unaffiliated/stolenlegacy)
16:52.15*** join/#wowace nevcairiel (nev@WoWUIDev/WoWAce/Ace3/nevcairiel)
16:52.15*** mode/#wowace [+o nevcairiel] by ChanServ
16:52.57*** join/#wowace pompy (~Mike@c-50-166-85-212.hsd1.nj.comcast.net)
17:00.27*** join/#wowace Venara (~Venaraa@86-42-165-87-dynamic.b-ras3.chf.cork.eircom.net)
17:06.12Reporarity: 03allara * r222  (3 files in 1 directory):
17:06.12Repo- Add Zandalari Anklerender, Zandalari Footslasher, Zandalari Kneebiter, Zandalari Toenibbler
17:06.30Fiskerthat's weird Funkeh`
17:06.39Fiskerbittorent = bam
17:06.39Fiskerrouter crashes
17:06.39Fiskerfunny story
17:06.44Reporarity: 03allara 04r222-release * r223 : Tagging as r222-release
17:06.48FiskerMy HTPC runs torrents without any issues
17:09.58Funkeh`:/
17:10.15Funkeh`really not off to a good start
17:11.18*** join/#wowace ZaB|SHC| (~Zaphod_Be@muedsl-82-207-235-230.citykom.de)
17:11.43nevcairielprobably too many connections, quite some routers have issues with that a ctually
17:12.02Funkeh`the 68u shouldn't have issues with anything
17:12.07Funkeh`the firmware is just bad right now
17:12.16Funkeh`the hardware is more than capable
17:12.29Fiskernevcairiel it's literally I torrent on my own box = router crashes
17:12.37FiskerMy HTPC torrents all day long
17:12.40Fiskernot one single crash
17:12.47Funkeh`ahh
17:12.57FiskerAnd it doesn't recover by itself
17:13.02FiskerSo kinda weird
17:21.03Adirellewill the packager be affected by http://www.wowace.com/announcements/new-store-launched/ ?
17:21.49nevcairielwhy would it
17:24.17AdirelleI'm not sure it concerns only the sites
17:24.38Funkeh`huh?
17:24.43Funkeh`that's already happened you know
17:25.00Funkeh`asking "will it" seems a bit odd
17:29.29*** join/#wowace silv3rwind (uid14256@gateway/web/irccloud.com/x-mhqgoifebqjknvpi)
17:30.25*** join/#wowace Adirelle[work] (~Adirelle@195.221.112.210)
17:31.44*** join/#wowace Talryn (~Talryn@unaffiliated/talryn)
17:33.04*** join/#wowace profalbert (~christoph@80-121-43-77.adsl.highway.telekom.at)
17:33.36*** join/#wowace profalbert_ (~christoph@80-121-43-77.adsl.highway.telekom.at)
17:33.56Reporarity: 03allara * r224 Core.lua:
17:33.56Repo- Rarity will now continuously scan your statistics for new attempts. This should allow Rarity to detect boss kills which occur while you are dead, or after you've dropped combat during the kill (but were still eligible for the kill). This only works for items which are tied to a Statistic (which is all raid boss kills from Cataclysm and on).
17:44.29*** join/#wowace profalbert (~christoph@80-121-43-77.adsl.highway.telekom.at)
17:48.48*** join/#wowace profalbert (~christoph@80-121-43-77.adsl.highway.telekom.at)
17:50.07TorhalAdirelle: We just launched a new store - the rest is coming later.
17:51.21AdirelleTorhal, and this rest includes a brand new packager that doesn't leak files and can pull external repositories ?
17:51.37TorhalYar.
17:52.31Adirellewoohoo !
17:53.11*** join/#wowace profalbert (~christoph@80-121-43-77.adsl.highway.telekom.at)
18:00.43Repobig-wigs: 03funkydude * r11550  (2 files in 1 directory): AltPower: enable lock functionality.
18:01.44*** join/#wowace MysticalOS (~Myst@h41.59.186.173.dynamic.ip.windstream.net)
18:13.01Funkeh`http://www.theverge.com/2013/11/4/5063760/we-try-the-steam-machine-valves-video-game-console-of-the-future
18:27.40*** join/#wowace bluipodcow (~bluspacec@114-134-0-73.lightwire.co.nz)
18:34.28PrimerToo late, we saw the hostname
18:37.40*** join/#wowace bluipodcow (~bluspacec@114-134-0-33.lightwire.co.nz)
18:40.47Repobig-wigs: 03funkydude * r11551 Plugins/AltPower.lua: AltPower: tweaks
18:40.55*** join/#wowace JTF195 (~JTF195@static-173-75-39-6.pitbpa.fios.verizon.net)
18:50.30Stanzillahttps://twitter.com/FirefoxNightly/status/397434204138786816
18:52.00nevcairielwhy do we still care about firefox
18:52.59Stanzillaidk
18:53.23Stanzillasome people in here still use it :o
18:54.13Stanzillabtw call of duty ghosts is 66gb
18:54.17Stanzillawhat they hell did they do there
18:54.23Repopets-and-mounts: 03Shenton 07master * v1.4.4-4-gc5dcaf3  (6 files in 3 directories): [+3 commits]
18:54.23Repoc5dcaf3: Added a special filter for pets with the same name (ticket 13)
18:54.24Repof5e7c4b: Fixed and reworked bindings
18:54.24Repoa47f131: Added tabbed list for companions, by families Added a way to spot easily the named companions
18:54.24nevcairielwtf
18:54.41Stanzillayeah
18:57.06Stanzillaoh ok
18:57.06Stanzillahttp://www.eurogamer.net/articles/2013-10-08-mega-textures-push-call-of-duty-ghosts-on-pc-to-50gb
18:57.09Stanzilla4k textures
18:57.22*** join/#wowace DarkAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
18:59.08Repognomexcel: 03humbedooh * r25 Gnomexcel.lua: nil check
18:59.30Torhaladds formulas to Humbedooh's cells.
18:59.39Fiskera
19:01.18*** join/#wowace bluipodcow (~bluspacec@121.99.20.19)
19:02.34MysticalOSevery attempt to narrow down why wim fucks up connected realm whispers, brings me back to libwho
19:02.38MysticalOSand i really don't want to fix that
19:04.02Funkeh`don't think who works with xrealm
19:06.17MysticalOSit does with virtual/connected realms
19:06.20MysticalOSit just doesn't know it
19:06.24MysticalOSso it doesn't even try
19:06.49MysticalOSit's also getting royally confused because apis are returning that user is on same realm so it's stripping -realmname
19:07.12MysticalOSwhich is currently what breaks sending whispers, I just can't figure out where it's doing the strip
19:07.16Funkeh`realms are pretty bugged right now though maybe that's something to do with it
19:07.49MysticalOSnah, def wim issue. everything works fine without wim. wim is just a mess. i've never understood this code to begin with, fixing major bugs like this will take hours
19:08.09MysticalOSmost annoying part is, i have to keep whispering random strangers to test it
19:16.54znfMysticalOS, remind me again, are you on EU or US?
19:21.01MysticalOShttp://www.wowace.com/addons/wim-3/pages/main/ there we go, fixed
19:21.12MysticalOSnot a bug because it's not supported
19:26.22*** join/#wowace MoonWitch (~moonwitch@158.55-242-81.adsl-dyn.isp.belgacom.be)
19:29.32ArcharodimIs there an add-on to automatically switch the configuration profiles of several other add-ons depending on specific conditions (such as solo, party, etc...)?
19:31.35JTF195reflux can switch multiple addon profiles at the same time, but not conditionally/automatically
19:37.27Archarodimok thanks
19:37.39*** join/#wowace Telshin (~textual@2001:408:0:100:9ce8:39d6:d444:b30b)
19:37.41Archarodimsuch a feature would be nice though
19:38.14nevcairieli think automatic profile changes would make people use that way too much and then complain that their game lags when they join a group
19:38.26nevcairielnot to mention that some addons cannot change their settings in combat
19:40.28JTF195one downside of reflux is that it switches all supported AceDB profiles to whatever you input, without any exceptions
19:44.10Archarodimit could work in the same way as add-on loader: add-on would declare what they support in their TOC and the profile switcher add-on would respect that and wait to switch if necessary for an out of combat situation or to prevent lag...
19:44.46JTF195most addons save to either "Default", or "<Character> - <Realm>".   if you do /reflux switch New001, it's switches every single addon profile to that (which is often undesirable)
19:46.53JTF195even something as simple as a unified acedb profile control panel would work
19:48.24JTF195lots of addons already support dual profiles
19:50.13JTF195seems to me like a logical extension of that functionality
19:50.57Archarodimindeed
19:53.55*** join/#wowace JTF195 (~JTF195@static-173-75-39-6.pitbpa.fios.verizon.net)
19:54.10Archarodimor even better, AceDB-3.0 could include this functionality...
19:55.56znfhttp://www.reddit.com/r/WowUI/comments/1pvos0/help_curse_client_not_work_mac/
19:56.28Archarodimand AceDBOptions-3.0 would provide the settings for each add-on...
21:09.36*** join/#wowace webturtle0 (~webturtle@d28-23-204-97.dim.wideopenwest.com)
21:30.20*** join/#wowace webturtle0 (~webturtle@d28-23-204-97.dim.wideopenwest.com)
21:31.31*** join/#wowace Adirelle[work] (~Adirelle@195.221.112.210)
21:37.16*** join/#wowace MoonWitch (~moonwitch@158.55-242-81.adsl-dyn.isp.belgacom.be)
22:12.18Stanzilla.
22:14.40Primerยท
22:14.46Parnic.
22:14.50haste.
22:14.55PrimerNote mine is not the same
22:15.15nevcairielPrimer is a special snowflake
22:17.02TorhalMelt him!
22:17.52PrimerSo, fellow shadow priests...I don't feel that ToF is better than PI
22:18.21PrimerMy DPS has gone done since switching
22:19.45*** join/#wowace silv3rwind (uid14256@gateway/web/irccloud.com/x-bsedyrldjhfzvjiq)
22:26.06winkwow, I thought ShadowCraft was broken
22:26.32winkbut I just accidentally put in 2 weird gems that amount to 295095 dps instead of 295140
22:26.37Stanzillawhy is it so quiet in here
22:26.50winkso I could "optimum regem & reforge" for... 60 dps
22:30.11winkwarforged was a silly idea
22:30.36winkmy warforged helm -> heroic helm is a 0.3%dps upgrade for the price of 2200 gold and 500 valor
22:31.30Semlari hate the idea of warforged gear
22:31.50Semlarnot leastwise because it basically doesn't drop on 10 man and is mostly a 25 man thing
22:32.32winkyeah, think I had 1 Thunderforged item
22:32.35winkwhen I did only 10man
22:32.40winkit was a cloak, of all slots
22:33.24winkand now: wrist, MH, Boots, 1 Trinket, Helm - from 25
22:33.30Semlarif you have the people to do 25 mans it is so much of a better idea than 10s
22:33.39winkyep. was definitely better without
22:33.46winkwell, we had 8 raiders
22:33.48Semlaryou can gear up so much faster too
22:33.50winkso we all transferred
22:33.55winkto join a 25man
22:34.00winkinstead of disbanding
22:34.27Semlarsince more loot drops on 25 man less gear gets wasted and you're more likely to have an upgrade drop
22:34.33winkyeah.
22:34.40winkplus 3 Battle Rezzes
22:35.51Semlari kinda feel like 10 man should get more than 1
22:43.17*** join/#wowace MoonWitch (~moonwitch@158.55-242-81.adsl-dyn.isp.belgacom.be)
22:47.11PrimerBut then we 10 man people can't complain that we have it rougher
23:11.05*** join/#wowace Dridzt (~Miranda@athedsl-27626.home.otenet.gr)
23:11.30DridztBigWigs needs its victory fanfare changed to this version http://www.youtube.com/watch?v=JPBRbIvs5lc  :P
23:12.37DridztTorhal is a talented singer
23:12.41Funkeh`there's already a victorylong sound
23:12.45Funkeh`it actually sounsd quite similar
23:13.02TorhalDridzt: Haha
23:13.05Dridzthaha, no surprise it's final fantasy 7 fanfare :P
23:25.30Stanzillatouches nebula169
23:27.55*** join/#wowace Motig (~Woho@31-151-161-87.dynamic.upc.nl)
23:29.35Torhalnevcairiel: Your redirect is in.
23:35.26Repoouf_adirelle: 03Adirelle 07master * 1.10.1-beta-5-2-g1e783bd / (2 files in 2 directories): [+2 commits]
23:35.26Repo1e783bd: Do not show any undispellable debuff on the right side of raid frames; only the important ones.
23:35.26Repo16865b1: Fixed debuff sizes on unit frames.
23:38.10*** join/#wowace Ressy (~Ressy@WoWUIDev/WoWAce/ARL/Ressy)
23:44.10Stanzillatest
23:49.10silentiumtest failed, please try again
23:49.57Stanzillayeah turns out
23:49.59Stanzillakvirc fucking sucks
23:50.08Stanzillaand I had everyone on ignore for the last 4 hours or so
23:50.09Stanzillagg
23:50.48Gnarfoznice

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.