Skip to content

Commit 967f2cb

Browse files
committed
v0.7.0
1 parent ee89294 commit 967f2cb

File tree

8 files changed

+27
-4
lines changed

8 files changed

+27
-4
lines changed

.github/workflows/main.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ jobs:
2525
run: sudo apt update; sudo apt install zip npm
2626

2727
- name: Compile
28-
run: npm install; npm run make-ccmod
28+
run: npm install; npm run build
29+
30+
- name: Create archive
31+
run: zip -q -r els-tweaks.ccmod assets dist ccmod.json package.json
2932

3033
- name: Get version
3134
id: get_version

README.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Contains additions/fixes that are helpful to both normal players and modders ali
55

66
***Note: Support will not be provided unless you are using the [latest release](https://github.com/EL20202/el-crosscode-tweaks/releases/latest).***
77

8-
*Readme is guaranteed accurate up to version 0.6.4. See changelog for more details.*
8+
*Readme is guaranteed accurate up to version 0.7.0. See changelog for more details.*
99

1010
 
1111

@@ -15,6 +15,7 @@ Contains additions/fixes that are helpful to both normal players and modders ali
1515
* [Assist Mode Changes](#assist-mode)
1616
* [NG+ Perks](#ng-perks)
1717
* [Uncapped Stats](#uncapped-stats)
18+
* [Trade Tracking](#trade-favoriting)
1819
* [Bug Fixes/Minor Additions](#bug-fixesother-miscellaneous-additions)
1920
* **[Additions for Modders](#for-modders)**
2021
* [Action Steps](#action-steps)
@@ -99,6 +100,24 @@ Removes the visual stat cap present in many circumstances - allowing you to see
99100

100101
**Warning**: If the standalone [Uncapped Stats](https://github.com/EL20202/cc-uncapped-stats) is installed, the this part of the mod will not function. Please remove the standalone version if installing this mod, as the standalone version will not be updated!
101102

103+
## Trade Favoriting
104+
105+
You can now track trades to see what items you need as you explore the world, just like how you can track quests!
106+
107+
![](/readme-imgs/trade/img-trade-screen.png)
108+
109+
![](/readme-imgs/trade/img-trader-screen.png)
110+
111+
*Note the `Set Favorites` button at the top of both.*
112+
113+
![](/readme-imgs/trade/img-overworld.png)
114+
115+
*Favorited trades will have a little star icon on the overworld.*
116+
117+
Once you have favorited a quest, you can cycle through them just like you would for favorite quests (by default `Q`/`E` or pressing the left/right sticks on controller). They show up after your favorited quests would.
118+
119+
![](/readme-imgs/trade/img-ui.png)
120+
102121
## Bug Fixes/Other Miscellaneous Additions
103122

104123
* **Flash Step Fix**: Prior to CrossCode version 1.4.2-3, the modifier *Flash Step* had neglible effect on dash invincibility. This mod offers a fix to those who are playing older versions.
@@ -506,6 +525,7 @@ File: `assets/data/areas/rhombus-sqr.json.patch`
506525
],
507526

508527
//where your map's top left corner should be placed.
528+
//can be negative, too!
509529
"offX": 18,
510530
"offY": 35,
511531

ccmod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "el-tweaks",
3-
"version": "0.6.5",
3+
"version": "0.7.0",
44

55
"title": "EL's Tweaks",
66
"description": "A coremod full of useful functionality for modders, as well as many tweaks for players.",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "el-tweaks",
33
"displayName": "EL's Tweaks",
4-
"version": "0.6.5",
4+
"version": "0.7.0",
55
"description": "A coremod full of useful functionality for modders, as well as many tweaks for players.",
66

77
"plugin": "./dist/plugin.js",

readme-imgs/trade/img-overworld.png

15.4 KB
Loading
177 KB
Loading
13.4 KB
Loading

readme-imgs/trade/img-ui.png

13.7 KB
Loading

0 commit comments

Comments
 (0)