Skip to content

Commit

Permalink
Added file del
Browse files Browse the repository at this point in the history
  • Loading branch information
Digitalroot committed Jan 4, 2022
1 parent 242fe34 commit 7a807c1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 41 deletions.
42 changes: 1 addition & 41 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,51 +1,11 @@
Structuring your Thunderstore package
https://github.com/ebkr/r2modmanPlus/wiki/Structuring-your-Thunderstore-package

Manifest V1 (Thunderstore) + author field
https://github.com/ebkr/r2modmanPlus/wiki/Installing-mods-locally#manifest-v1-thunderstore--author-field


Move me to [gitrepo]/doc

# Summary
This is a port of <a href="https://www.nexusmods.com/valheim/mods/0000">ModTemplate</a> to JVL
PR: https://github.com/Atokal/AtosArrows/pull/3
Assets belong to <a href="https://github.com/Atokal" target="_blank">Atokal</a> and are used with permission because of:
- Asset use permission You are allowed to use the assets in this file without permission or crediting me. https://www.nexusmods.com/valheim/mods/969 (June 12, 2021)

Original Mod: https://www.nexusmods.com/valheim/mods/969

**Code is a complete rewrite.**

## License
Original source has no license.
JVL Version is released under: **GNU Affero General Public License v3.0**

## ModTemplate
Adds several new arrows into the game. Expands arrow progression for fighting tougher enemies!

New Items:
- Stone Arrow
- Blunted Arrow

### Dependencies
- <a href="https://valheim.thunderstore.io/package/denikson/BepInExPack_Valheim/" target="_blank">BepInExPack Valheim</a>
- <a href="https://github.com/Valheim-Modding/Jotunn" target="_blank">Jotunn (JVL)</a>

### Installation (manual)
1. Download the latest release archive (zip) file.
1. Extract the archive into &lt;Steam Location&gt;\steamapps\common\Valheim\BepInEx\plugins

### Configuration
- No need to configure.
Unity Logging

### Issues/Questions/Bugs
- Use the repo issues tab above.

### Support Me @ https://www.buymeacoffee.com/digitalroot

### Thanks to
- <a href="https://github.com/Atokal" target="_blank">Atokal</a>

<p align="center">
<b>Digitalroot can be found in the Odin Plus Team Discord</b><br />
Expand Down
13 changes: 13 additions & 0 deletions src/Digitalroot.Unity3d.Log/TraceLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,26 @@ public TraceLogger(string source, bool enableTrace)
if (!bepInExLogsDirectoryInfo.Exists) bepInExLogsDirectoryInfo.Create();

_traceFileInfo = new FileInfo(Path.Combine(bepInExLogsDirectoryInfo.FullName, $"{_source}.Trace.log"));

if (_traceFileInfo.Exists)
{
_traceFileInfo.Delete();
_traceFileInfo.Refresh();
}

Application.logMessageReceived += ApplicationLogMessageReceived;
}
catch (Exception e)
{
Debug.LogException(e);
}
}

private void ApplicationLogMessageReceived(string condition, string stackTrace, LogType type)
{

}

public void EnableTrace()
{
IsTraceEnabled = true;
Expand Down

0 comments on commit 7a807c1

Please sign in to comment.