-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit af9142c
Showing
1,193 changed files
with
27,429 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/sc4pac-tools |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[sc4pac-tools-readme](https://raw.githubusercontent.com/memo33/sc4pac-tools/main/README.md ':include') | ||
|
||
<!-- [sc4pac-tools-readme](README-sc4pac-tools.md ':include') --> | ||
|
||
--- | ||
Next up: [CLI](cli) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* [Home](/) | ||
* [Channel](channel/ ':target=_self') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- Guide | ||
* [Getting started](/) | ||
* [CLI](cli.md) | ||
* [API](api.md) | ||
* [Adding metadata](metadata.md) | ||
* [About](about.md) | ||
- Packages | ||
* [Highlights](packages.md) | ||
* [Channel](channel/ ':target=_self') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# About | ||
|
||
*Sc4pac* is an open-source cross-platform package manager for SimCity 4 plugins. | ||
|
||
- Package metadata repository: https://github.com/memo33/sc4pac | ||
|
||
- Program source code: https://github.com/memo33/sc4pac-tools | ||
|
||
Files are downloaded directly from file exchange sites | ||
such as [Simtropolis](https://simtropolis.com/) | ||
and [SC4Evermore](https://www.sc4evermore.com/). | ||
|
||
There is also a [discussion thread](https://community.simtropolis.com/forums/topic/762677-sc4pac-lets-write-our-own-package-manager/) at Simtropolis. | ||
|
||
--- | ||
Next up: [Highlights](packages.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
?> This documentation page is for developers. Skip to the next page: [Adding metadata](metadata.md). | ||
|
||
[sc4pac-tools-api](https://raw.githubusercontent.com/memo33/sc4pac-tools/main/api.md ':include') | ||
|
||
<!-- [sc4pac-tools-api](sc4pac-tools-api.md ':include') --> | ||
|
||
--- | ||
Next up: [Adding metadata](metadata.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="styles.css"> | ||
<title>Sc4pac Channel</title> | ||
</head> | ||
<body> | ||
<nav class="app-nav"> | ||
<ul> | ||
<li> | ||
<a href="../#/" title="Home">Home</a> | ||
</li> | ||
<li> | ||
<a href="." target="_self" title="Channel" class="active">Channel</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
<script type="text/javascript" src="main.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
44 changes: 44 additions & 0 deletions
44
channel/metadata/andisart/sc2013-inspired-homes/1.0/pkg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"$type": "Package", | ||
"group": "andisart", | ||
"name": "sc2013-inspired-homes", | ||
"version": "1.0", | ||
"subfolder": "200-residential", | ||
"info": { | ||
"summary": "Low-density residential homes inspired by SC2013", | ||
"author": "AndisArt", | ||
"website": "https://community.simtropolis.com/files/file/29329-sc2013-inspired-homes-pack/" | ||
}, | ||
"variants": [ | ||
{ | ||
"variant": { | ||
"nightmode": "standard" | ||
}, | ||
"assets": [ | ||
{ | ||
"assetId": "andisart-sc13-style-homes-maxisnite" | ||
} | ||
] | ||
}, | ||
{ | ||
"variant": { | ||
"nightmode": "dark" | ||
}, | ||
"dependencies": [ | ||
{ | ||
"group": "simfox", | ||
"name": "day-and-nite-mod", | ||
"version": "latest.release" | ||
} | ||
], | ||
"assets": [ | ||
{ | ||
"assetId": "andisart-sc13-style-homes-darknite" | ||
} | ||
] | ||
} | ||
], | ||
"metadataSource": [ | ||
"andisart/sc2013-inspired-homes.yaml" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.0 |
70 changes: 70 additions & 0 deletions
70
channel/metadata/blunder/pacific-northwest-tree-controller/1.01/pkg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"$type": "Package", | ||
"group": "blunder", | ||
"name": "pacific-northwest-tree-controller", | ||
"version": "1.01", | ||
"subfolder": "180-flora", | ||
"info": { | ||
"summary": "God-mode flora brush with seasonal trees from the Pacific Northwest", | ||
"warning": "This is a seasonal tree controller. Seasonal trees must be planted on September 1st. When switching to another tree controller, always remove any and all trees planted with your previous tree controller *before* uninstalling your old tree controller.", | ||
"conflicts": "Only compatible with terrain mods that include the Seasonal Flora Patch. Incompatible with all other tree controllers – only one tree controller may be installed at a time.", | ||
"description": "This is a seasonal tree controller designed to give trees generated by your god-mode flora brush the appearance of flora from the Pacific Northwest. The lower elevation features maples intersperced among large conifers, the middle elevation transitions from large to small conifers, and the upper elevation consists of shrubby meadows and small firs. It also includes MMPs for each of the brushes used by the God-Mode tool.\nTree controllers are advanced mods, so be sure to read the documentation carefully. Never install more than 1 tree controller at a time. When switching to another tree controller, always remove any and all trees planted with your previous tree controller *before* uninstalling your old tree controller.\n", | ||
"author": "blunder", | ||
"website": "https://community.simtropolis.com/files/file/28296-pacific-northwest-tree-controller/" | ||
}, | ||
"variants": [ | ||
{ | ||
"variant": {}, | ||
"dependencies": [ | ||
{ | ||
"group": "bsc", | ||
"name": "mega-props-cp-vol01", | ||
"version": "latest.release" | ||
}, | ||
{ | ||
"group": "bsc", | ||
"name": "mega-props-cp-vol02", | ||
"version": "latest.release" | ||
}, | ||
{ | ||
"group": "cycledogg", | ||
"name": "tree-models-part-one-and-two", | ||
"version": "latest.release" | ||
}, | ||
{ | ||
"group": "girafe", | ||
"name": "parasol-pines", | ||
"version": "latest.release" | ||
}, | ||
{ | ||
"group": "girafe", | ||
"name": "norway-maples", | ||
"version": "latest.release" | ||
}, | ||
{ | ||
"group": "girafe", | ||
"name": "subalpine-firs", | ||
"version": "latest.release" | ||
}, | ||
{ | ||
"group": "girafe", | ||
"name": "bushes", | ||
"version": "latest.release" | ||
}, | ||
{ | ||
"group": "lowkee33", | ||
"name": "seasonal-flora-patch-maxis", | ||
"version": "latest.release" | ||
} | ||
], | ||
"assets": [ | ||
{ | ||
"assetId": "blunder-pacific-northwest-tree-controller" | ||
} | ||
] | ||
} | ||
], | ||
"metadataSource": [ | ||
"blunder/pacific-northwest-tree-controller.yaml" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
channel/metadata/blunder/pacific-northwest-tree-controller/latest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"$type": "Package", | ||
"group": "bsc", | ||
"name": "bat-props-d66-vol10", | ||
"version": "1-1", | ||
"subfolder": "100-props-textures", | ||
"info": { | ||
"summary": "Superseded by bsc:mega-props-d66-vol03", | ||
"website": "https://www.sc4evermore.com/index.php/downloads/download/3-sc4d-lex-legacy-bsc-common-dependencies-pack" | ||
}, | ||
"variants": [ | ||
{ | ||
"variant": {}, | ||
"dependencies": [ | ||
{ | ||
"group": "bsc", | ||
"name": "mega-props-d66-vol03", | ||
"version": "latest.release" | ||
} | ||
] | ||
} | ||
], | ||
"metadataSource": [ | ||
"bsc/common-dependencies.yaml" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1-1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"$type": "Package", | ||
"group": "bsc", | ||
"name": "bat-props-d66-vol11", | ||
"version": "1-1", | ||
"subfolder": "100-props-textures", | ||
"info": { | ||
"summary": "Superseded by bsc:mega-props-d66-vol03", | ||
"website": "https://www.sc4evermore.com/index.php/downloads/download/3-sc4d-lex-legacy-bsc-common-dependencies-pack" | ||
}, | ||
"variants": [ | ||
{ | ||
"variant": {}, | ||
"dependencies": [ | ||
{ | ||
"group": "bsc", | ||
"name": "mega-props-d66-vol03", | ||
"version": "latest.release" | ||
} | ||
] | ||
} | ||
], | ||
"metadataSource": [ | ||
"bsc/common-dependencies.yaml" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1-1 |
27 changes: 27 additions & 0 deletions
27
channel/metadata/bsc/bat-props-jenx-tree-props-vol01/1/pkg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"$type": "Package", | ||
"group": "bsc", | ||
"name": "bat-props-jenx-tree-props-vol01", | ||
"version": "1", | ||
"subfolder": "100-props-textures", | ||
"info": { | ||
"summary": "BSC Prop Pack JENX Tree Props Vol01 by xannepan", | ||
"website": "https://www.sc4evermore.com/index.php/downloads/download/3-sc4d-lex-legacy-bsc-common-dependencies-pack" | ||
}, | ||
"variants": [ | ||
{ | ||
"variant": {}, | ||
"assets": [ | ||
{ | ||
"assetId": "sc4d-lex-legacy-bsc-common-dependencies-pack", | ||
"include": [ | ||
"/BSC Prop Pack - JENX Tree Props Vol01.dat" | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"metadataSource": [ | ||
"bsc/common-dependencies.yaml" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1 |
27 changes: 27 additions & 0 deletions
27
channel/metadata/bsc/bat-props-jenx-tree-props-vol02/1-1/pkg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"$type": "Package", | ||
"group": "bsc", | ||
"name": "bat-props-jenx-tree-props-vol02", | ||
"version": "1-1", | ||
"subfolder": "100-props-textures", | ||
"info": { | ||
"summary": "BSC BATProps JENX Tree Props Vol02 (SD) by xannepan", | ||
"website": "https://www.sc4evermore.com/index.php/downloads/download/3-sc4d-lex-legacy-bsc-common-dependencies-pack" | ||
}, | ||
"variants": [ | ||
{ | ||
"variant": {}, | ||
"assets": [ | ||
{ | ||
"assetId": "sc4d-lex-legacy-bsc-common-dependencies-pack", | ||
"include": [ | ||
"/BSC Prop Pack - JENX Tree Props Vol02 \\(SD\\).dat" | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"metadataSource": [ | ||
"bsc/common-dependencies.yaml" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1-1 |
27 changes: 27 additions & 0 deletions
27
channel/metadata/bsc/bat-props-jenx-tree-props-vol03/1-1/pkg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"$type": "Package", | ||
"group": "bsc", | ||
"name": "bat-props-jenx-tree-props-vol03", | ||
"version": "1-1", | ||
"subfolder": "100-props-textures", | ||
"info": { | ||
"summary": "BSC BATProps JENX Tree Props Vol03 (HD) by xannepan", | ||
"website": "https://www.sc4evermore.com/index.php/downloads/download/3-sc4d-lex-legacy-bsc-common-dependencies-pack" | ||
}, | ||
"variants": [ | ||
{ | ||
"variant": {}, | ||
"assets": [ | ||
{ | ||
"assetId": "sc4d-lex-legacy-bsc-common-dependencies-pack", | ||
"include": [ | ||
"/BSC Prop Pack - JENX Tree Props Vol03 \\(HD\\).dat" | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"metadataSource": [ | ||
"bsc/common-dependencies.yaml" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1-1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"$type": "Package", | ||
"group": "bsc", | ||
"name": "bat-props-jenx-vol02", | ||
"version": "1-1", | ||
"subfolder": "100-props-textures", | ||
"info": { | ||
"summary": "Superseded by bsc:mega-props-jenx-vol04", | ||
"website": "https://www.sc4evermore.com/index.php/downloads/download/3-sc4d-lex-legacy-bsc-common-dependencies-pack" | ||
}, | ||
"variants": [ | ||
{ | ||
"variant": {}, | ||
"dependencies": [ | ||
{ | ||
"group": "bsc", | ||
"name": "mega-props-jenx-vol04", | ||
"version": "latest.release" | ||
} | ||
] | ||
} | ||
], | ||
"metadataSource": [ | ||
"bsc/common-dependencies.yaml" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1-1 |
Oops, something went wrong.