Skip to content

Commit

Permalink
Core format update
Browse files Browse the repository at this point in the history
  • Loading branch information
EnhancedJax committed Oct 9, 2021
1 parent 5102c3b commit 4b54a45
Show file tree
Hide file tree
Showing 13 changed files with 426 additions and 5 deletions.
Binary file added @Resources/IconCache/Badlion Client_lnk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added @Resources/IconCache/JaxCore_lnk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added @Resources/IconCache/Notion Enhanced_lnk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added @Resources/IconCache/Process Hacker_lnk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified @Resources/IconCache/WPS Office_lnk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion @Resources/Vars.inc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Glowopacity=150

ExecuteAt=1
LaunchAt=1
Caps=0
Caps=1

AniStyle=Expand
GlobalFont=Atami Stencil
Expand Down
2 changes: 1 addition & 1 deletion @Resources/Version.inc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[variables]
Version=1.3
Version=1.4
74 changes: 74 additions & 0 deletions Core/#page.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
[General:Category]
Meter=String
MeterStyle=Set.String:S | Pagecat:S
Text=GENERAL
Y=(#Set.P#+64*[Set.S])
[Info]
Meter=Shape
Y=(10*[Set.S])R
MeterStyle=PageBox:S
Fill=Fill Color #Set.Accent_Color#,(#BarHandler# = 1 ? 255: 0)
Handle=1

[InfoIcon]
Meter=Image
MeterStyle=PageIcon:S
Greyscale=(#BarHandler# = 1 ? 1 : 0)

[1]
Meter=String
Text=Info
DynamicVariables-1
MeterStyle=Set.String:S | PageText:S

[General]
Meter=Shape
Y=(10*[Set.S])R
MeterStyle=PageBox:S
Fill=Fill Color #Set.Accent_Color#,(#BarHandler# = 2 ? 255: 0)
Handle=2

[GeneralIcon]
Meter=Image
MeterStyle=PageIcon:S
Greyscale=(#BarHandler# = 2 ? 1 : 0)

[2]
Meter=String
Text=General
DynamicVariables-1
MeterStyle=Set.String:S | PageText:S
[Appearance]
Meter=Shape
Y=(10*[Set.S])R
MeterStyle=PageBox:S
Fill=Fill Color #Set.Accent_Color#,(#BarHandler# = 3 ? 255: 0)
Handle=3

[AppearanceIcon]
Meter=Image
MeterStyle=PageIcon:S
Greyscale=(#BarHandler# = 3 ? 1 : 0)

[3]
Meter=String
Text=Appearance
DynamicVariables-1
MeterStyle=Set.String:S | PageText:S
[Animation]
Meter=Shape
Y=(10*[Set.S])R
MeterStyle=PageBox:S
Fill=Fill Color #Set.Accent_Color#,(#BarHandler# = 4 ? 255: 0)
Handle=4

[AnimationIcon]
Meter=Image
MeterStyle=PageIcon:S
Greyscale=(#BarHandler# = 4 ? 1 : 0)

[4]
Meter=String
Text=Animation
DynamicVariables-1
MeterStyle=Set.String:S | PageText:S
71 changes: 71 additions & 0 deletions Core/Animation.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
[Header]
Text=Animation layout
Y=(20*[Set.S]+#Scroll#)

; ---------------------------------------------------------------------------- ;
; Styles ;
; ---------------------------------------------------------------------------- ;

[Export:M]
Measure=String
String=#AniStyle#
IfMatch=^Center$
Ifmatchaction=[!SetOption Center MeterStyle "Select:S | Selected:S"][!UpdateMeter Center][!Redraw]
IfMatch2=^Bottom$
Ifmatchaction2=[!SetOption Bottom MeterStyle "Select:S | Selected:S"][!UpdateMeter Bottom][!Redraw]
IfMatch3=^Slide$
Ifmatchaction3=[!SetOption Slide MeterStyle "Select:S | Selected:S"][!UpdateMeter Slide][!Redraw]
IfMatch4=^Spin$
Ifmatchaction4=[!SetOption Spin MeterStyle "Select:S | Selected:S"][!UpdateMeter Spin][!Redraw]
IfMatch5=^Expand$
Ifmatchaction5=[!SetOption Expand MeterStyle "Select:S | Selected:S"][!UpdateMeter Expand][!Redraw]
; OnUpdateAction=[!SetOption Center MeterStyle "Select:S | Selected:S"][!SetOption Bottom MeterStyle "Select:S | Selected:S"][!SetOption Slide MeterStyle "Select:S | Selected:S"][!SetOption Spin MeterStyle "Select:S | Selected:S"][!UpdateMEasure WASD][!Redraw]

[Select:S]
X=r
Y=(20*[Set.S])R
W=(650*[Set.S])
H=(150*[Set.S])
ImageName=#@#Images\KeylaunchLayout\#CURRENTSECTIOn#.png
DynamicVariables=1
ImageAlpha=100
MouseOverAction=[!SetOption #CURRENTSECTION# ImageAlpha "200"][!UpdateMeter #CURRENTSECTION#][!Redraw]
MouseLeaveAction=[!SetOption #CURRENTSECTION# ImageAlpha "100"][!UpdateMeter #CURRENTSECTION#][!Redraw]
Leftmouseupaction=[!WriteKeyValue Variables AniStyle "#CURRENTSECTION#" "#Sec.SaveLocatioN#"][!UpdateMeasure Auto_Refresh:M][!Refresh]
PreserveAspectRatio=2
DynamicVariables=1
MaskImageName=#@#Images\LayoutMask.png
Container=ContentContainer
[Selected:S]
Fill=Fill Color 255,255,255,255
ImageAlpha=255
MouseOverAction=
MouseLeaveAction=
LeftMouseUpAction=

; ---------------------------------------------------------------------------- ;
; Content ;
; ---------------------------------------------------------------------------- ;


[Expand]
Meter=Image
X=r
Y=(30*[Set.S])R
MeterStyle=Select:S

[Center]
Meter=Image
MeterStyle=Select:S

[Bottom]
Meter=Image
MeterStyle=Select:S

[Slide]
Meter=Image
MeterStyle=Select:S

[Spin]
Meter=Image
MeterStyle=Select:S
193 changes: 193 additions & 0 deletions Core/Appearance.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
[HotkeysTitle]
Meter=String
Text=General
MeterStyle=Set.String:S | Set.OptionCat:S

[Option01]
Meter=String
Text=Text glow sigma
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:S1913s138]
Meter=Shape
MeterStyle=Set.Div:S
[Option02]
Meter=String
Text=Text font
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:Sasdasd1913s138]
Meter=Shape
MeterStyle=Set.Div:S
[Option03]
Meter=String
Text=Show application after animation
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:38]
Meter=Shape
MeterStyle=Set.Div:S
[Option04]
Meter=String
Text=Full capital letter names
MeterStyle=Set.String:S | Set.OptionName:S

[CoTitle]
Meter=String
Text=Colors
MeterStyle=Set.String:S | Set.OptionCat:S
[Option11]
Meter=String
Text=Highlight color
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:Sas]
Meter=Shape
MeterStyle=Set.Div:S
[Option12]
Meter=String
Text=Font color
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:Sus]
Meter=Shape
MeterStyle=Set.Div:S
[Option13]
Meter=String
Text=Glow color
MeterStyle=Set.String:S | Set.OptionName:S

[AniTitle]
Meter=String
Text=Animation configuration
MeterStyle=Set.String:S | Set.OptionCat:S
[Option21]
Meter=String
Text=Start animations
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:S1913sadsas138]
Meter=Shape
MeterStyle=Set.Div:S
[Option26]
Meter=String
Text=Animation display monitor index
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:dsas138]
Meter=Shape
MeterStyle=Set.Div:S
[Option22]
Meter=String
Text=Animation frame interval (0 for true 60fps)
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:S191qweq3s138]
Meter=Shape
MeterStyle=Set.Div:S
[Option23]
Meter=String
Text=Text size modifier
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:S191qweq]
Meter=Shape
MeterStyle=Set.Div:S
[Option24]
Meter=String
Text=Animation start duration
MeterStyle=Set.String:S | Set.OptionName:S
[Set.Div:s138]
Meter=Shape
MeterStyle=Set.Div:S
[Option25]
Meter=String
Text=Animation end duration
MeterStyle=Set.String:S | Set.OptionName:S

; ---------------------------------------------------------------------------- ;
; Input ;
; ---------------------------------------------------------------------------- ;

[Blur]
Meter=Shape
MeterStyle=Set.Textbox:S
Y=([Option01:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Value01]
Meter=String
Text=#Blur#
MeterStyle=Set.String:S | Set.Value:S
[GlobalFont]
Meter=Shape
MeterStyle=Set.FontBox:S
Y=([Option02:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Value02]
Meter=String
Text=#GlobalFont#
MeterStyle=Set.String:S | Set.Value:S
[ExecuteAt]
Meter=Shape
MeterStyle=Set.Bool:S
Y=([Option03:Y]-#Set.P#+(-20/2+8)*[Set.S])
[Caps]
Meter=Shape
MeterStyle=Set.Bool:S
Y=([Option04:Y]-#Set.P#+(-20/2+8)*[Set.S])

[MainC]
Meter=Shape
MeterStyle=Set.ColorPacity:S
Y=([Option11:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Value11]
Meter=String
Text=#MainCOpacity#
MeterStyle=Set.String:S | Set.Pacity:S
[FontColor]
Meter=Shape
MeterStyle=Set.Color:S
Y=([Option12:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Glow]
Meter=Shape
MeterStyle=Set.ColorPacity:S
Y=([Option13:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Value13]
Meter=String
Text=#GlowOpacity#
MeterStyle=Set.String:S | Set.Pacity:S


[ShowAni]
Meter=Shape
MeterStyle=Set.Bool:S
Y=([Option21:Y]-#Set.P#+(-20/2+8)*[Set.S])
[LaunchAt]
Meter=Shape
MeterStyle=Set.Textbox:S
Y=([Option26:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Value26]
Meter=String
Text=#LaunchAt#
MeterStyle=Set.String:S | Set.Value:S
[UpdateRate]
Meter=Shape
MeterStyle=Set.Textbox:S
Y=([Option22:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Value22]
Meter=String
Text=#UpdateRate#
MeterStyle=Set.String:S | Set.Value:S
[FontSizeModifier]
Meter=Shape
MeterStyle=Set.Textbox:S
Y=([Option23:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Value23]
Meter=String
Text=#FontSizeModifier#
MeterStyle=Set.String:S | Set.Value:S
[LongDelay]
Meter=Shape
MeterStyle=Set.Textbox:S
Y=([Option24:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Value24]
Meter=String
Text=#LongDelay#
MeterStyle=Set.String:S | Set.Value:S
[ShortDelay]
Meter=Shape
MeterStyle=Set.Textbox:S
Y=([Option25:Y]-#Set.P#+(-30/2+8)*[Set.S])
[Value25]
Meter=String
Text=#ShortDelay#
MeterStyle=Set.String:S | Set.Value:S
Loading

0 comments on commit 4b54a45

Please sign in to comment.