Commit Graph

2303 Commits

Author SHA1 Message Date
jsmorley
6d7ad1edbc Removing tag/branch due to merge of code with main trunk. 2009-08-31 17:49:13 +00:00
jsmorley
c4f95ca973 Committed MattKing's code to generate a random number in a CALC measure.
RANDOM Function:
Returns a random number between "LowBound" and "HighBound" defined in the measure.

Sample usage:
							[MeasureCalc]
Measure=Calc
Formula=(Random)
LowBound=5
HighBound=100
2009-08-31 17:47:09 +00:00
evmckay
de48407138 Edited wiki page through web user interface. 2009-08-31 00:42:16 +00:00
evmckay
aa908014af Edited wiki page through web user interface. 2009-08-31 00:41:29 +00:00
evmckay
21249eb02a Edited wiki page through web user interface. 2009-08-31 00:39:01 +00:00
jsmorley
a4209f3740 2009-08-30 21:55:14 +00:00
jsmorley
7a32578f27 Posting a branch with MattKing's changes to MeasureCalc.cpp and MeasureCalc.h to support generating random numbers in a calc measure. 2009-08-30 21:52:22 +00:00
kenz0
5a4304f020 aspect ratio of the image is preserved when the image is scaled.
(Thanks to px268 for the code)
2009-08-28 07:42:28 +00:00
Kimmo Pekkola
c6fdbf7b60 Dynamic variables can be used to change the font in the string Meter.cpp.
Removed the error message if the meter's dimensions are 0.
2009-08-27 17:05:10 +00:00
Kimmo Pekkola
c09ff5cf61 Using variables in other variables should work again.
Increased the number of decimals used in dynamic measures from 1 to 5.
2009-08-27 16:04:06 +00:00
Kimmo Pekkola
f5f257a595 Previous beta changed everything to be case sensitive. Fixed. 2009-08-27 15:42:24 +00:00
Kimmo Pekkola
ffdec7be65 Some of the plugins don't work with the dynamic variables so the feature is now disabled for them. 2009-08-26 19:29:49 +00:00
Kimmo Pekkola
9cf291517a Updated the version number in the build scripts. 2009-08-26 17:50:13 +00:00
Kimmo Pekkola
9246161739 Skin information and instructions can be added to [Metadata] section. 2009-08-26 17:48:12 +00:00
Kimmo Pekkola
dc3c767efa It's now possible to use the measures as if they were variables (use [MeasureName] instead #VariableName#). Set DynamicVariables=1 for all meters and measures which refer to other measures.
New bang !RainmeterSetVariable can be used to change the value of a variable (DynamicVariables must be 1 in places where the variable is used).
2009-08-26 17:37:15 +00:00
Kimmo Pekkola
7b22d717a3 The windows stay visible with Aero Peek on Windows 7. 2009-08-23 12:09:17 +00:00
Kimmo Pekkola
d98c79e0fc WebParser reads the resource now only if it has been modified. This can be overridden with ForceReload=1. 2009-08-19 18:07:56 +00:00
Kimmo Pekkola
40f11d3934 !RainmeterRefresh and !RainmeterQuit are now handled only during the event loop since they can crash the application if executed during Update(). 2009-08-19 17:57:09 +00:00
jsmorley
77415cfc0f Changed RainThemes to automatically create a theme called "AutoSave" which will contain your current setup. This is to protect folks who have an existing 0.14 setup, Install 1.0+, load the Enigma theme to "check it out" but don't think to save their current setup first. This provides a recovery method if you load a theme without saving first.
Files impacted:
RainThemes.au3
Loading.htm
2009-08-16 18:25:26 +00:00
Kimmo Pekkola
8d6fd32613 Added couple of NULL checks for the iTunesPlugin. 2009-08-14 16:06:42 +00:00
Kimmo Pekkola
a6c20aad64 Edited wiki page through web user interface. 2009-08-14 15:03:30 +00:00
kenz0
c258738d1b Fix HELP file of iTunes 2009-08-14 04:41:55 +00:00
Kimmo Pekkola
d6444b7dff RainThemes wasn't started correctly if the path had spaces. Fixed. 2009-08-12 19:02:51 +00:00
Kimmo Pekkola
49661dd928 Updated the history for the next beta. 2009-08-12 18:06:07 +00:00
Kimmo Pekkola
29e1dfba5b Removed duplicated code. 2009-08-12 18:02:24 +00:00
Kimmo Pekkola
122fb8f90f Variables can be used under the [Variables] section (as long as they have been defined before the current variable is read). 2009-08-12 17:26:34 +00:00
Kimmo Pekkola
1d1290e3fa Added Themes submenu to the Rainmeter's context and tray menus. 2009-08-12 17:11:52 +00:00
Kimmo Pekkola
c895803238 The IgnoreRemovable now defaults to true (1) which should help with the missing disk errors. 2009-08-12 16:15:54 +00:00
Kimmo Pekkola
425e0c7b15 Applied the new changes to the correct version of the iTunesPlugin. 2009-08-12 16:14:17 +00:00
kenz0
cbd88496b9 Addition of an insufficient part in HELP. 2009-08-12 12:49:12 +00:00
jsmorley
9aaa7ecbf2 Made a change to the way APPDATA was resolved due to a bug with the built in @AppDataDir macro in AutoIt on some systems.
Now using a function to get the DOS environment variable "APPDATA" instead of the AutoIt macro.

************
From:
************

If FileFindFirstFile("..\..\Rainmeter.ini") <> - 1 Then 
	$DataFolder = "..\..\"
ElseIf FileFindFirstFile(@AppDataDir & "\Rainmeter\Rainmeter.ini") <> - 1 Then
	$DataFolder = @AppDataDir & "\Rainmeter\"
Else
	MsgBox(48, "RainThemes Error", "Unable to locate Rainmeter.ini")
	Exit
EndIf

**************
To:
**************

$AppDataDir = EnvGet("APPDATA")

If FileFindFirstFile("..\..\Rainmeter.ini") <> - 1 Then 
	$DataFolder = "..\..\"
ElseIf FileFindFirstFile($AppDataDir & "\Rainmeter\Rainmeter.ini") <> - 1 Then
	$DataFolder = $AppDataDir & "\Rainmeter\"
Else
	MsgBox(48, "RainThemes Error", "Unable to locate Rainmeter.ini")
	Exit
EndIf
2009-08-11 19:00:49 +00:00
kenz0
cf8bb22e3a Fix ToggleiTunes command 2009-08-11 04:44:11 +00:00
jsmorley
7c3c4e1bf1 2009-08-10 19:48:27 +00:00
kenz0
74cd1be585 Tips, tricks, examples and Various extra knowledge, such a technical information was moved to RainWIKI. 2009-08-10 12:50:38 +00:00
kenz0
42087d6ed0 a fix for misspelling. 2009-08-10 05:00:20 +00:00
jsmorley
1c9a3b87e7 2009-08-08 21:58:30 +00:00
jsmorley
8d441e92a7 2009-08-08 12:54:51 +00:00
kenz0
eb2c2ac4cd Since most of these issues was solved by v1.0, this article already became needless. 2009-08-08 11:54:42 +00:00
Kimmo Pekkola
56cb50d95f version update 2009-08-07 08:28:24 +00:00
Kimmo Pekkola
5d058c0d20 Version update 2009-08-07 08:28:02 +00:00
Kimmo Pekkola
10fa32c465 Updated the release date in the history list. 2009-08-07 08:10:16 +00:00
jsmorley
545a1b7399 2009-08-07 07:55:11 +00:00
jsmorley
dd319f4384 2009-08-07 07:53:44 +00:00
Kimmo Pekkola
8f7b952aef Added the themes to svn. 2009-08-07 07:41:44 +00:00
Kimmo Pekkola
ec9fa142a3 Updated the Enigma skin. 2009-08-07 07:39:39 +00:00
jsmorley
6bbd4b7416 2009-08-06 22:25:52 +00:00
jsmorley
07adce3c6f 2009-08-06 17:54:24 +00:00
jsmorley
1be663e490 2009-08-05 19:04:17 +00:00
jsmorley
f14bb09b6c 2009-08-05 13:20:14 +00:00
Kimmo Pekkola
3a5b634b1b !RainmeterQuit bang doesn't show error message even if Rainmeter is not running. 2009-08-05 08:36:38 +00:00