Advertisement
Guest User

Untitled

a guest
Sep 27th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [Rainmeter]
  2.  Author=Krafty
  3.  Update=1000
  4.  
  5. [Metadata]
  6.  Name=Kickstarter Watcher
  7.  Version=1.0.0
  8.  Information=Displays the current status of a Kickstarter.
  9.  License=Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported
  10.  
  11. [Variables]
  12.  
  13. name = "Savior"
  14.  
  15. [MeasureSite]
  16. Measure=Plugin
  17. Plugin=WebParser.dll
  18. URL=http://www.kickstarter.com/projects/search.json?search=&term=#name#
  19. RegExp=(?siU).*goal":(.*)\..*pledged":(.*)\..*small":"(.*)".*project":"(.*)\?
  20.  
  21. [MeasureGoal]
  22. Measure=Plugin
  23. Plugin=WebParser.dll
  24. URL=[MeasureSite]
  25. StringIndex=1
  26.  
  27. [MeasurePledged]
  28. Measure=Plugin
  29. Plugin=WebParser.dll
  30. URL=[MeasureSite]
  31. StringIndex=2
  32.  
  33. [MeasureIcon]
  34. Measure=Plugin
  35. Plugin=WebParser.dll
  36. URL=[MeasureSite]
  37. StringIndex=3
  38. Download=1
  39. UpdateRate=86400
  40.  
  41. [MeasureURL]
  42. Measure=Plugin
  43. Plugin=WebParser.dll
  44. URL=[MeasureSite]
  45. StringIndex=4
  46.  
  47. [MeasureCurrencyType]
  48. Measure=Plugin
  49. Plugin=WebParser.dll
  50. URL=http://www.kickstarter.com/projects/search.json?search=&term=#name#
  51. RegExp=(?siU).*currency_symbol":"(.*)"
  52. StringIndex=1
  53. Substitute="\u00a3":"£"
  54.  
  55. [MeasureFormat]
  56. Measure=Script
  57. ScriptFile="#currentpath#/@Resources/Scripts/format.lua"
  58.  
  59. [MeterIcon]
  60. Meter=Image
  61. MeasureName=MeasureIcon
  62.  
  63. [MeterTextBg]
  64. Meter=Image
  65. ImageName=#currentpath#/@Resources/Images/background.png
  66. ImageAlpha=120
  67. Y=120
  68.  
  69. [MeterPledgedLabel]
  70. Meter=String
  71. MeasureName=MeasureCurrencyType
  72. FontSize=11
  73. FontColor=255,255,255,255
  74. AntiAlias=1
  75. StringEffect=Shadow
  76. Text="Pledged: %1"
  77. y=3r
  78.  
  79. [MeterPledged]
  80. Meter=String
  81. FontSize=11
  82. FontColor=255,255,255,255
  83. AntiAlias=1
  84. StringEffect=Shadow
  85. y=r
  86. x=-4R
  87.  
  88. [MeterGoalLabel]
  89. Meter=String
  90. MeasureName=MeasureCurrencyType
  91. FontSize=11
  92. FontColor=255,255,255,255
  93. AntiAlias=1
  94. StringEffect=Shadow
  95. Text="Goal: %1"
  96. y=R
  97.  
  98. [MeterGoal]
  99. Meter=String
  100. FontSize=11
  101. FontColor=255,255,255,255
  102. AntiAlias=1
  103. StringEffect=Shadow
  104. y=r
  105. x=-4R
  106.  
  107. [MeterKSIcon]
  108. Meter=Image
  109. ImageName=#currentpath#/@Resources/Images/ksicon.png
  110. LeftMouseUpAction=!Execute ["[MeasureURL]"]
  111. Y=142
  112. X=142
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement