Skip to content

Commit

Permalink
NextGroup 1.2.2 release
Browse files Browse the repository at this point in the history
x64 support added
  • Loading branch information
KorneySan committed Oct 24, 2022
1 parent 648e447 commit 61802bb
Show file tree
Hide file tree
Showing 7 changed files with 814 additions and 21 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

README.md.bak
docs/PlaylistAutostop.md.bak
*.~1~
*.identcache
*.dll
*.dcu
Binary file added NextGroup 1.2.2.aimppack
Binary file not shown.
817 changes: 801 additions & 16 deletions NextGroup/NextGroup.dproj

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions NextGroup/NextGroup.dproj.local
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<BorlandProject>
<Transactions>
<Transaction>1899.12.30 00:00:00.000.171,G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\NextGroup_Defines.pas=G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\Unit1.pas</Transaction>
<Transaction>1899.12.30 00:00:00.000.468,G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\NextGroup.dproj=G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\Project1.dproj</Transaction>
<Transaction>1899.12.30 00:00:00.000.546,=G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\Unit1.pas</Transaction>
<Transaction>1899.12.30 00:00:00.000.562,G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\NextGroup_Impl.pas=G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\Unit1.pas</Transaction>
<Transaction>1899.12.30 00:00:00.000.250,=G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\Unit1.pas</Transaction>
<Transaction>1899.12.30 00:00:00.000.468,G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\NextGroup.dproj=G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\Project1.dproj</Transaction>
<Transaction>1899.12.30 00:00:00.000.171,G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\NextGroup_Defines.pas=G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\Unit1.pas</Transaction>
<Transaction>1899.12.30 00:00:00.000.562,G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\NextGroup_Impl.pas=G:\Documents and Settings\Ingenery\Мои документы\RAD Studio\Projects\AIMP\Next Group\Unit1.pas</Transaction>
</Transactions>
</BorlandProject>
Binary file modified NextGroup/NextGroup.res
Binary file not shown.
1 change: 1 addition & 0 deletions NextGroup/NextGroup_Defines.pas
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ interface

const
myPluginName = 'Next Group';
myPluginVersion = '1.2.2';
myPluginAuthor = 'Korney San';
myPluginShortDescription = '"Next group" and "Prev group" actions.';
myPluginFullDescription = '';
Expand Down
4 changes: 2 additions & 2 deletions NextGroup/NextGroup_Impl.pas
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function TAIMPPlugin.GetCurrentPlaylist: IAIMPPlaylist;
with APMService do
begin
//get current playlist
if not Succeeded(GetPlayablePlaylist(Result)) then
if not Succeeded(GetPlayingPlaylist(Result)) then
begin
pc:=GetLoadedPlaylistCount;
//select playlist
Expand Down Expand Up @@ -268,7 +268,7 @@ function TAIMPPlugin.InfoGet(Index: Integer): PWideChar;
if myPluginName='' then
Result := nil
else
Result := myPluginName;
Result := myPluginName + ' v' + myPluginVersion;
end;
AIMP_PLUGIN_INFO_AUTHOR:
begin
Expand Down

0 comments on commit 61802bb

Please sign in to comment.