Stanimir
Stanimir
The true question is who can provide PR ? ;)
This is the SettingsGeneral I think this is the right place for this setting: https://github.com/tagspaces/tagspaces/blob/develop/app/components/dialogs/settings/SettingsGeneral.tsx http://snpy.in/Ww2a0S It's have method that set tag delimiter in global redux state here: https://github.com/tagspaces/tagspaces/blob/develop/app/components/dialogs/settings/SettingsGeneral.tsx#L95 I...
@tifDev its ok to uncomment tag delimiter input [here](https://github.com/tagspaces/tagspaces/blob/develop/app/components/dialogs/settings/SettingsGeneral.tsx#L265). but this will set the tag delimiter settings in [Redux](https://redux.js.org/introduction/core-concepts) global state -> settings.tagDelimiter (settings.ts is Reducer) Next it's need to...
```javascript export const AppConfig = { tagDelimiter: ' ', // delete this row ``` and replace `AppConfig.tagDelimiter` usage with `this.props.tagDelimiter` -> don't forget to inject in component tagDelimiter props from...
[Here](https://github.com/tagspaces/tagspaces/blob/develop/app/components/menus/DirectoryMenu.tsx#L118) and [here](https://github.com/tagspaces/tagspaces/blob/develop/app/components/menus/DirectoryMenu.tsx#L123) must be `props.loadDirectoryContent(props.directoryPath, props.tagDelimiter);` and [Here](https://github.com/tagspaces/tagspaces/blob/develop/app/components/menus/DirectoryMenu.tsx#L601) its need to inject tagDelimiter props like: ```javascript function mapStateToProps(state) { return { tagDelimiter: state.settings.tagDelimiter }; } export default connect(mapStateToProps, mapDispatchToProps)(DirectoryMenu);...
Hi @GeorgeSTm currently changing tag name in Tag Library don't replace tag name of already added tags in the Location. To fix this issue maybe we can add in Edit...
Hi @Proladon what is your OS ? and can you check if /Wallpaper/.ts folder exist ? If exist move it (or delete if you dont have sidecar tags here)
Can you try with the last TagSpaces 4.0.9 and mainly check if thumbsGeneration is enabled in Settings -> General  Also can you press Alt button to view Tagspaces Application...
@Developer66 maybe its better to continue work in your fork ? I'll will push PR here
feels free to import it here: https://github.com/Developer66/open-elevation/pull/8